12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580 |
- (function($, window, Drupal, drupalSettings) {
-
- Drupal.behaviors.AJAX = {
- attach(context, settings) {
- function loadAjaxBehavior(base) {
- const elementSettings = settings.ajax[base];
- if (typeof elementSettings.selector === 'undefined') {
- elementSettings.selector = `#${base}`;
- }
- $(elementSettings.selector)
- .once('drupal-ajax')
- .each(function() {
- elementSettings.element = this;
- elementSettings.base = base;
- Drupal.ajax(elementSettings);
- });
- }
-
- Object.keys(settings.ajax || {}).forEach(base => loadAjaxBehavior(base));
- Drupal.ajax.bindAjaxLinks(document.body);
-
- $('.use-ajax-submit')
- .once('ajax')
- .each(function() {
- const elementSettings = {};
-
-
- elementSettings.url = $(this.form).attr('action');
-
-
- elementSettings.setClick = true;
-
- elementSettings.event = 'click';
-
-
- elementSettings.progress = { type: 'throbber' };
- elementSettings.base = $(this).attr('id');
- elementSettings.element = this;
- Drupal.ajax(elementSettings);
- });
- },
- detach(context, settings, trigger) {
- if (trigger === 'unload') {
- Drupal.ajax.expired().forEach(instance => {
-
-
- Drupal.ajax.instances[instance.instanceIndex] = null;
- });
- }
- },
- };
-
- Drupal.AjaxError = function(xmlhttp, uri, customMessage) {
- let statusCode;
- let statusText;
- let responseText;
- if (xmlhttp.status) {
- statusCode = `\n${Drupal.t('An AJAX HTTP error occurred.')}\n${Drupal.t(
- 'HTTP Result Code: !status',
- {
- '!status': xmlhttp.status,
- },
- )}`;
- } else {
- statusCode = `\n${Drupal.t(
- 'An AJAX HTTP request terminated abnormally.',
- )}`;
- }
- statusCode += `\n${Drupal.t('Debugging information follows.')}`;
- const pathText = `\n${Drupal.t('Path: !uri', { '!uri': uri })}`;
- statusText = '';
-
-
-
-
- try {
- statusText = `\n${Drupal.t('StatusText: !statusText', {
- '!statusText': $.trim(xmlhttp.statusText),
- })}`;
- } catch (e) {
-
- }
- responseText = '';
-
-
- try {
- responseText = `\n${Drupal.t('ResponseText: !responseText', {
- '!responseText': $.trim(xmlhttp.responseText),
- })}`;
- } catch (e) {
-
- }
-
- responseText = responseText.replace(/<("[^"]*"|'[^']*'|[^'">])*>/gi, '');
- responseText = responseText.replace(/[\n]+\s+/g, '\n');
-
- const readyStateText =
- xmlhttp.status === 0
- ? `\n${Drupal.t('ReadyState: !readyState', {
- '!readyState': xmlhttp.readyState,
- })}`
- : '';
- customMessage = customMessage
- ? `\n${Drupal.t('CustomMessage: !customMessage', {
- '!customMessage': customMessage,
- })}`
- : '';
-
- this.message =
- statusCode +
- pathText +
- statusText +
- customMessage +
- responseText +
- readyStateText;
-
- this.name = 'AjaxError';
- };
- Drupal.AjaxError.prototype = new Error();
- Drupal.AjaxError.prototype.constructor = Drupal.AjaxError;
-
- Drupal.ajax = function(settings) {
- if (arguments.length !== 1) {
- throw new Error(
- 'Drupal.ajax() function must be called with one configuration object only',
- );
- }
-
- const base = settings.base || false;
- const element = settings.element || false;
- delete settings.base;
- delete settings.element;
-
- if (!settings.progress && !element) {
- settings.progress = false;
- }
- const ajax = new Drupal.Ajax(base, element, settings);
- ajax.instanceIndex = Drupal.ajax.instances.length;
- Drupal.ajax.instances.push(ajax);
- return ajax;
- };
-
- Drupal.ajax.instances = [];
-
- Drupal.ajax.expired = function() {
- return Drupal.ajax.instances.filter(
- instance =>
- instance &&
- instance.element !== false &&
- !document.body.contains(instance.element),
- );
- };
-
- Drupal.ajax.bindAjaxLinks = element => {
-
- $(element)
- .find('.use-ajax')
- .once('ajax')
- .each((i, ajaxLink) => {
- const $linkElement = $(ajaxLink);
- const elementSettings = {
-
- progress: { type: 'throbber' },
- dialogType: $linkElement.data('dialog-type'),
- dialog: $linkElement.data('dialog-options'),
- dialogRenderer: $linkElement.data('dialog-renderer'),
- base: $linkElement.attr('id'),
- element: ajaxLink,
- };
- const href = $linkElement.attr('href');
-
- if (href) {
- elementSettings.url = href;
- elementSettings.event = 'click';
- }
- Drupal.ajax(elementSettings);
- });
- };
-
-
- Drupal.Ajax = function(base, element, elementSettings) {
- const defaults = {
- event: element ? 'mousedown' : null,
- keypress: true,
- selector: base ? `#${base}` : null,
- effect: 'none',
- speed: 'none',
- method: 'replaceWith',
- progress: {
- type: 'throbber',
- message: Drupal.t('Please wait...'),
- },
- submit: {
- js: true,
- },
- };
- $.extend(this, defaults, elementSettings);
-
- this.commands = new Drupal.AjaxCommands();
-
- this.instanceIndex = false;
-
-
-
-
- if (this.wrapper) {
-
- this.wrapper = `#${this.wrapper}`;
- }
-
- this.element = element;
-
- this.element_settings = elementSettings;
-
- this.elementSettings = elementSettings;
-
-
- if (this.element && this.element.form) {
-
- this.$form = $(this.element.form);
- }
-
- if (!this.url) {
- const $element = $(this.element);
- if ($element.is('a')) {
- this.url = $element.attr('href');
- } else if (this.element && element.form) {
- this.url = this.$form.attr('action');
- }
- }
-
-
-
-
-
-
-
- const originalUrl = this.url;
-
- this.url = this.url.replace(/\/nojs(\/|$|\?|#)/, '/ajax$1');
-
-
- if (drupalSettings.ajaxTrustedUrl[originalUrl]) {
- drupalSettings.ajaxTrustedUrl[this.url] = true;
- }
-
-
- const ajax = this;
-
- ajax.options = {
- url: ajax.url,
- data: ajax.submit,
- beforeSerialize(elementSettings, options) {
- return ajax.beforeSerialize(elementSettings, options);
- },
- beforeSubmit(formValues, elementSettings, options) {
- ajax.ajaxing = true;
- return ajax.beforeSubmit(formValues, elementSettings, options);
- },
- beforeSend(xmlhttprequest, options) {
- ajax.ajaxing = true;
- return ajax.beforeSend(xmlhttprequest, options);
- },
- success(response, status, xmlhttprequest) {
-
-
- if (typeof response === 'string') {
- response = $.parseJSON(response);
- }
-
-
-
-
-
-
-
-
-
-
- if (response !== null && !drupalSettings.ajaxTrustedUrl[ajax.url]) {
- if (xmlhttprequest.getResponseHeader('X-Drupal-Ajax-Token') !== '1') {
- const customMessage = Drupal.t(
- 'The response failed verification so will not be processed.',
- );
- return ajax.error(xmlhttprequest, ajax.url, customMessage);
- }
- }
- return ajax.success(response, status);
- },
- complete(xmlhttprequest, status) {
- ajax.ajaxing = false;
- if (status === 'error' || status === 'parsererror') {
- return ajax.error(xmlhttprequest, ajax.url);
- }
- },
- dataType: 'json',
- type: 'POST',
- };
- if (elementSettings.dialog) {
- ajax.options.data.dialogOptions = elementSettings.dialog;
- }
-
-
- if (ajax.options.url.indexOf('?') === -1) {
- ajax.options.url += '?';
- } else {
- ajax.options.url += '&';
- }
-
- let wrapper = `drupal_${elementSettings.dialogType || 'ajax'}`;
- if (elementSettings.dialogRenderer) {
- wrapper += `.${elementSettings.dialogRenderer}`;
- }
- ajax.options.url += `${Drupal.ajax.WRAPPER_FORMAT}=${wrapper}`;
-
- $(ajax.element).on(elementSettings.event, function(event) {
- if (
- !drupalSettings.ajaxTrustedUrl[ajax.url] &&
- !Drupal.url.isLocal(ajax.url)
- ) {
- throw new Error(
- Drupal.t('The callback URL is not local and not trusted: !url', {
- '!url': ajax.url,
- }),
- );
- }
- return ajax.eventResponse(this, event);
- });
-
-
-
- if (elementSettings.keypress) {
- $(ajax.element).on('keypress', function(event) {
- return ajax.keypressResponse(this, event);
- });
- }
-
-
-
- if (elementSettings.prevent) {
- $(ajax.element).on(elementSettings.prevent, false);
- }
- };
-
- Drupal.ajax.WRAPPER_FORMAT = '_wrapper_format';
-
- Drupal.Ajax.AJAX_REQUEST_PARAMETER = '_drupal_ajax';
-
- Drupal.Ajax.prototype.execute = function() {
-
- if (this.ajaxing) {
- return;
- }
- try {
- this.beforeSerialize(this.element, this.options);
-
- return $.ajax(this.options);
- } catch (e) {
-
-
- this.ajaxing = false;
- window.alert(
- `An error occurred while attempting to process ${this.options.url}: ${e.message}`,
- );
-
-
- return $.Deferred().reject();
- }
- };
-
- Drupal.Ajax.prototype.keypressResponse = function(element, event) {
-
- const ajax = this;
-
-
-
-
-
- if (
- event.which === 13 ||
- (event.which === 32 &&
- element.type !== 'text' &&
- element.type !== 'textarea' &&
- element.type !== 'tel' &&
- element.type !== 'number')
- ) {
- event.preventDefault();
- event.stopPropagation();
- $(element).trigger(ajax.elementSettings.event);
- }
- };
-
- Drupal.Ajax.prototype.eventResponse = function(element, event) {
- event.preventDefault();
- event.stopPropagation();
-
- const ajax = this;
-
- if (ajax.ajaxing) {
- return;
- }
- try {
- if (ajax.$form) {
-
-
- if (ajax.setClick) {
-
-
-
-
- element.form.clk = element;
- }
- ajax.$form.ajaxSubmit(ajax.options);
- } else {
- ajax.beforeSerialize(ajax.element, ajax.options);
- $.ajax(ajax.options);
- }
- } catch (e) {
-
-
- ajax.ajaxing = false;
- window.alert(
- `An error occurred while attempting to process ${ajax.options.url}: ${e.message}`,
- );
- }
- };
-
- Drupal.Ajax.prototype.beforeSerialize = function(element, options) {
-
-
-
-
-
- if (this.$form && document.body.contains(this.$form.get(0))) {
- const settings = this.settings || drupalSettings;
- Drupal.detachBehaviors(this.$form.get(0), settings, 'serialize');
- }
-
- options.data[Drupal.Ajax.AJAX_REQUEST_PARAMETER] = 1;
-
-
-
-
-
- const pageState = drupalSettings.ajaxPageState;
- options.data['ajax_page_state[theme]'] = pageState.theme;
- options.data['ajax_page_state[theme_token]'] = pageState.theme_token;
- options.data['ajax_page_state[libraries]'] = pageState.libraries;
- };
-
- Drupal.Ajax.prototype.beforeSubmit = function(formValues, element, options) {
-
-
- };
-
- Drupal.Ajax.prototype.beforeSend = function(xmlhttprequest, options) {
-
-
-
-
-
-
-
-
-
-
- if (this.$form) {
- options.extraData = options.extraData || {};
-
-
-
- options.extraData.ajax_iframe_upload = '1';
-
-
-
-
-
- const v = $.fieldValue(this.element);
- if (v !== null) {
- options.extraData[this.element.name] = v;
- }
- }
-
-
-
-
- $(this.element).prop('disabled', true);
- if (!this.progress || !this.progress.type) {
- return;
- }
-
- const progressIndicatorMethod = `setProgressIndicator${this.progress.type
- .slice(0, 1)
- .toUpperCase()}${this.progress.type.slice(1).toLowerCase()}`;
- if (
- progressIndicatorMethod in this &&
- typeof this[progressIndicatorMethod] === 'function'
- ) {
- this[progressIndicatorMethod].call(this);
- }
- };
-
- Drupal.theme.ajaxProgressThrobber = message => {
-
- const messageMarkup =
- typeof message === 'string'
- ? Drupal.theme('ajaxProgressMessage', message)
- : '';
- const throbber = '<div class="throbber"> </div>';
- return `<div class="ajax-progress ajax-progress-throbber">${throbber}${messageMarkup}</div>`;
- };
-
- Drupal.theme.ajaxProgressIndicatorFullscreen = () =>
- '<div class="ajax-progress ajax-progress-fullscreen"> </div>';
-
- Drupal.theme.ajaxProgressMessage = message =>
- `<div class="message">${message}</div>`;
-
- Drupal.theme.ajaxProgressBar = $element =>
- $('<div class="ajax-progress ajax-progress-bar"></div>').append($element);
-
- Drupal.Ajax.prototype.setProgressIndicatorBar = function() {
- const progressBar = new Drupal.ProgressBar(
- `ajax-progress-${this.element.id}`,
- $.noop,
- this.progress.method,
- $.noop,
- );
- if (this.progress.message) {
- progressBar.setProgress(-1, this.progress.message);
- }
- if (this.progress.url) {
- progressBar.startMonitoring(
- this.progress.url,
- this.progress.interval || 1500,
- );
- }
- this.progress.element = $(
- Drupal.theme('ajaxProgressBar', progressBar.element),
- );
- this.progress.object = progressBar;
- $(this.element).after(this.progress.element);
- };
-
- Drupal.Ajax.prototype.setProgressIndicatorThrobber = function() {
- this.progress.element = $(
- Drupal.theme('ajaxProgressThrobber', this.progress.message),
- );
- $(this.element).after(this.progress.element);
- };
-
- Drupal.Ajax.prototype.setProgressIndicatorFullscreen = function() {
- this.progress.element = $(Drupal.theme('ajaxProgressIndicatorFullscreen'));
- $('body').append(this.progress.element);
- };
-
- Drupal.Ajax.prototype.success = function(response, status) {
-
- if (this.progress.element) {
- $(this.progress.element).remove();
- }
- if (this.progress.object) {
- this.progress.object.stopMonitoring();
- }
- $(this.element).prop('disabled', false);
-
-
-
-
- const elementParents = $(this.element)
- .parents('[data-drupal-selector]')
- .addBack()
- .toArray();
-
-
- let focusChanged = false;
- Object.keys(response || {}).forEach(i => {
- if (response[i].command && this.commands[response[i].command]) {
- this.commands[response[i].command](this, response[i], status);
- if (
- response[i].command === 'invoke' &&
- response[i].method === 'focus'
- ) {
- focusChanged = true;
- }
- }
- });
-
-
-
- if (
- !focusChanged &&
- this.element &&
- !$(this.element).data('disable-refocus')
- ) {
- let target = false;
- for (let n = elementParents.length - 1; !target && n >= 0; n--) {
- target = document.querySelector(
- `[data-drupal-selector="${elementParents[n].getAttribute(
- 'data-drupal-selector',
- )}"]`,
- );
- }
- if (target) {
- $(target).trigger('focus');
- }
- }
-
-
-
-
- if (this.$form && document.body.contains(this.$form.get(0))) {
- const settings = this.settings || drupalSettings;
- Drupal.attachBehaviors(this.$form.get(0), settings);
- }
-
-
- this.settings = null;
- };
-
- Drupal.Ajax.prototype.getEffect = function(response) {
- const type = response.effect || this.effect;
- const speed = response.speed || this.speed;
- const effect = {};
- if (type === 'none') {
- effect.showEffect = 'show';
- effect.hideEffect = 'hide';
- effect.showSpeed = '';
- } else if (type === 'fade') {
- effect.showEffect = 'fadeIn';
- effect.hideEffect = 'fadeOut';
- effect.showSpeed = speed;
- } else {
- effect.showEffect = `${type}Toggle`;
- effect.hideEffect = `${type}Toggle`;
- effect.showSpeed = speed;
- }
- return effect;
- };
-
- Drupal.Ajax.prototype.error = function(xmlhttprequest, uri, customMessage) {
-
- if (this.progress.element) {
- $(this.progress.element).remove();
- }
- if (this.progress.object) {
- this.progress.object.stopMonitoring();
- }
-
- $(this.wrapper).show();
-
- $(this.element).prop('disabled', false);
-
-
- if (this.$form && document.body.contains(this.$form.get(0))) {
- const settings = this.settings || drupalSettings;
- Drupal.attachBehaviors(this.$form.get(0), settings);
- }
- throw new Drupal.AjaxError(xmlhttprequest, uri, customMessage);
- };
-
- Drupal.theme.ajaxWrapperNewContent = ($newContent, ajax, response) =>
- (response.effect || ajax.effect) !== 'none' &&
- $newContent.filter(
- i =>
- !(
-
-
- (
- $newContent[i].nodeName === '#comment' ||
- ($newContent[i].nodeName === '#text' &&
- /^(\s|\n|\r)*$/.test($newContent[i].textContent))
- )
- ),
- ).length > 1
- ? Drupal.theme('ajaxWrapperMultipleRootElements', $newContent)
- : $newContent;
-
- Drupal.theme.ajaxWrapperMultipleRootElements = $elements =>
- $('<div></div>').append($elements);
-
-
- Drupal.AjaxCommands = function() {};
- Drupal.AjaxCommands.prototype = {
-
- insert(ajax, response) {
-
-
- const $wrapper = response.selector
- ? $(response.selector)
- : $(ajax.wrapper);
- const method = response.method || ajax.method;
- const effect = ajax.getEffect(response);
-
- const settings = response.settings || ajax.settings || drupalSettings;
-
- let $newContent = $($.parseHTML(response.data, document, true));
-
-
-
-
- $newContent = Drupal.theme(
- 'ajaxWrapperNewContent',
- $newContent,
- ajax,
- response,
- );
-
- switch (method) {
- case 'html':
- case 'replaceWith':
- case 'replaceAll':
- case 'empty':
- case 'remove':
- Drupal.detachBehaviors($wrapper.get(0), settings);
- break;
- default:
- break;
- }
-
- $wrapper[method]($newContent);
-
- if (effect.showEffect !== 'show') {
- $newContent.hide();
- }
-
-
- const $ajaxNewContent = $newContent.find('.ajax-new-content');
- if ($ajaxNewContent.length) {
- $ajaxNewContent.hide();
- $newContent.show();
- $ajaxNewContent[effect.showEffect](effect.showSpeed);
- } else if (effect.showEffect !== 'show') {
- $newContent[effect.showEffect](effect.showSpeed);
- }
-
-
-
- if ($newContent.parents('html').length) {
-
- $newContent.each((index, element) => {
- if (element.nodeType === Node.ELEMENT_NODE) {
- Drupal.attachBehaviors(element, settings);
- }
- });
- }
- },
-
- remove(ajax, response, status) {
- const settings = response.settings || ajax.settings || drupalSettings;
- $(response.selector)
- .each(function() {
- Drupal.detachBehaviors(this, settings);
- })
- .remove();
- },
-
- changed(ajax, response, status) {
- const $element = $(response.selector);
- if (!$element.hasClass('ajax-changed')) {
- $element.addClass('ajax-changed');
- if (response.asterisk) {
- $element
- .find(response.asterisk)
- .append(
- ` <abbr class="ajax-changed" title="${Drupal.t(
- 'Changed',
- )}">*</abbr> `,
- );
- }
- }
- },
-
- alert(ajax, response, status) {
- window.alert(response.text, response.title);
- },
-
- announce(ajax, response) {
- if (response.priority) {
- Drupal.announce(response.text, response.priority);
- } else {
- Drupal.announce(response.text);
- }
- },
-
- redirect(ajax, response, status) {
- window.location = response.url;
- },
-
- css(ajax, response, status) {
- $(response.selector).css(response.argument);
- },
-
- settings(ajax, response, status) {
- const ajaxSettings = drupalSettings.ajax;
-
- if (ajaxSettings) {
- Drupal.ajax.expired().forEach(instance => {
-
-
-
-
- if (instance.selector) {
- const selector = instance.selector.replace('#', '');
- if (selector in ajaxSettings) {
- delete ajaxSettings[selector];
- }
- }
- });
- }
- if (response.merge) {
- $.extend(true, drupalSettings, response.settings);
- } else {
- ajax.settings = response.settings;
- }
- },
-
- data(ajax, response, status) {
- $(response.selector).data(response.name, response.value);
- },
-
- invoke(ajax, response, status) {
- const $element = $(response.selector);
- $element[response.method](...response.args);
- },
-
- restripe(ajax, response, status) {
-
-
-
- $(response.selector)
- .find('> tbody > tr:visible, > tr:visible')
- .removeClass('odd even')
- .filter(':even')
- .addClass('odd')
- .end()
- .filter(':odd')
- .addClass('even');
- },
-
- update_build_id(ajax, response, status) {
- $(`input[name="form_build_id"][value="${response.old}"]`).val(
- response.new,
- );
- },
-
- add_css(ajax, response, status) {
- $('head').prepend(response.data);
- },
-
- message(ajax, response) {
- const messages = new Drupal.Message(
- document.querySelector(response.messageWrapperQuerySelector),
- );
- if (response.clearPrevious) {
- messages.clear();
- }
- messages.add(response.message, response.messageOptions);
- },
- };
- })(jQuery, window, Drupal, drupalSettings);
|