123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- /**
- * DO NOT EDIT THIS FILE.
- * See the following change record for more information,
- * https://www.drupal.org/node/2815083
- * @preserve
- **/
- window.Drupal = { behaviors: {}, locale: {} };
- (function (Drupal, drupalSettings, drupalTranslations, console, Proxy, Reflect) {
- Drupal.throwError = function (error) {
- setTimeout(function () {
- throw error;
- }, 0);
- };
- Drupal.attachBehaviors = function (context, settings) {
- context = context || document;
- settings = settings || drupalSettings;
- var behaviors = Drupal.behaviors;
- Object.keys(behaviors || {}).forEach(function (i) {
- if (typeof behaviors[i].attach === 'function') {
- try {
- behaviors[i].attach(context, settings);
- } catch (e) {
- Drupal.throwError(e);
- }
- }
- });
- };
- Drupal.detachBehaviors = function (context, settings, trigger) {
- context = context || document;
- settings = settings || drupalSettings;
- trigger = trigger || 'unload';
- var behaviors = Drupal.behaviors;
- Object.keys(behaviors || {}).forEach(function (i) {
- if (typeof behaviors[i].detach === 'function') {
- try {
- behaviors[i].detach(context, settings, trigger);
- } catch (e) {
- Drupal.throwError(e);
- }
- }
- });
- };
- Drupal.checkPlain = function (str) {
- str = str.toString().replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''');
- return str;
- };
- Drupal.formatString = function (str, args) {
- var processedArgs = {};
- Object.keys(args || {}).forEach(function (key) {
- switch (key.charAt(0)) {
- case '@':
- processedArgs[key] = Drupal.checkPlain(args[key]);
- break;
- case '!':
- processedArgs[key] = args[key];
- break;
- default:
- processedArgs[key] = Drupal.theme('placeholder', args[key]);
- break;
- }
- });
- return Drupal.stringReplace(str, processedArgs, null);
- };
- Drupal.stringReplace = function (str, args, keys) {
- if (str.length === 0) {
- return str;
- }
- if (!Array.isArray(keys)) {
- keys = Object.keys(args || {});
- keys.sort(function (a, b) {
- return a.length - b.length;
- });
- }
- if (keys.length === 0) {
- return str;
- }
- var key = keys.pop();
- var fragments = str.split(key);
- if (keys.length) {
- for (var i = 0; i < fragments.length; i++) {
- fragments[i] = Drupal.stringReplace(fragments[i], args, keys.slice(0));
- }
- }
- return fragments.join(args[key]);
- };
- Drupal.t = function (str, args, options) {
- options = options || {};
- options.context = options.context || '';
- if (typeof drupalTranslations !== 'undefined' && drupalTranslations.strings && drupalTranslations.strings[options.context] && drupalTranslations.strings[options.context][str]) {
- str = drupalTranslations.strings[options.context][str];
- }
- if (args) {
- str = Drupal.formatString(str, args);
- }
- return str;
- };
- Drupal.url = function (path) {
- return drupalSettings.path.baseUrl + drupalSettings.path.pathPrefix + path;
- };
- Drupal.url.toAbsolute = function (url) {
- var urlParsingNode = document.createElement('a');
- try {
- url = decodeURIComponent(url);
- } catch (e) {}
- urlParsingNode.setAttribute('href', url);
- return urlParsingNode.cloneNode(false).href;
- };
- Drupal.url.isLocal = function (url) {
- var absoluteUrl = Drupal.url.toAbsolute(url);
- var protocol = window.location.protocol;
- if (protocol === 'http:' && absoluteUrl.indexOf('https:') === 0) {
- protocol = 'https:';
- }
- var baseUrl = protocol + '//' + window.location.host + drupalSettings.path.baseUrl.slice(0, -1);
- try {
- absoluteUrl = decodeURIComponent(absoluteUrl);
- } catch (e) {}
- try {
- baseUrl = decodeURIComponent(baseUrl);
- } catch (e) {}
- return absoluteUrl === baseUrl || absoluteUrl.indexOf(baseUrl + '/') === 0;
- };
- Drupal.formatPlural = function (count, singular, plural, args, options) {
- args = args || {};
- args['@count'] = count;
- var pluralDelimiter = drupalSettings.pluralDelimiter;
- var translations = Drupal.t(singular + pluralDelimiter + plural, args, options).split(pluralDelimiter);
- var index = 0;
- if (typeof drupalTranslations !== 'undefined' && drupalTranslations.pluralFormula) {
- index = count in drupalTranslations.pluralFormula ? drupalTranslations.pluralFormula[count] : drupalTranslations.pluralFormula.default;
- } else if (args['@count'] !== 1) {
- index = 1;
- }
- return translations[index];
- };
- Drupal.encodePath = function (item) {
- return window.encodeURIComponent(item).replace(/%2F/g, '/');
- };
- Drupal.deprecationError = function (_ref) {
- var message = _ref.message;
- if (drupalSettings.suppressDeprecationErrors === false && typeof console !== 'undefined' && console.warn) {
- console.warn('[Deprecation] ' + message);
- }
- };
- Drupal.deprecatedProperty = function (_ref2) {
- var target = _ref2.target,
- deprecatedProperty = _ref2.deprecatedProperty,
- message = _ref2.message;
- if (!Proxy || !Reflect) {
- return target;
- }
- return new Proxy(target, {
- get: function get(target, key) {
- for (var _len = arguments.length, rest = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
- rest[_key - 2] = arguments[_key];
- }
- if (key === deprecatedProperty) {
- Drupal.deprecationError({ message: message });
- }
- return Reflect.get.apply(Reflect, [target, key].concat(rest));
- }
- });
- };
- Drupal.theme = function (func) {
- if (func in Drupal.theme) {
- var _Drupal$theme;
- for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
- args[_key2 - 1] = arguments[_key2];
- }
- return (_Drupal$theme = Drupal.theme)[func].apply(_Drupal$theme, args);
- }
- };
- Drupal.theme.placeholder = function (str) {
- return '<em class="placeholder">' + Drupal.checkPlain(str) + '</em>';
- };
- })(Drupal, window.drupalSettings, window.drupalTranslations, window.console, window.Proxy, window.Reflect);
|