This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 889
/
orderedImportsRule.ts
788 lines (684 loc) · 28 KB
/
orderedImportsRule.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
/**
* @license
* Copyright 2018 Palantir Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
isExternalModuleReference,
isImportDeclaration,
isImportEqualsDeclaration,
isModuleDeclaration,
isNamedImports,
isStringLiteral,
} from "tsutils";
import * as ts from "typescript";
import * as Lint from "../index";
export class Rule extends Lint.Rules.AbstractRule {
/* tslint:disable:object-literal-sort-keys */
public static metadata: Lint.IRuleMetadata = {
ruleName: "ordered-imports",
description: "Requires that import statements be alphabetized and grouped.",
descriptionDetails: Lint.Utils.dedent`
Enforce a consistent ordering for ES6 imports:
- Named imports must be alphabetized (i.e. "import {A, B, C} from "foo";")
- The exact ordering can be controlled by the named-imports-order option.
- "longName as name" imports are ordered by "longName".
- Import sources must be alphabetized within groups, i.e.:
import * as foo from "a";
import * as bar from "b";
- Groups of imports are delineated by blank lines. You can use this rule to group
imports however you like, e.g. by first- vs. third-party or thematically or
you can define groups based upon patterns in import path names.`,
hasFix: true,
optionsDescription: Lint.Utils.dedent`
You may set the \`"import-sources-order"\` option to control the ordering of source
imports (the \`"foo"\` in \`import {A, B, C} from "foo"\`).
Possible values for \`"import-sources-order"\` are:
* \`"case-insensitive'\`: Correct order is \`"Bar"\`, \`"baz"\`, \`"Foo"\`. (This is the default.)
* \`"case-insensitive-legacy'\`: Correct order is \`"Bar"\`, \`"baz"\`, \`"Foo"\`.
* \`"lowercase-first"\`: Correct order is \`"baz"\`, \`"Bar"\`, \`"Foo"\`.
* \`"lowercase-last"\`: Correct order is \`"Bar"\`, \`"Foo"\`, \`"baz"\`.
* \`"any"\`: Allow any order.
You may set the \`"grouped-imports"\` option to control the grouping of source
imports (the \`"foo"\` in \`import {A, B, C} from "foo"\`). The grouping used
is controlled by the \`"groups"\` option.
Possible values for \`"grouped-imports"\` are:
* \`false\`: Do not enforce grouping. (This is the default.)
* \`true\`: Group source imports using default grouping or groups setting.
The value of \`"groups"\` is a list of group rules of the form:
[{
"name": "optional rule name",
"match": "regex string",
"order": 10
}, {
"name": "pkga imports",
"match": "^@pkga",
"order": 20
}]
there is also a simplified form where you only pass a list of patterns and
the order is given by the position in the list
["^@pkga", "^\\.\\."]
The first rule in the list to match a given import is the group that is used.
If no rule in matched then the import will be put in an \`unmatched\` group
at the end of all groups. The groups must be ordered based upon the sequential
value of the \`order\` value. (ie. order 0 is first)
If no \`"groups"\` options is set, a default grouping is used of third-party,
parent directories and the current directory. (\`"bar"\`, \`"../baz"\`, \`"./foo"\`.)
You may set the \`"named-imports-order"\` option to control the ordering of named
imports (the \`{A, B, C}\` in \`import {A, B, C} from "foo"\`).
Possible values for \`"named-imports-order"\` are:
* \`"case-insensitive'\`: Correct order is \`{A, b, C}\`. (This is the default.)
* \`"case-insensitive-legacy'\`: Correct order is \`"Bar"\`, \`"baz"\`, \`"Foo"\`.
* \`"lowercase-first"\`: Correct order is \`{b, A, C}\`.
* \`"lowercase-last"\`: Correct order is \`{A, C, b}\`.
* \`"any"\`: Allow any order.
You may set the \`"module-source-path"\` option to control the ordering of imports based full path
or just the module name
Possible values for \`"module-source-path"\` are:
* \`"full'\`: Correct order is \`"./a/Foo"\`, \`"./b/baz"\`, \`"./c/Bar"\`. (This is the default.)
* \`"basename"\`: Correct order is \`"./c/Bar"\`, \`"./b/baz"\`, \`"./a/Foo"\`.
`,
options: {
type: "object",
properties: {
"grouped-imports": {
type: "boolean",
},
groups: {
type: "list",
listType: {
oneOf: [
{
type: "string",
},
{
type: "object",
properties: {
name: { type: "string" },
match: { type: "string" },
order: { type: "number" },
},
required: ["match", "order"],
},
],
},
},
"import-sources-order": {
type: "string",
enum: [
"case-insensitive",
"case-insensitive-legacy",
"lowercase-first",
"lowercase-last",
"any",
],
},
"named-imports-order": {
type: "string",
enum: [
"case-insensitive",
"case-insensitive-legacy",
"lowercase-first",
"lowercase-last",
"any",
],
},
"module-source-path": {
type: "string",
enum: ["full", "basename"],
},
},
additionalProperties: false,
},
optionExamples: [
true,
[
true,
{
"import-sources-order": "lowercase-last",
"named-imports-order": "lowercase-first",
},
],
],
type: "style",
typescriptOnly: false,
};
/* tslint:enable:object-literal-sort-keys */
public static IMPORT_SOURCES_NOT_GROUPED_PREFIX =
"Imports from this module are not allowed in this group. The expected groups (in order) are:";
public static IMPORT_SOURCES_UNORDERED = "Import sources within a group must be alphabetized.";
public static NAMED_IMPORTS_UNORDERED = "Named imports must be alphabetized.";
public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] {
return this.applyWithWalker(
new Walker(sourceFile, this.ruleName, parseOptions(this.ruleArguments)),
);
}
}
// Transformations to apply to produce the desired ordering of imports.
// The imports must be lexicographically sorted after applying the transform.
type Transform = (x: string) => string;
const TRANSFORMS = new Map<string, Transform>([
["any", () => ""],
["case-insensitive", x => x.toUpperCase()],
["case-insensitive-legacy", x => x.toLowerCase()],
["lowercase-first", flipCase],
["lowercase-last", x => x],
["full", x => x],
[
"basename",
x => {
if (!ts.isExternalModuleNameRelative(x)) {
return x;
}
const splitIndex = x.lastIndexOf("/");
if (splitIndex === -1) {
return x;
}
return x.substr(splitIndex + 1);
},
],
]);
interface Options {
/** Transform to use when sorting import source names. */
importSourcesOrderTransform: Transform;
/** Transform to use to determine the part of the module path to use for ordering. */
moduleSourceTransform: Transform;
/** Transform to use when sorting import names. */
namedImportsOrderTransform: Transform;
/** If true the rule will check import grouping. */
groupedImports: boolean;
/** Groups used for group import ordering. */
groups: GroupOption[];
}
interface GroupOption {
/** Name of the group for display in lint messages. */
name: string;
/** If import names match this regex, they belong to this group. */
match: RegExp;
/** numerical ordering to use. Ordered sequentially. */
order: number;
}
interface JsonOptions {
"grouped-imports"?: boolean;
"import-sources-order"?: string;
"named-imports-order"?: string;
"module-source-path"?: string;
groups?: Array<JsonGroupOption | string>;
}
interface JsonGroupOption {
name?: string;
match: string;
order: number;
}
function parseOptions(ruleArguments: any[]): Options {
const optionSet = (ruleArguments as JsonOptions[])[0];
// Use default groups to order by third-party, parent, local
const defaultGroups: JsonGroupOption[] = [
{ name: "parent directories", match: "^\\.\\.", order: 20 },
{ name: "current directory", match: "^\\.", order: 30 },
{ name: "libraries", match: ".*", order: 10 },
];
const {
"grouped-imports": isGrouped = false,
"import-sources-order": sources = "case-insensitive",
"named-imports-order": named = "case-insensitive",
"module-source-path": path = "full",
groups = defaultGroups,
} = optionSet === undefined ? {} : optionSet;
// build up list of compiled groups
// - handle case where "group" is just a string pattern
// vs a full group object
const compiledGroups = groups.map((g, idx) => {
if (typeof g === "string") {
return { name: `/${g}/`, match: new RegExp(g), order: idx };
} else {
return {
match: new RegExp(g.match),
name: g.name !== undefined ? g.name : `/${g.match}/`,
order: g.order,
};
}
});
return {
groupedImports: isGrouped,
groups: compiledGroups,
importSourcesOrderTransform: TRANSFORMS.get(sources)!,
moduleSourceTransform: TRANSFORMS.get(path)!,
namedImportsOrderTransform: TRANSFORMS.get(named)!,
};
}
class Walker extends Lint.AbstractWalker<Options> {
private readonly importsBlocks = [new ImportsBlock()];
// keep a reference to the last Fix object so when the entire
// block is replaced, the replacement can be added
private lastFix: Lint.Replacement[] | undefined;
// group to use when no other group matches
private readonly defaultGroup: GroupOption = {
match: /.*/,
name: "unmatched",
order: Number.MAX_SAFE_INTEGER,
};
private get currentImportsBlock(): ImportsBlock {
return this.importsBlocks[this.importsBlocks.length - 1];
}
public walk(sourceFile: ts.SourceFile): void {
// Walk through all statements checking import statements
// and building up ImportsBlocks along the way (with replacements)
for (const statement of sourceFile.statements) {
this.checkStatement(statement);
}
this.endBlock();
// Optionally check the ImportsBlocks for grouping
if (this.options.groupedImports) {
this.checkBlocksGrouping();
}
}
private checkStatement(statement: ts.Statement): void {
if (
!(isImportDeclaration(statement) || isImportEqualsDeclaration(statement)) ||
/\r?\n\r?\n/.test(
this.sourceFile.text.slice(
statement.getFullStart(),
statement.getStart(this.sourceFile),
),
)
) {
this.endBlock();
}
if (isImportDeclaration(statement)) {
this.checkImportDeclaration(statement);
} else if (isImportEqualsDeclaration(statement)) {
this.checkImportEqualsDeclaration(statement);
} else if (isModuleDeclaration(statement)) {
const body = moduleDeclarationBody(statement);
if (body !== undefined) {
for (const subStatement of body.statements) {
this.checkStatement(subStatement);
}
this.endBlock();
}
}
}
private checkImportDeclaration(node: ts.ImportDeclaration) {
// ex: import {name1, name2 } from 'import/path';
if (!isStringLiteral(node.moduleSpecifier)) {
// Ignore grammar error
return;
}
const importPath = removeQuotes(node.moduleSpecifier.text);
this.checkImport(importPath, node);
// check the names in the import are ordered correctly
const { importClause } = node;
if (
importClause !== undefined &&
importClause.namedBindings !== undefined &&
isNamedImports(importClause.namedBindings)
) {
this.checkNamedImports(importClause.namedBindings);
}
}
private checkImportEqualsDeclaration(node: ts.ImportEqualsDeclaration) {
// only allowed `import x = require('y');`
const { moduleReference } = node;
if (!isExternalModuleReference(moduleReference)) {
return;
}
const { expression } = moduleReference;
if (expression === undefined || !isStringLiteral(expression)) {
return;
}
const importPath = removeQuotes(expression.text);
this.checkImport(importPath, node);
}
/**
* Check the given import to see if we have valid import ordering.
*/
private checkImport(fullImportPath: string, node: ImportDeclaration["node"]) {
// from this point forward we use the transformed import paths
// - group lookup is based upon the full import path with no transform
const matchingGroup = this.getMatchingGroup(fullImportPath);
// determine the module name to use for sorting after the required transforms
const importPath = this.options.importSourcesOrderTransform(
this.options.moduleSourceTransform(fullImportPath),
);
const prevImportPath = this.currentImportsBlock.getLastImportSource();
this.currentImportsBlock.addImportDeclaration(
this.sourceFile,
node,
importPath,
matchingGroup,
);
if (prevImportPath !== null && compare(importPath, prevImportPath) === -1) {
this.lastFix = [];
this.addFailureAtNode(node, Rule.IMPORT_SOURCES_UNORDERED, this.lastFix);
}
}
private endBlock(): void {
if (this.lastFix !== undefined) {
const replacement = this.currentImportsBlock.getReplacement();
if (replacement !== undefined) {
this.lastFix.push(replacement);
}
this.lastFix = undefined;
}
this.importsBlocks.push(new ImportsBlock());
}
/**
* Check that names within the given import are ordered correctly as required.
* If not, adds a failure and updates import blocks with correct order
* for replacement.
*/
private checkNamedImports(node: ts.NamedImports): void {
const imports = node.elements;
const pair = findUnsortedPair(imports, this.options.namedImportsOrderTransform);
if (pair !== undefined) {
const [a, b] = pair;
const sortedDeclarations = sortByKey(imports, x =>
this.options.namedImportsOrderTransform(x.getText()),
).map(x => x.getText());
// replace in reverse order to preserve earlier offsets
for (let i = imports.length - 1; i >= 0; i--) {
const start = imports[i].getStart();
const length = imports[i].getText().length;
// replace the named imports one at a time to preserve whitespace
this.currentImportsBlock.replaceNamedImports(start, length, sortedDeclarations[i]);
}
this.lastFix = [];
this.addFailure(a.getStart(), b.getEnd(), Rule.NAMED_IMPORTS_UNORDERED, this.lastFix);
}
}
/**
* Check all import blocks stopping at the first failure.
*/
private checkBlocksGrouping(): void {
let prevBlockOrder = Number.MIN_SAFE_INTEGER;
const addFailingImportDecl = (decl: ImportDeclaration) => {
const groupsMsg = [...this.options.groups]
.sort((a, b) => a.order - b.order)
.map(g => g.name)
.join(", ");
const msg = `${Rule.IMPORT_SOURCES_NOT_GROUPED_PREFIX} ${groupsMsg}.`;
this.addFailureAtNode(decl.node, msg, this.getGroupOrderReplacements());
};
const blocksWithContent = this.importsBlocks.filter(
b => b.getImportDeclarations().length > 0,
);
// Check if each block is out of order
for (const block of blocksWithContent) {
const importDeclarations = block.getImportDeclarations();
const blockOrder = importDeclarations[0].group.order;
// check if group is out of order
if (blockOrder <= prevBlockOrder) {
addFailingImportDecl(importDeclarations[0]);
return;
}
// check if all declarations have the same order value
// and mark the first one that is out of order
for (const decl of importDeclarations) {
if (decl.group.order !== blockOrder) {
addFailingImportDecl(decl);
return;
}
}
prevBlockOrder = blockOrder;
}
}
/**
* Return the first import group pattern matching the given import path.
*/
private getMatchingGroup(importPath: string): GroupOption {
// find the first matching group.
for (const group of this.options.groups) {
if (group.match.test(importPath)) {
return group;
}
}
return this.defaultGroup;
}
/**
* Build up replaces to remove all imports and replace with grouped and sorted imports.
*/
private getGroupOrderReplacements(): Lint.Replacement[] {
// Get all import declarations for all ImportBlocks groups that are not empty
const groupedDeclarations = this.importsBlocks
.map(block => block.getImportDeclarations())
.filter(imports => imports.length > 0);
const replacements = this.getGroupRemovalReplacements(groupedDeclarations);
const allImportDeclarations = ([] as ImportDeclaration[]).concat(...groupedDeclarations);
const startOffset =
allImportDeclarations.length === 0 ? 0 : allImportDeclarations[0].nodeStartOffset;
replacements.push(
Lint.Replacement.appendText(startOffset, this.getGroupedImports(allImportDeclarations)),
);
return replacements;
}
/**
* Get set of replacements that delete all existing imports.
*/
private getGroupRemovalReplacements(
groupedDeclarations: ImportDeclaration[][],
): Lint.Replacement[] {
return groupedDeclarations.map((items, index) => {
let start = items[0].nodeStartOffset;
if (index > 0) {
const prevItems = groupedDeclarations[index - 1];
const last = prevItems[prevItems.length - 1];
const textFragment = this.sourceFile.text.slice(last.nodeEndOffset, start);
if (!/\S/.test(textFragment)) {
// remove whitespace between blocks
start = last.nodeEndOffset;
}
}
return Lint.Replacement.deleteFromTo(start, items[items.length - 1].nodeEndOffset);
});
}
/**
* Get text of new set of grouped and sorted imports as text.
*/
private getGroupedImports(importDeclarations: ImportDeclaration[]): string {
// list of all unique order values in sorted order
const orderValues = importDeclarations
.map(decl => decl.group.order)
.filter((v, i, a) => a.indexOf(v) === i)
.sort((a, b) => a - b);
return orderValues
.map(curOrder => {
const imports = importDeclarations.filter(i => i.group.order === curOrder);
return getSortedImportDeclarationsAsText(imports);
})
.filter(text => text.length > 0)
.join(this.getEolChar());
}
/**
* Return the type of newline that should be used in the codebase.
*/
private getEolChar(): string {
const lineEnd = this.sourceFile.getLineEndOfPosition(0);
let newLine;
if (lineEnd > 0) {
if (lineEnd > 1 && this.sourceFile.text[lineEnd - 1] === "\r") {
newLine = "\r\n";
} else if (this.sourceFile.text[lineEnd] === "\n") {
newLine = "\n";
}
}
return newLine === undefined ? ts.sys.newLine : newLine;
}
}
interface ImportDeclaration {
/** node with details of the import */
node: ts.ImportDeclaration | ts.ImportEqualsDeclaration;
/** end position of node within source file */
nodeEndOffset: number;
/** start position of node within source file */
nodeStartOffset: number;
/** initialized with original import text; modified if the named imports are reordered */
text: string;
/** the importPath path in transformed format for sorting */
importPath: string;
/** details for the group that we match */
group: GroupOption;
}
/**
* Wrapper around a set of imports grouped together in a sequence (block)
* in the source code.
*/
class ImportsBlock {
private importDeclarations: ImportDeclaration[] = [];
/**
* Add a new import declaration to the block
*/
public addImportDeclaration(
sourceFile: ts.SourceFile,
node: ImportDeclaration["node"],
importPath: string,
group: GroupOption,
) {
const start = this.getStartOffset(node);
const end = this.getEndOffset(sourceFile, node);
const text = sourceFile.text.substring(start, end);
if (start > node.getStart() || end === 0) {
// skip block if any statements don't end with a newline to simplify implementation
this.importDeclarations = [];
return;
}
this.importDeclarations.push({
group,
importPath,
node,
nodeEndOffset: end,
nodeStartOffset: start,
text,
});
}
public getImportDeclarations(): ImportDeclaration[] {
return this.importDeclarations;
}
/**
* Replaces the named imports on the most recent import declaration.
* Updates the imports in place so the getReplacement method below can
* return full fixes for the entire import block.
*/
public replaceNamedImports(fileOffset: number, length: number, replacement: string) {
const importDeclaration = this.getLastImportDeclaration();
if (importDeclaration === undefined) {
// nothing to replace. This can happen if the block is skipped
return;
}
const start = fileOffset - importDeclaration.nodeStartOffset;
if (start < 0 || start + length > importDeclaration.node.getEnd()) {
throw new Error("Unexpected named import position");
}
const initialText = importDeclaration.text;
importDeclaration.text =
initialText.substring(0, start) + replacement + initialText.substring(start + length);
}
/**
* Return the source path of the most recently added import.
*/
public getLastImportSource() {
if (this.importDeclarations.length === 0) {
return null;
}
return this.getLastImportDeclaration()!.importPath;
}
/**
* Return a Lint.Replacement object with ordering fixes for the entire block.
*/
public getReplacement() {
if (this.importDeclarations.length === 0) {
return undefined;
}
const fixedText = getSortedImportDeclarationsAsText(this.importDeclarations);
const start = this.importDeclarations[0].nodeStartOffset;
const end = this.getLastImportDeclaration()!.nodeEndOffset;
return new Lint.Replacement(start, end - start, fixedText);
}
// gets the offset immediately after the end of the previous declaration to include comment above
private getStartOffset(node: ImportDeclaration["node"]) {
if (this.importDeclarations.length === 0) {
return node.getStart();
}
return this.getLastImportDeclaration()!.nodeEndOffset;
}
// gets the offset of the end of the import's line, including newline, to include comment to the right
private getEndOffset(sourceFile: ts.SourceFile, node: ImportDeclaration["node"]) {
return sourceFile.text.indexOf("\n", node.end) + 1;
}
private getLastImportDeclaration(): ImportDeclaration | undefined {
return this.importDeclarations[this.importDeclarations.length - 1];
}
}
// Convert aBcD --> AbCd
function flipCase(str: string): string {
return Array.from(str)
.map(char => {
if (char >= "a" && char <= "z") {
return char.toUpperCase();
} else if (char >= "A" && char <= "Z") {
return char.toLowerCase();
}
return char;
})
.join("");
}
// After applying a transformation, are the nodes sorted according to the text they contain?
// If not, return the pair of nodes which are out of order.
function findUnsortedPair(
xs: ReadonlyArray<ts.Node>,
transform: (x: string) => string,
): [ts.Node, ts.Node] | undefined {
for (let i = 1; i < xs.length; i++) {
if (transform(xs[i].getText()) < transform(xs[i - 1].getText())) {
return [xs[i - 1], xs[i]];
}
}
return undefined;
}
function compare(a: string, b: string): 0 | 1 | -1 {
function isLow(value: string) {
return value[0] === "." || value[0] === "/";
}
if (isLow(a) && !isLow(b)) {
return 1;
} else if (!isLow(a) && isLow(b)) {
return -1;
} else if (a > b) {
return 1;
} else if (a < b) {
return -1;
}
return 0;
}
function removeQuotes(value: string): string {
// strip out quotes
if (value.length > 1 && (value[0] === "'" || value[0] === '"')) {
value = value.substr(1, value.length - 2);
}
return value;
}
function getSortedImportDeclarationsAsText(importDeclarations: ImportDeclaration[]): string {
const sortedDeclarations = sortByKey(importDeclarations.slice(), x => x.importPath);
return sortedDeclarations.map(x => x.text).join("");
}
function sortByKey<T>(xs: ReadonlyArray<T>, getSortKey: (x: T) => string): T[] {
return xs.slice().sort((a, b) => compare(getSortKey(a), getSortKey(b)));
}
function moduleDeclarationBody(node: ts.ModuleDeclaration): ts.ModuleBlock | undefined {
let body = node.body;
while (body !== undefined && body.kind === ts.SyntaxKind.ModuleDeclaration) {
body = body.body;
}
return body !== undefined && body.kind === ts.SyntaxKind.ModuleBlock ? body : undefined;
}