Move snippet-chooser to client, and refactor to expose JS API

pull/6680/head
Matt Westcott 2021-01-06 12:26:05 +00:00 zatwierdzone przez Matt Westcott
rodzic a0cb7a9c81
commit 68ee88796e
3 zmienionych plików z 77 dodań i 26 usunięć

Wyświetl plik

@ -0,0 +1,74 @@
import $ from 'jquery';
function createSnippetChooser(id, modelString) {
const chooserElement = $('#' + id + '-chooser');
const docTitle = chooserElement.find('.title');
const input = $('#' + id);
const editLink = chooserElement.find('.edit-link');
const chooserBaseUrl = chooserElement.data('chooserUrl') + modelString + '/';
/*
Construct initial state of the chooser from the rendered (static) HTML and arguments passed to
createSnippetChooser. State is either null (= no document chosen) or a dict of id, string and
edit_link.
The result returned from the snippet chooser modal (see wagtail.snippets.views.chooser.chosen)
is a superset of this, and can therefore be passed directly to chooser.setState.
*/
let state = null;
if (input.val()) {
state = {
id: input.val(),
edit_link: editLink.attr('href'),
string: docTitle.text(),
};
}
/* define public API functions for the chooser */
const chooser = {
getState: () => state,
getValue: () => state && state.id,
setState: (newState) => {
if (newState) {
input.val(newState.id);
docTitle.text(newState.string);
chooserElement.removeClass('blank');
editLink.attr('href', newState.edit_link);
} else {
input.val('');
chooserElement.addClass('blank');
}
state = newState;
},
openChooserModal: () => {
// eslint-disable-next-line no-undef, new-cap
ModalWorkflow({
url: chooserBaseUrl,
// eslint-disable-next-line no-undef
onload: SNIPPET_CHOOSER_MODAL_ONLOAD_HANDLERS,
responses: {
snippetChosen: (result) => {
chooser.setState(result);
},
},
});
},
clear: () => {
chooser.setState(null);
},
};
$('.action-choose', chooserElement).on('click', () => {
chooser.openChooserModal();
});
$('.action-clear', chooserElement).on('click', () => {
chooser.clear();
});
return chooser;
}
window.createSnippetChooser = createSnippetChooser;

Wyświetl plik

@ -50,6 +50,9 @@ module.exports = function exports() {
documents: [
'document-chooser',
],
snippets: [
'snippet-chooser',
],
};
const entry = {};

Wyświetl plik

@ -1,26 +0,0 @@
function createSnippetChooser(id, modelString) {
var chooserElement = $('#' + id + '-chooser');
var docTitle = chooserElement.find('.title');
var input = $('#' + id);
var editLink = chooserElement.find('.edit-link');
$('.action-choose', chooserElement).on('click', function() {
ModalWorkflow({
url: chooserElement.data('chooserUrl') + modelString + '/',
onload: SNIPPET_CHOOSER_MODAL_ONLOAD_HANDLERS,
responses: {
snippetChosen: function(snippetData) {
input.val(snippetData.id);
docTitle.text(snippetData.string);
chooserElement.removeClass('blank');
editLink.attr('href', snippetData.edit_link);
}
}
});
});
$('.action-clear', chooserElement).on('click', function() {
input.val('');
chooserElement.addClass('blank');
});
}