-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathutils_css.js
619 lines (602 loc) · 20.9 KB
/
utils_css.js
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
import { SIZES, MEDIAS_BREAKPOINTS } from "@web/core/ui/ui_service";
import { normalizeCSSColor, isCSSColor, isColorGradient } from "@web/core/utils/colors";
let editableWindow = window;
export const setEditableWindow = (ew) => (editableWindow = ew);
let editableDocument = document;
export const setEditableDocument = (ed) => (editableDocument = ed);
export const COLOR_PALETTE_COMPATIBILITY_COLOR_NAMES = [
"primary",
"secondary",
"alpha",
"beta",
"gamma",
"delta",
"epsilon",
"success",
"info",
"warning",
"danger",
];
/**
* These constants are colors that can be edited by the user when using
* web_editor in a website context. We keep track of them so that color
* palettes and their preview elements can always have the right colors
* displayed even if website has redefined the colors during an editing
* session.
*
* @type {string[]}
*/
export const EDITOR_COLOR_CSS_VARIABLES = [...COLOR_PALETTE_COMPATIBILITY_COLOR_NAMES];
// o-cc and o-colors
for (let i = 1; i <= 5; i++) {
EDITOR_COLOR_CSS_VARIABLES.push(`o-color-${i}`);
EDITOR_COLOR_CSS_VARIABLES.push(`o-cc${i}-bg`);
EDITOR_COLOR_CSS_VARIABLES.push(`o-cc${i}-bg-gradient`);
EDITOR_COLOR_CSS_VARIABLES.push(`o-cc${i}-headings`);
EDITOR_COLOR_CSS_VARIABLES.push(`o-cc${i}-text`);
EDITOR_COLOR_CSS_VARIABLES.push(`o-cc${i}-btn-primary`);
EDITOR_COLOR_CSS_VARIABLES.push(`o-cc${i}-btn-primary-text`);
EDITOR_COLOR_CSS_VARIABLES.push(`o-cc${i}-btn-secondary`);
EDITOR_COLOR_CSS_VARIABLES.push(`o-cc${i}-btn-secondary-text`);
EDITOR_COLOR_CSS_VARIABLES.push(`o-cc${i}-btn-primary-border`);
EDITOR_COLOR_CSS_VARIABLES.push(`o-cc${i}-btn-secondary-border`);
}
// Grays
for (let i = 100; i <= 900; i += 100) {
EDITOR_COLOR_CSS_VARIABLES.push(`${i}`);
}
/**
* window.getComputedStyle cannot work properly with CSS shortcuts (like
* 'border-width' which is a shortcut for the top + right + bottom + left border
* widths. If an option wants to customize such a shortcut, it should be listed
* here with the non-shortcuts property it stands for, in order.
*
* @type {Object<string[]>}
*/
export const CSS_SHORTHANDS = {
"border-width": [
"border-top-width",
"border-right-width",
"border-bottom-width",
"border-left-width",
],
"border-radius": [
"border-top-left-radius",
"border-top-right-radius",
"border-bottom-right-radius",
"border-bottom-left-radius",
],
"border-color": [
"border-top-color",
"border-right-color",
"border-bottom-color",
"border-left-color",
],
"border-style": [
"border-top-style",
"border-right-style",
"border-bottom-style",
"border-left-style",
],
padding: ["padding-top", "padding-right", "padding-bottom", "padding-left"],
};
/**
* Key-value mapping to list converters from an unit A to an unit B.
* - The key is a string in the format '$1-$2' where $1 is the CSS symbol of
* unit A and $2 is the CSS symbol of unit B.
* - The value is a function that converts the received value (expressed in
* unit A) to another value expressed in unit B. Two other parameters is
* received: the css property on which the unit applies and the jQuery element
* on which that css property may change.
*/
export const CSS_UNITS_CONVERSION = {
"s-ms": () => 1000,
"ms-s": () => 0.001,
"rem-px": () => computePxByRem(),
"px-rem": () => computePxByRem(true),
"%-px": () => -1, // Not implemented but should simply be ignored for now
"px-%": () => -1, // Not implemented but should simply be ignored for now
};
/**
* Colors of the default palette, used for substitution in shapes/illustrations.
* key: number of the color in the palette (ie, o-color-<1-5>)
* value: color hex code
*/
export const DEFAULT_PALETTE = {
1: "#3AADAA",
2: "#7C6576",
3: "#F6F6F6",
4: "#FFFFFF",
5: "#383E45",
};
/**
* Set of all the data attributes relative to the background images.
*/
const BACKGROUND_IMAGE_ATTRIBUTES = new Set([
"originalId",
"originalSrc",
"mimetype",
"resizeWidth",
"glFilter",
"quality",
"bgSrc",
"filterOptions",
"mimetypeBeforeConversion",
]);
/**
* Computes the number of "px" needed to make a "rem" unit. Subsequent calls
* returns the cached computed value.
*
* @param {boolean} [toRem=false]
* @returns {float} - number of px by rem if 'toRem' is false
* - the inverse otherwise
*/
export function computePxByRem(toRem) {
if (editableDocument.PX_BY_REM === undefined) {
const htmlStyle = editableWindow.getComputedStyle(editableDocument.documentElement);
editableDocument.PX_BY_REM = parseFloat(htmlStyle["font-size"]);
}
return toRem ? 1 / editableDocument.PX_BY_REM : editableDocument.PX_BY_REM;
}
/**
* Converts the given (value + unit) string to a numeric value expressed in
* the other given css unit.
*
* e.g. fct('400ms', 's') -> 0.4
*
* @param {string} value
* @param {string} unitTo
* @param {string} [cssProp] - the css property on which the unit applies
* @returns {number}
*/
export function convertValueToUnit(value, unitTo, cssProp) {
const m = getNumericAndUnit(value);
if (!m) {
return NaN;
}
const numValue = parseFloat(m[0]);
const valueUnit = m[1];
return convertNumericToUnit(numValue, valueUnit, unitTo, cssProp);
}
/**
* Converts the given numeric value expressed in the given css unit into
* the corresponding numeric value expressed in the other given css unit.
*
* e.g. fct(400, 'ms', 's') -> 0.4
*
* @param {number} value
* @param {string} unitFrom
* @param {string} unitTo
* @param {string} [cssProp] - the css property on which the unit applies
* @returns {number}
*/
export function convertNumericToUnit(value, unitFrom, unitTo, cssProp) {
if (Math.abs(value) < Number.EPSILON || unitFrom === unitTo) {
return value;
}
const converter = CSS_UNITS_CONVERSION[`${unitFrom}-${unitTo}`];
if (converter === undefined) {
throw new Error(`Cannot convert '${unitFrom}' units into '${unitTo}' units !`);
}
return value * converter(cssProp);
}
/**
* Returns the numeric value and unit of a css value.
*
* e.g. fct('400ms') -> [400, 'ms']
*
* @param {string} value
* @returns {Array|null}
*/
export function getNumericAndUnit(value) {
const m = value.trim().match(/^(-?[0-9.]+(?:e[+|-]?[0-9]+)?)\s*([^\s]*)$/);
if (!m) {
return null;
}
return [m[1].trim(), m[2].trim()];
}
/**
* Checks if two css values are equal.
*
* @param {string} value1
* @param {string} value2
* @param {string} [cssProp] - the css property on which the unit applies
* @returns {boolean}
*/
export function areCssValuesEqual(value1, value2, cssProp) {
// String comparison first
if (value1 === value2) {
return true;
}
// In case the values are a size, they might be made of two parts.
if (cssProp && cssProp.endsWith("-size")) {
// Avoid re-splitting each part during their individual comparison.
const pseudoPartProp = cssProp + "-part";
const re = /-?[0-9.]+(?:e[+|-]?[0-9]+)?\s*[A-Za-z%-]+|auto/g;
const parts1 = value1.match(re);
const parts2 = value2.match(re);
for (const index of [0, 1]) {
const part1 = parts1 && parts1.length > index ? parts1[index] : "auto";
const part2 = parts2 && parts2.length > index ? parts2[index] : "auto";
if (!areCssValuesEqual(part1, part2, pseudoPartProp)) {
return false;
}
}
return true;
}
// It could be a CSS variable, in that case the actual value has to be
// retrieved before comparing.
if (value1.startsWith("var(--")) {
value1 = getCSSVariableValue(value1.substring(6, value1.length - 1));
}
if (value2.startsWith("var(--")) {
value2 = getCSSVariableValue(value2.substring(6, value2.length - 1));
}
if (value1 === value2) {
return true;
}
// They may be colors, normalize then re-compare the resulting string
const color1 = normalizeCSSColor(value1);
const color2 = normalizeCSSColor(value2);
if (color1 === color2) {
return true;
}
// They may be gradients
const value1IsGradient = isColorGradient(value1);
const value2IsGradient = isColorGradient(value2);
if (value1IsGradient !== value2IsGradient) {
return false;
}
if (value1IsGradient) {
// Kinda hacky and probably inneficient but probably the easiest way:
// applied the value as background-image of two fakes elements and
// compare their computed value.
const temp1El = document.createElement("div");
temp1El.style.backgroundImage = value1;
document.body.appendChild(temp1El);
value1 = getComputedStyle(temp1El).backgroundImage;
document.body.removeChild(temp1El);
const temp2El = document.createElement("div");
temp2El.style.backgroundImage = value2;
document.body.appendChild(temp2El);
value2 = getComputedStyle(temp2El).backgroundImage;
document.body.removeChild(temp2El);
return value1 === value2;
}
// In case the values are meant as box-shadow, this is difficult to compare.
// In this case we use the kinda hacky and probably inneficient but probably
// easiest way: applying the value as box-shadow of two fakes elements and
// compare their computed value.
if (cssProp === "box-shadow") {
const temp1El = document.createElement("div");
temp1El.style.boxShadow = value1;
document.body.appendChild(temp1El);
value1 = getComputedStyle(temp1El).boxShadow;
document.body.removeChild(temp1El);
const temp2El = document.createElement("div");
temp2El.style.boxShadow = value2;
document.body.appendChild(temp2El);
value2 = getComputedStyle(temp2El).boxShadow;
document.body.removeChild(temp2El);
return value1 === value2;
}
// Convert the second value in the unit of the first one and compare
// floating values
const data = getNumericAndUnit(value1);
if (!data) {
return false;
}
const numValue1 = data[0];
const numValue2 = convertValueToUnit(value2, data[1], cssProp);
return Math.abs(numValue1 - numValue2) < Number.EPSILON;
}
/**
* @param {string|number} name
* @returns {boolean}
*/
export function isColorCombinationName(name) {
const number = parseInt(name);
return !isNaN(number) && number % 100 !== 0;
}
/**
* @param {string[]} colorNames
* @param {string} [prefix='bg-']
* @returns {string[]}
*/
export function computeColorClasses(colorNames, prefix = "bg-") {
let hasCCClasses = false;
const isBgPrefix = prefix === "bg-";
const classes = colorNames.map((c) => {
if (isBgPrefix && isColorCombinationName(c)) {
hasCCClasses = true;
return `o_cc${c}`;
}
return prefix + c;
});
if (hasCCClasses) {
classes.push("o_cc");
}
return classes;
}
/**
* @param {string} key
* @param {CSSStyleDeclaration} [htmlStyle] if not provided, it is computed
* @returns {string}
*/
export function getCSSVariableValue(key, htmlStyle) {
if (htmlStyle === undefined) {
htmlStyle = editableWindow.getComputedStyle(editableWindow.document.documentElement);
}
// Get trimmed value from the HTML element
let value = htmlStyle.getPropertyValue(`--${key}`).trim();
// If it is a color value, it needs to be normalized
value = normalizeCSSColor(value);
// Normally scss-string values are "printed" single-quoted. That way no
// magic conversation is needed when customizing a variable: either save it
// quoted for strings or non quoted for colors, numbers, etc. However,
// Chrome has the annoying behavior of changing the single-quotes to
// double-quotes when reading them through getPropertyValue...
return value.replace(/"/g, "'");
}
/**
* Normalize a color in case it is a variable name so it can be used outside of
* css.
*
* @param {string} color the color to normalize into a css value
* @returns {string} the normalized color
*/
export function normalizeColor(color) {
if (isCSSColor(color)) {
return color;
}
return getCSSVariableValue(color);
}
/**
* Parse an element's background-image's url.
*
* @param {string} string a css value in the form 'url("...")'
* @returns {string|false} the src of the image or false if not parsable
*/
export function getBgImageURLFromEl(el) {
const parts = backgroundImageCssToParts(window.getComputedStyle(el).backgroundImage);
const string = parts.url || "";
return getBgImageURLFromURL(string);
}
/**
* Parse an element's background-image's url.
*
* @param {string} string a css value in the form 'url("...")'
* @returns {string|false} the src of the image or false if not parsable
*/
export function getBgImageURLFromURL(url) {
const match = url.match(/^url\((['"])(.*?)\1\)$/);
if (!match) {
return "";
}
const matchedURL = match[2];
// Make URL relative if possible
const fullURL = new URL(matchedURL, window.location.origin);
if (fullURL.origin === window.location.origin) {
return fullURL.href.slice(fullURL.origin.length);
}
return matchedURL;
}
/**
* Extracts url and gradient parts from the background-image CSS property.
*
* @param {string} CSS 'background-image' property value
* @returns {Object} contains the separated 'url' and 'gradient' parts
*/
export function backgroundImageCssToParts(css) {
const parts = {};
css = css || "";
if (css.startsWith("url(")) {
const urlEnd = css.indexOf(")") + 1;
parts.url = css.substring(0, urlEnd).trim();
const commaPos = css.indexOf(",", urlEnd);
css = commaPos > 0 ? css.substring(commaPos + 1) : "";
}
if (isColorGradient(css)) {
parts.gradient = css.trim();
}
return parts;
}
/**
* Combines url and gradient parts into a background-image CSS property value
*
* @param {Object} parts contains the separated 'url' and 'gradient' parts
* @returns {string} CSS 'background-image' property value
*/
export function backgroundImagePartsToCss(parts) {
let css = parts.url || "";
if (parts.gradient) {
css += (css ? ", " : "") + parts.gradient;
}
return css || "none";
}
/**
* Generates a string ID.
*
* @private
* @returns {string}
*/
export function generateHTMLId() {
return `o${Math.random().toString(36).substring(2, 15)}`;
}
/**
* Returns the class of the element that matches the specified prefix.
*
* @private
* @param {Element} el element from which to recover the color class
* @param {string[]} colorNames
* @param {string} prefix prefix of the color class to recover
* @returns {string} color class matching the prefix or an empty string
*/
export function getColorClass(el, colorNames, prefix) {
const prefixedColorNames = computeColorClasses(colorNames, prefix);
return el.classList.value
.split(" ")
.filter((cl) => prefixedColorNames.includes(cl))
.join(" ");
}
/**
* Add one or more new attributes related to background images in the
* BACKGROUND_IMAGE_ATTRIBUTES set.
*
* @param {...string} newAttributes The new attributes to add in the
* BACKGROUND_IMAGE_ATTRIBUTES set.
*/
export function addBackgroundImageAttributes(...newAttributes) {
BACKGROUND_IMAGE_ATTRIBUTES.add(...newAttributes);
}
/**
* Check if an attribute is in the BACKGROUND_IMAGE_ATTRIBUTES set.
*
* @param {string} attribute The attribute that has to be checked.
*/
export function isBackgroundImageAttribute(attribute) {
return BACKGROUND_IMAGE_ATTRIBUTES.has(attribute);
}
/**
* Checks if an element supposedly marked with the o_editable_media class should
* in fact be editable (checks if its environment looks like a non editable
* environment whose media should be editable).
*
* TODO: the name of this function is voluntarily bad to reflect the fact that
* this system should be improved. The combination of o_not_editable,
* o_editable, getContentEditableAreas, getReadOnlyAreas and other concepts
* related to what should be editable or not should be reviewed.
*
* @returns {boolean}
*/
export function shouldEditableMediaBeEditable(mediaEl) {
// Some sections of the DOM are contenteditable="false" (for
// example with the help of the o_not_editable class) but have
// inner media that should be editable (the fact the container
// is not is to prevent adding text in between those medias).
// This case is complex and the solution to support it is not
// perfect: we mark those media with a class and check that the
// first non editable ancestor is in fact in an editable parent.
const parentEl = mediaEl.parentElement;
const nonEditableAncestorRootEl = parentEl && parentEl.closest('[contenteditable="false"]');
return (
nonEditableAncestorRootEl &&
nonEditableAncestorRootEl.parentElement &&
nonEditableAncestorRootEl.parentElement.isContentEditable
);
}
/**
* Checks if the view of the targeted element is mobile.
*
* @param {HTMLElement} targetEl - target of the editor
* @returns {boolean}
*/
export function isMobileView(targetEl) {
const mobileViewThreshold = MEDIAS_BREAKPOINTS[SIZES.LG].minWidth;
const clientWidth =
targetEl.ownerDocument.defaultView?.frameElement?.clientWidth ||
targetEl.ownerDocument.documentElement.clientWidth;
return clientWidth && clientWidth < mobileViewThreshold;
}
/**
* Returns the label of a link element.
*
* @param {HTMLElement} linkEl
* @returns {string}
*/
export function getLinkLabel(linkEl) {
return linkEl.textContent.replaceAll("\u200B", "").replaceAll("\uFEFF", "");
}
/**
* Forwards an image source to its carousel thumbnail.
* @param {HTMLElement} imgEl
*/
export function forwardToThumbnail(imgEl) {
const carouselEl = imgEl.closest(".carousel");
if (carouselEl) {
const carouselInnerEl = imgEl.closest(".carousel-inner");
const carouselItemEl = imgEl.closest(".carousel-item");
if (carouselInnerEl && carouselItemEl) {
const imageIndex = [...carouselInnerEl.children].indexOf(carouselItemEl);
const miniatureEl = carouselEl.querySelector(
`.carousel-indicators [data-bs-slide-to="${imageIndex}"]`
);
if (miniatureEl && miniatureEl.style.backgroundImage) {
miniatureEl.style.backgroundImage = `url(${imgEl.getAttribute("src")})`;
}
}
}
}
/**
* @param {HTMLImageElement} img
* @returns {Promise<Boolean>}
*/
export async function isImageCorsProtected(img) {
const src = img.getAttribute("src");
if (!src) {
return false;
}
let isCorsProtected = false;
if (!src.startsWith("/") || /\/web\/image\/\d+-redirect\//.test(src)) {
// The `fetch()` used later in the code might fail if the image is
// CORS protected. We check upfront if it's the case.
// Two possible cases:
// 1. the `src` is an absolute URL from another domain.
// For instance, abc.odoo.com vs abc.com which are actually the
// same database behind.
// 2. A "attachment-url" which is just a redirect to the real image
// which could be hosted on another website.
isCorsProtected = await fetch(src, { method: "HEAD" })
.then(() => false)
.catch(() => true);
}
return isCorsProtected;
}
/**
* @param {string} src
* @returns {Promise<Boolean>}
*/
export async function isSrcCorsProtected(src) {
const dummyImg = document.createElement("img");
dummyImg.src = src;
return isImageCorsProtected(dummyImg);
}
/**
* Applies only the needed CSS in the style attribute:
* - no attribute if value is already the wanted one (possibly from a class)
* - plain attribute if that change is sufficient to make it applied
* - important attribute if the plain one did not work
*
* @param {HTMLElement} el
* @param {string} cssProp
* @param {string} cssValue
* @param {CSSStyleDeclaration} computedStyle of el
* @param {boolean} force to always apply as important
* @param {boolean} allowImportant to avoid applying the style as important
* @returns {boolean} if a value was applied
*/
export function applyNeededCss(
el,
cssProp,
cssValue,
computedStyle = window.getComputedStyle(el),
{ force = false, allowImportant = true } = {}
) {
if (force) {
el.style.setProperty(cssProp, cssValue, allowImportant ? "important" : "");
return true;
}
el.style.removeProperty(cssProp);
if (!areCssValuesEqual(computedStyle.getPropertyValue(cssProp), cssValue, cssProp)) {
el.style.setProperty(cssProp, cssValue);
// If change had no effect then make it important.
if (
allowImportant &&
!areCssValuesEqual(computedStyle.getPropertyValue(cssProp), cssValue, cssProp)
) {
el.style.setProperty(cssProp, cssValue, "important");
}
return true;
}
return false;
}