1
1
import { Rule } from './rule'
2
2
import MasterCSS from './core'
3
+ import findNativeCSSRuleIndex from 'shared/utils/find-native-css-rule-index'
3
4
4
5
export default class Layer {
5
6
readonly ruleBy : Record < string , Rule > = { }
6
- native ?: CSSLayerBlockRule | CSSStyleSheet
7
7
readonly rules : ( Rule | Layer ) [ ] = [ ]
8
8
readonly usages : Record < string , number > = { }
9
+ native ?: CSSLayerBlockRule
9
10
10
11
constructor (
11
12
public name : string ,
@@ -24,9 +25,8 @@ export default class Layer {
24
25
this . css . rules . push ( this )
25
26
const nativeSheet = this . css . style ?. sheet
26
27
if ( nativeSheet && ! this . native ) {
27
- const lengthOfRules = this . css . rules . length
28
- nativeSheet . insertRule ( this . text , lengthOfRules - 1 )
29
- this . native = nativeSheet . cssRules . item ( lengthOfRules - 1 ) as CSSLayerBlockRule
28
+ const insertedIndex = nativeSheet . insertRule ( this . text )
29
+ this . native = nativeSheet . cssRules . item ( insertedIndex ) as CSSLayerBlockRule
30
30
}
31
31
}
32
32
@@ -87,28 +87,26 @@ export default class Layer {
87
87
delete ( key : string ) {
88
88
const rule = this . ruleBy [ key ]
89
89
if ( ! rule ) return
90
-
91
90
if ( this . name && this . rules . length === 1 ) {
92
91
const indexOfLayer = this . css . rules . indexOf ( this )
93
92
this . css . rules . splice ( indexOfLayer , 1 )
94
93
const nativeSheet = this . css . style ?. sheet
95
94
if ( nativeSheet && this . native ) {
96
- nativeSheet . deleteRule ( indexOfLayer )
97
- this . native = undefined
95
+ const foundIndex = findNativeCSSRuleIndex ( nativeSheet . cssRules , this . native )
96
+ if ( foundIndex !== - 1 ) {
97
+ nativeSheet . deleteRule ( foundIndex )
98
+ this . native = undefined
99
+ }
98
100
}
99
101
}
100
102
101
103
if ( this . native ) {
102
104
if ( rule . natives . length ) {
103
105
const firstNativeRule = rule . natives [ 0 ]
104
- for ( let i = 0 ; i < this . native . cssRules . length ; i ++ ) {
105
- const eachCSSRule = this . native . cssRules [ i ]
106
- if ( eachCSSRule === firstNativeRule . cssRule ) {
107
- // eslint-disable-next-line @typescript-eslint/prefer-for-of
108
- for ( let j = 0 ; j < rule . natives . length ; j ++ ) {
109
- this . native . deleteRule ( i )
110
- }
111
- break
106
+ const foundIndex = findNativeCSSRuleIndex ( this . native . cssRules , firstNativeRule . cssRule ! )
107
+ if ( foundIndex === - 1 ) {
108
+ for ( let j = 0 ; j < rule . natives . length ; j ++ ) {
109
+ this . native . deleteRule ( foundIndex )
112
110
}
113
111
}
114
112
}
@@ -120,22 +118,17 @@ export default class Layer {
120
118
}
121
119
122
120
reset ( ) {
123
- // @ts -expect-error
124
- this . ruleBy = { }
121
+ Object . values ( this . ruleBy ) . forEach ( rule => {
122
+ this . delete ( rule . key )
123
+ } )
125
124
// @ts -expect-error
126
125
this . usages = { }
127
- if ( this . name ) {
128
- // @ts -expect-error readonly
129
- this . rules = [ ]
130
- }
131
126
if ( this . native ) {
132
127
this . native = undefined
133
128
}
134
129
}
135
130
136
131
get text ( ) : string {
137
- return this . name
138
- ? '@layer ' + this . name + '{' + this . rules . map ( ( eachRule ) => ( eachRule as Rule ) . text ) . join ( '' ) + '}'
139
- : this . rules . map ( ( eachRule ) => ( eachRule as Rule ) . text ) . join ( '' )
132
+ return '@layer ' + this . name + '{' + this . rules . map ( ( { text } ) => text ) . join ( '' ) + '}'
140
133
}
141
134
}
0 commit comments