summaryrefslogtreecommitdiff
path: root/addons/web_editor/static/src/js/wysiwyg/fonts.js
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/web_editor/static/src/js/wysiwyg/fonts.js
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/web_editor/static/src/js/wysiwyg/fonts.js')
-rw-r--r--addons/web_editor/static/src/js/wysiwyg/fonts.js99
1 files changed, 99 insertions, 0 deletions
diff --git a/addons/web_editor/static/src/js/wysiwyg/fonts.js b/addons/web_editor/static/src/js/wysiwyg/fonts.js
new file mode 100644
index 00000000..257ccaf2
--- /dev/null
+++ b/addons/web_editor/static/src/js/wysiwyg/fonts.js
@@ -0,0 +1,99 @@
+odoo.define('wysiwyg.fonts', function (require) {
+'use strict';
+
+return {
+ /**
+ * Retrieves all the CSS rules which match the given parser (Regex).
+ *
+ * @param {Regex} filter
+ * @returns {Object[]} Array of CSS rules descriptions (objects). A rule is
+ * defined by 3 values: 'selector', 'css' and 'names'. 'selector'
+ * is a string which contains the whole selector, 'css' is a string
+ * which contains the css properties and 'names' is an array of the
+ * first captured groups for each selector part. E.g.: if the
+ * filter is set to match .fa-* rules and capture the icon names,
+ * the rule:
+ * '.fa-alias1::before, .fa-alias2::before { hello: world; }'
+ * will be retrieved as
+ * {
+ * selector: '.fa-alias1::before, .fa-alias2::before',
+ * css: 'hello: world;',
+ * names: ['.fa-alias1', '.fa-alias2'],
+ * }
+ */
+ cacheCssSelectors: {},
+ getCssSelectors: function (filter) {
+ if (this.cacheCssSelectors[filter]) {
+ return this.cacheCssSelectors[filter];
+ }
+ this.cacheCssSelectors[filter] = [];
+ var sheets = document.styleSheets;
+ for (var i = 0; i < sheets.length; i++) {
+ var rules;
+ try {
+ // try...catch because Firefox not able to enumerate
+ // document.styleSheets[].cssRules[] for cross-domain
+ // stylesheets.
+ rules = sheets[i].rules || sheets[i].cssRules;
+ } catch (e) {
+ console.warn("Can't read the css rules of: " + sheets[i].href, e);
+ continue;
+ }
+ if (!rules) {
+ continue;
+ }
+
+ for (var r = 0 ; r < rules.length ; r++) {
+ var selectorText = rules[r].selectorText;
+ if (!selectorText) {
+ continue;
+ }
+ var selectors = selectorText.split(/\s*,\s*/);
+ var data = null;
+ for (var s = 0; s < selectors.length; s++) {
+ var match = selectors[s].trim().match(filter);
+ if (!match) {
+ continue;
+ }
+ if (!data) {
+ data = {
+ selector: match[0],
+ css: rules[r].cssText.replace(/(^.*\{\s*)|(\s*\}\s*$)/g, ''),
+ names: [match[1]]
+ };
+ } else {
+ data.selector += (', ' + match[0]);
+ data.names.push(match[1]);
+ }
+ }
+ if (data) {
+ this.cacheCssSelectors[filter].push(data);
+ }
+ }
+ }
+ return this.cacheCssSelectors[filter];
+ },
+ /**
+ * List of font icons to load by editor. The icons are displayed in the media
+ * editor and identified like font and image (can be colored, spinned, resized
+ * with fa classes).
+ * To add font, push a new object {base, parser}
+ *
+ * - base: class who appear on all fonts
+ * - parser: regular expression used to select all font in css stylesheets
+ *
+ * @type Array
+ */
+ fontIcons: [{base: 'fa', parser: /\.(fa-(?:\w|-)+)::?before/i}],
+ /**
+ * Searches the fonts described by the @see fontIcons variable.
+ */
+ computeFonts: _.once(function () {
+ var self = this;
+ _.each(this.fontIcons, function (data) {
+ data.cssData = self.getCssSelectors(data.parser);
+ data.alias = _.flatten(_.map(data.cssData, _.property('names')));
+ });
+ }),
+};
+});