-
Notifications
You must be signed in to change notification settings - Fork 360
/
Copy pathvariable-declaration.ts
235 lines (211 loc) · 6.63 KB
/
variable-declaration.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
// Copyright 2024 Google Inc. Use of this source code is governed by an
// MIT-style license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
import * as postcss from 'postcss';
import type {DeclarationRaws} from 'postcss/lib/declaration';
import {AnyExpression, ExpressionProps} from '../expression';
import {convertExpression} from '../expression/convert';
import {fromProps} from '../expression/from-props';
import {LazySource} from '../lazy-source';
import {NodeProps} from '../node';
import {RawWithValue} from '../raw-with-value';
import * as sassInternal from '../sass-internal';
import * as utils from '../utils';
import {Statement, StatementWithChildren} from '.';
import {_Declaration} from './declaration-internal';
import * as sassParser from '../..';
/**
* The set of raws supported by {@link VariableDeclaration}.
*
* @category Statement
*/
export interface VariableDeclarationRaws
extends Omit<DeclarationRaws, 'value' | 'important'> {
/**
* The variable's namespace.
*
* This may be different than {@link VariableDeclaration.namespace} if the
* name contains escape codes.
*/
namespace?: RawWithValue<string>;
/**
* The variable's name, not including the `$`.
*
* This may be different than {@link VariableDeclaration.variableName} if
* the name contains escape codes or underscores.
*/
variableName?: RawWithValue<string>;
/** The whitespace and colon between the variable name and value. */
between?: string;
/** The `!default` and/or `!global` flags, including preceding whitespace. */
flags?: RawWithValue<{guarded: boolean; global: boolean}>;
/**
* The space symbols between the end of the variable declaration and the
* semicolon afterwards. Always empty for a variable that isn't followed by a
* semicolon.
*/
afterValue?: string;
}
/**
* The initializer properties for {@link VariableDeclaration}.
*
* @category Statement
*/
export type VariableDeclarationProps = NodeProps & {
raws?: VariableDeclarationRaws;
namespace?: string;
variableName: string;
guarded?: boolean;
global?: boolean;
} & (
| {expression: AnyExpression | ExpressionProps; value?: never}
| {value: string; expression?: never}
);
/**
* A Sass variable declaration. Extends [`postcss.Declaration`].
*
* [`postcss.Declaration`]: https://postcss.org/api/#declaration
*
* @category Statement
*/
export class VariableDeclaration
extends _Declaration<Partial<VariableDeclarationProps>>
implements Statement
{
readonly sassType = 'variable-declaration' as const;
declare parent: StatementWithChildren | undefined;
declare raws: VariableDeclarationRaws;
/**
* The variable's namespace.
*
* This is the parsed value, with escapes resolved to the characters they
* represent.
*/
declare namespace: string | undefined;
/**
* The variable name, not including `$`.
*
* This is the parsed and normalized value, with underscores converted to
* hyphens and escapes resolved to the characters they represent.
*/
declare variableName: string;
/** The variable's value. */
get expression(): AnyExpression {
return this._expression;
}
set expression(value: AnyExpression | ExpressionProps) {
if (this._expression) this._expression.parent = undefined;
const built = 'sassType' in value ? value : fromProps(value);
built.parent = this;
this._expression = built;
}
private declare _expression: AnyExpression;
/** Whether the variable has a `!default` flag. */
declare guarded: boolean;
/** Whether the variable has a `!global` flag. */
declare global: boolean;
get prop(): string {
return (
(this.namespace
? (this.raws.namespace?.value === this.namespace
? this.raws.namespace.raw
: sassInternal.toCssIdentifier(this.namespace)) + '.'
: '') +
'$' +
(this.raws.variableName?.value === this.variableName
? this.raws.variableName.raw
: sassInternal.toCssIdentifier(this.variableName))
);
}
set prop(value: string) {
throw new Error("VariableDeclaration.prop can't be overwritten.");
}
get value(): string {
return this.expression.toString();
}
set value(value: string) {
this.expression = {text: value};
}
get important(): boolean {
// TODO: Return whether `this.expression` is a nested series of unbracketed
// list expressions that ends in the unquoted string `!important` (or an
// unquoted string ending in " !important", which can occur if `value` is
// set // manually).
throw new Error('Not yet implemented');
}
set important(value: boolean) {
// TODO: If value !== this.important, either set this to a space-separated
// list whose second value is `!important` or remove the existing
// `!important` from wherever it's defined. Or if that's too complex, just
// bake this to a string expression and edit that.
throw new Error('Not yet implemented');
}
get variable(): boolean {
return true;
}
constructor(defaults: VariableDeclarationProps);
/** @hidden */
constructor(_: undefined, inner: sassInternal.VariableDeclaration);
constructor(
defaults?: VariableDeclarationProps,
inner?: sassInternal.VariableDeclaration,
) {
super(defaults as unknown as postcss.DeclarationProps);
this.raws ??= {};
if (inner) {
this.source = new LazySource(inner);
this.namespace = inner.namespace ? inner.namespace : undefined;
this.variableName = inner.name;
this.expression = convertExpression(inner.expression);
this.guarded = inner.isGuarded;
this.global = inner.isGlobal;
} else {
this.guarded ??= false;
this.global ??= false;
}
}
clone(overrides?: Partial<VariableDeclarationProps>): this {
return utils.cloneNode(
this,
overrides,
[
'raws',
{name: 'namespace', explicitUndefined: true},
'variableName',
'expression',
'guarded',
'global',
],
['value'],
);
}
toJSON(): object;
/** @hidden */
toJSON(_: string, inputs: Map<postcss.Input, number>): object;
toJSON(_?: string, inputs?: Map<postcss.Input, number>): object {
return utils.toJSON(
this,
[
'prop',
'value',
'namespace',
'variableName',
'expression',
'guarded',
'global',
],
inputs,
);
}
/** @hidden */
toString(
stringifier: postcss.Stringifier | postcss.Syntax = sassParser.scss
.stringify,
): string {
return super.toString(stringifier);
}
/** @hidden */
get nonStatementChildren(): ReadonlyArray<AnyExpression> {
return [this.expression];
}
}