1
- import { ConvertResult , Rule , RuleOPType , Type } from './interface' ;
2
- import { RULES } from './rules' ;
3
- import { Position , Range , Selection , TextEditor } from 'vscode' ;
4
- import { isIngore } from './config' ;
1
+ import { ConvertResult , Rule , RuleOPType , Type } from "./interface" ;
2
+ import { RULES } from "./rules" ;
3
+ import { Position , Range , Selection , TextEditor } from "vscode" ;
4
+ import { isIngore } from "./config" ;
5
+ import { isDisabledNextLineViaText } from "./ignore-comment" ;
5
6
6
7
export class CssRemProcess {
7
8
convert ( text : string ) : ConvertResult [ ] | null {
8
- const res = this . getRule ( ' single' , text ) ;
9
+ const res = this . getRule ( " single" , text ) ;
9
10
if ( res . length === 0 ) {
10
11
return null ;
11
12
}
12
13
13
- return res . map ( i => i . rule . fn ( i . text ) ! ) ;
14
+ return res . map ( ( i ) => i . rule . fn ( i . text ) ! ) ;
14
15
}
15
16
16
- convertAll ( code : string , ignores : string [ ] , type : Type ) : string {
17
+ private convertAll ( code : string , ignores : string [ ] , type : Type ) : string {
17
18
if ( ! code ) {
18
19
return code ;
19
20
}
20
21
21
- const rule = RULES . find ( w => w . type === type ) ;
22
+ const rule = RULES . find ( ( w ) => w . type === type ) ;
22
23
if ( ! rule ) {
23
24
return code ;
24
25
}
25
26
26
- return code . replace ( rule . all , ( word : string ) => {
27
- if ( ignores . includes ( word ) ) {
28
- return word ;
29
- }
30
- const res = rule . fn ( word ) ;
31
- if ( res ) {
32
- return res . value ;
33
- }
34
- return word ;
35
- } ) ;
27
+ const lines = code . split ( "\n" ) ;
28
+
29
+ const result = lines
30
+ . map ( ( line , lineIndex ) => {
31
+ return line . replace ( rule . all , ( word ) => {
32
+ if ( ignores . includes ( word ) ) {
33
+ return word ;
34
+ }
35
+ if ( lineIndex > 0 && isDisabledNextLineViaText ( lines [ lineIndex - 1 ] ) )
36
+ return word ;
37
+
38
+ const res = rule . fn ( word ) ;
39
+ if ( res ) {
40
+ return res . value ;
41
+ }
42
+ return word ;
43
+ } ) ;
44
+ } )
45
+ . join ( "\n" ) ;
46
+ return result ;
36
47
}
37
48
38
- private getRule ( type : RuleOPType , text : string ) : { rule : Rule ; text : string } [ ] {
49
+ private getRule (
50
+ type : RuleOPType ,
51
+ text : string
52
+ ) : { rule : Rule ; text : string } [ ] {
39
53
const result : { rule : Rule ; text : string } [ ] = [ ] ;
40
54
for ( const rule of RULES ) {
41
55
const match = text . match ( ( rule as any ) [ type ] ) ;
@@ -47,36 +61,49 @@ export class CssRemProcess {
47
61
}
48
62
49
63
private getWordRange ( textEditor : TextEditor , type : Type ) : Range | null {
50
- const position = new Position ( textEditor . selection . start . line , textEditor . selection . start . character ) ;
64
+ const position = new Position (
65
+ textEditor . selection . start . line ,
66
+ textEditor . selection . start . character
67
+ ) ;
51
68
const range = textEditor . document . getWordRangeAtPosition ( position ) ;
52
69
if ( ! range ) return null ;
53
70
const word = textEditor . document . getText ( range ) ;
54
71
if ( ! word ) return null ;
55
- const rule = RULES . find ( w => w . type === type ) ;
72
+ const rule = RULES . find ( ( w ) => w . type === type ) ;
56
73
return rule && rule . all . test ( word ) ? range : null ;
57
74
}
58
75
59
- modifyDocument ( textEditor : TextEditor , ignoresViaCommand : string [ ] , type : Type ) : void {
76
+ modifyDocument (
77
+ textEditor : TextEditor ,
78
+ ignoresViaCommand : string [ ] ,
79
+ type : Type
80
+ ) : void {
60
81
const doc = textEditor . document ;
61
82
if ( isIngore ( doc . uri ) ) return ;
62
83
63
84
let selection : Selection | Range = textEditor . selection ;
64
85
// When the cursor is in the valid range in switch mode
65
- if ( selection . isEmpty && type . toLowerCase ( ) . includes ( ' switch' ) ) {
86
+ if ( selection . isEmpty && type . toLowerCase ( ) . includes ( " switch" ) ) {
66
87
const wordRange = this . getWordRange ( textEditor , type ) ;
67
88
if ( wordRange ) {
68
89
selection = wordRange ;
69
90
}
70
91
}
71
92
if ( selection . isEmpty ) {
72
93
const start = new Position ( 0 , 0 ) ;
73
- const end = new Position ( doc . lineCount - 1 , doc . lineAt ( doc . lineCount - 1 ) . text . length ) ;
94
+ const end = new Position (
95
+ doc . lineCount - 1 ,
96
+ doc . lineAt ( doc . lineCount - 1 ) . text . length
97
+ ) ;
74
98
selection = new Range ( start , end ) ;
75
99
}
76
100
77
101
const text = doc . getText ( selection ) ;
78
- textEditor . edit ( builder => {
79
- builder . replace ( selection , this . convertAll ( text , ignoresViaCommand , type ) ) ;
102
+ textEditor . edit ( ( builder ) => {
103
+ builder . replace (
104
+ selection ,
105
+ this . convertAll ( text , ignoresViaCommand , type )
106
+ ) ;
80
107
} ) ;
81
108
}
82
109
}
0 commit comments