2016-06-17 15:48:33 +02:00
|
|
|
/**
|
|
|
|
* Test stubs to mirror available global variables.
|
|
|
|
* Those variables usually come from the back-end via templates.
|
|
|
|
* See /wagtailadmin/templates/wagtailadmin/admin_base.html.
|
|
|
|
*/
|
2018-02-09 23:07:29 +01:00
|
|
|
import 'element-closest';
|
2016-06-17 15:48:33 +02:00
|
|
|
|
2016-02-26 22:10:54 +01:00
|
|
|
global.wagtailConfig = {
|
2016-06-17 15:48:33 +02:00
|
|
|
ADMIN_API: {
|
|
|
|
DOCUMENTS: '/admin/api/v2beta/documents/',
|
|
|
|
IMAGES: '/admin/api/v2beta/images/',
|
|
|
|
PAGES: '/admin/api/v2beta/pages/',
|
2017-02-12 16:29:56 +01:00
|
|
|
EXTRA_CHILDREN_PARAMETERS: '',
|
2016-06-17 15:48:33 +02:00
|
|
|
},
|
|
|
|
ADMIN_URLS: {
|
|
|
|
PAGES: '/admin/pages/',
|
|
|
|
},
|
2017-02-09 16:52:07 +01:00
|
|
|
DATE_FORMATTING: {
|
|
|
|
DATE_FORMAT: 'MMM. D, YYYY',
|
|
|
|
SHORT_DATE_FORMAT: 'DD/MM/YYYY',
|
|
|
|
},
|
2016-06-17 15:48:33 +02:00
|
|
|
STRINGS: {
|
2017-02-12 16:29:56 +01:00
|
|
|
EDIT: 'Edit',
|
2018-01-17 15:39:47 +01:00
|
|
|
DELETE: 'Delete',
|
2017-02-12 16:29:56 +01:00
|
|
|
PAGE: 'Page',
|
|
|
|
PAGES: 'Pages',
|
2018-01-26 15:04:15 +01:00
|
|
|
LOADING: 'Loading…',
|
2016-06-17 15:48:33 +02:00
|
|
|
NO_RESULTS: 'No results',
|
2018-01-17 15:39:47 +01:00
|
|
|
SERVER_ERROR: 'Server Error',
|
2017-02-12 16:29:56 +01:00
|
|
|
SEE_CHILDREN: 'See children',
|
|
|
|
SEE_ALL: 'See all',
|
|
|
|
CLOSE_EXPLORER: 'Close explorer',
|
2018-01-17 15:39:47 +01:00
|
|
|
ALT_TEXT: 'Alt text',
|
|
|
|
WRITE_HERE: 'Write here…',
|
2018-01-18 17:31:15 +01:00
|
|
|
HORIZONTAL_LINE: 'Horizontal line',
|
|
|
|
LINE_BREAK: 'Line break',
|
|
|
|
UNDO: 'Undo',
|
|
|
|
REDO: 'Redo',
|
2018-02-27 16:34:22 +01:00
|
|
|
RELOAD_PAGE: 'Reload the page',
|
2018-04-02 16:50:02 +02:00
|
|
|
RELOAD_EDITOR: 'Reload saved content',
|
2018-02-27 16:34:22 +01:00
|
|
|
SHOW_LATEST_CONTENT: 'Show latest content',
|
2018-04-02 18:03:06 +02:00
|
|
|
SHOW_ERROR: 'Show error',
|
2018-02-27 16:34:22 +01:00
|
|
|
EDITOR_CRASH: 'The editor just crashed. Content has been reset to the last saved version.',
|
2016-02-26 22:10:54 +01:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
global.wagtailVersion = '1.6a1';
|
2018-02-02 23:11:21 +01:00
|
|
|
|
2018-04-17 23:27:07 +02:00
|
|
|
global.wagtail = {};
|
|
|
|
|
2018-02-02 23:11:21 +01:00
|
|
|
global.chooserUrls = {
|
|
|
|
documentChooser: '/admin/documents/chooser/',
|
|
|
|
emailLinkChooser: '/admin/choose-email-link/',
|
|
|
|
embedsChooser: '/admin/embeds/chooser/',
|
|
|
|
externalLinkChooser: '/admin/choose-external-link/',
|
|
|
|
imageChooser: '/admin/images/chooser/',
|
|
|
|
pageChooser: '/admin/choose-page/',
|
|
|
|
snippetChooser: '/admin/snippets/choose/',
|
|
|
|
};
|
|
|
|
|
2018-06-01 23:40:23 +02:00
|
|
|
/* use dummy content for onload handlers just so that we can verify that we've chosen the right one */
|
|
|
|
global.IMAGE_CHOOSER_MODAL_ONLOAD_HANDLERS = { type: 'image' };
|
|
|
|
global.PAGE_CHOOSER_MODAL_ONLOAD_HANDLERS = { type: 'page' };
|
2018-06-01 16:39:36 +02:00
|
|
|
|
2018-02-02 23:11:21 +01:00
|
|
|
const jQueryObj = {
|
|
|
|
on: jest.fn(),
|
|
|
|
off: jest.fn(),
|
|
|
|
};
|
|
|
|
|
|
|
|
global.jQuery = () => jQueryObj;
|