-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
Shadow.ts
247 lines (218 loc) · 7.66 KB
/
Shadow.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
import { classRegistry } from './ClassRegistry';
import { Color } from './color/Color';
import { config } from './config';
import { reNum } from './parser/constants';
import { Point } from './Point';
import type { FabricObject } from './shapes/Object/FabricObject';
import type { TClassProperties } from './typedefs';
import { uid } from './util/internals/uid';
import { pickBy } from './util/misc/pick';
import { degreesToRadians } from './util/misc/radiansDegreesConversion';
import { toFixed } from './util/misc/toFixed';
import { rotateVector } from './util/misc/vectors';
/**
* Regex matching shadow offsetX, offsetY and blur (ex: "2px 2px 10px rgba(0,0,0,0.2)", "rgb(0,255,0) 2px 2px")
* - (?:\s|^): This part captures either a whitespace character (\s) or the beginning of a line (^). It's non-capturing (due to (?:...)), meaning it doesn't create a capturing group.
* - (-?\d+(?:\.\d*)?(?:px)?(?:\s?|$))?: This captures the first component of the shadow, which is the horizontal offset. Breaking it down:
* - (-?\d+): Captures an optional minus sign followed by one or more digits (integer part of the number).
* - (?:\.\d*)?: Optionally captures a decimal point followed by zero or more digits (decimal part of the number).
* - (?:px)?: Optionally captures the "px" unit.
* - (?:\s?|$): Captures either an optional whitespace or the end of the line. This whole part is wrapped in a non-capturing group and marked as optional with ?.
* - (-?\d+(?:\.\d*)?(?:px)?(?:\s?|$))?: Similar to the previous step, this captures the vertical offset.
(\d+(?:\.\d*)?(?:px)?)?: This captures the blur radius. It's similar to the horizontal offset but without the optional minus sign.
(?:\s+(-?\d+(?:\.\d*)?(?:px)?(?:\s?|$))?){0,1}: This captures an optional part for the color. It allows for whitespace followed by a component with an optional minus sign, digits, decimal point, and "px" unit.
(?:$|\s): This captures either the end of the line or a whitespace character. It ensures that the match ends either at the end of the string or with a whitespace character.
*/
// eslint-disable-next-line max-len
const shadowOffsetRegex = '(-?\\d+(?:\\.\\d*)?(?:px)?(?:\\s?|$))?';
const reOffsetsAndBlur = new RegExp(
'(?:\\s|^)' +
shadowOffsetRegex +
shadowOffsetRegex +
'(' +
reNum +
'?(?:px)?)?(?:\\s?|$)(?:$|\\s)'
);
export const shadowDefaultValues: Partial<TClassProperties<Shadow>> = {
color: 'rgb(0,0,0)',
blur: 0,
offsetX: 0,
offsetY: 0,
affectStroke: false,
includeDefaultValues: true,
nonScaling: false,
};
export type SerializedShadowOptions = {
color: string;
blur: number;
offsetX: number;
offsetY: number;
affectStroke: boolean;
nonScaling: boolean;
type: string;
};
export class Shadow {
/**
* Shadow color
* @type String
* @default
*/
declare color: string;
/**
* Shadow blur
* @type Number
*/
declare blur: number;
/**
* Shadow horizontal offset
* @type Number
* @default
*/
declare offsetX: number;
/**
* Shadow vertical offset
* @type Number
* @default
*/
declare offsetY: number;
/**
* Whether the shadow should affect stroke operations
* @type Boolean
* @default
*/
declare affectStroke: boolean;
/**
* Indicates whether toObject should include default values
* @type Boolean
* @default
*/
declare includeDefaultValues: boolean;
/**
* When `false`, the shadow will scale with the object.
* When `true`, the shadow's offsetX, offsetY, and blur will not be affected by the object's scale.
* default to false
* @type Boolean
* @default
*/
declare nonScaling: boolean;
declare id: number;
static ownDefaults = shadowDefaultValues;
static type = 'shadow';
/**
* @see {@link http://fabricjs.com/shadows|Shadow demo}
* @param {Object|String} [options] Options object with any of color, blur, offsetX, offsetY properties or string (e.g. "rgba(0,0,0,0.2) 2px 2px 10px")
*/
constructor(options: Partial<TClassProperties<Shadow>>);
constructor(svgAttribute: string);
constructor(arg0: string | Partial<TClassProperties<Shadow>>) {
const options: Partial<TClassProperties<Shadow>> =
typeof arg0 === 'string' ? Shadow.parseShadow(arg0) : arg0;
Object.assign(this, Shadow.ownDefaults);
for (const prop in options) {
// @ts-expect-error for loops are so messy in TS
this[prop] = options[prop];
}
this.id = uid();
}
/**
* @param {String} value Shadow value to parse
* @return {Object} Shadow object with color, offsetX, offsetY and blur
*/
static parseShadow(value: string) {
const shadowStr = value.trim(),
[, offsetX = 0, offsetY = 0, blur = 0] = (
reOffsetsAndBlur.exec(shadowStr) || []
).map((value) => parseFloat(value) || 0),
color = (shadowStr.replace(reOffsetsAndBlur, '') || 'rgb(0,0,0)').trim();
return {
color,
offsetX,
offsetY,
blur,
};
}
/**
* Returns a string representation of an instance
* @see http://www.w3.org/TR/css-text-decor-3/#text-shadow
* @return {String} Returns CSS3 text-shadow declaration
*/
toString() {
return [this.offsetX, this.offsetY, this.blur, this.color].join('px ');
}
/**
* Returns SVG representation of a shadow
* @param {FabricObject} object
* @return {String} SVG representation of a shadow
*/
toSVG(object: FabricObject) {
const offset = rotateVector(
new Point(this.offsetX, this.offsetY),
degreesToRadians(-object.angle)
),
BLUR_BOX = 20,
color = new Color(this.color);
let fBoxX = 40,
fBoxY = 40;
if (object.width && object.height) {
//http://www.w3.org/TR/SVG/filters.html#FilterEffectsRegion
// we add some extra space to filter box to contain the blur ( 20 )
fBoxX =
toFixed(
(Math.abs(offset.x) + this.blur) / object.width,
config.NUM_FRACTION_DIGITS
) *
100 +
BLUR_BOX;
fBoxY =
toFixed(
(Math.abs(offset.y) + this.blur) / object.height,
config.NUM_FRACTION_DIGITS
) *
100 +
BLUR_BOX;
}
if (object.flipX) {
offset.x *= -1;
}
if (object.flipY) {
offset.y *= -1;
}
return `<filter id="SVGID_${this.id}" y="-${fBoxY}%" height="${
100 + 2 * fBoxY
}%" x="-${fBoxX}%" width="${
100 + 2 * fBoxX
}%" >\n\t<feGaussianBlur in="SourceAlpha" stdDeviation="${toFixed(
this.blur ? this.blur / 2 : 0,
config.NUM_FRACTION_DIGITS
)}"></feGaussianBlur>\n\t<feOffset dx="${toFixed(
offset.x,
config.NUM_FRACTION_DIGITS
)}" dy="${toFixed(
offset.y,
config.NUM_FRACTION_DIGITS
)}" result="oBlur" ></feOffset>\n\t<feFlood flood-color="${color.toRgb()}" flood-opacity="${color.getAlpha()}"/>\n\t<feComposite in2="oBlur" operator="in" />\n\t<feMerge>\n\t\t<feMergeNode></feMergeNode>\n\t\t<feMergeNode in="SourceGraphic"></feMergeNode>\n\t</feMerge>\n</filter>\n`;
}
/**
* Returns object representation of a shadow
* @return {Object} Object representation of a shadow instance
*/
toObject() {
const data: SerializedShadowOptions = {
color: this.color,
blur: this.blur,
offsetX: this.offsetX,
offsetY: this.offsetY,
affectStroke: this.affectStroke,
nonScaling: this.nonScaling,
type: (this.constructor as typeof Shadow).type,
};
const defaults = Shadow.ownDefaults as SerializedShadowOptions;
return !this.includeDefaultValues
? pickBy(data, (value, key) => value !== defaults[key])
: data;
}
static async fromObject(options: Partial<TClassProperties<Shadow>>) {
return new this(options);
}
}
classRegistry.setClass(Shadow, 'shadow');