-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
main.js
112 lines (98 loc) · 2.81 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import { mount } from 'svelte';
import App from './app.svelte';
const knownFuncNames = [
'registerCustomFormat',
'registerEditorComponent',
'registerEventListener',
'registerLocale',
'registerPreviewStyle',
'registerPreviewTemplate',
'registerWidget',
];
const unsupportedFuncNames = [
'getBackend',
'getCustomFormats',
'getCustomFormatsExtensions',
'getCustomFormatsFormatters',
'getEditorComponents',
'getEventListeners',
'getLocale',
'getMediaLibrary',
'getPreviewStyles',
'getPreviewTemplate',
'getRemarkPlugins',
'getWidget',
'getWidgetValueSerializer',
'getWidgets',
'invokeEvent',
'moment',
'registerBackend',
'registerMediaLibrary',
'registerRemarkPlugin',
'registerWidgetValueSerializer',
'removeEventListener',
'resolveWidget',
];
const compatibilityURL = 'https://github.com/sveltia/sveltia-cms#compatibility';
/**
* Initialize the CMS, optionally with the given configuration.
* @param {object} [options] - Options.
* @param {object} [options.config] - Configuration to be merged with the default configuration.
* @see https://decapcms.org/docs/manual-initialization/
* @see https://decapcms.org/docs/custom-mounting/
*/
const init = ({ config = {} } = {}) => {
mount(App, {
target: document.querySelector('#nc-root') ?? document.body,
props: { config },
});
};
const CMS = new Proxy(
{
init,
},
{
/**
* Define the getter.
* @param {Record<string, Function>} obj - Object itself.
* @param {string} key - Property name.
* @returns {any} Property value.
*/
get: (obj, key) => {
if (key in obj) {
return obj[key];
}
let message = '';
if (knownFuncNames.includes(key)) {
message = 'CMS.%s() is not yet supported in Sveltia CMS, but we plan to implement it soon.';
}
if (unsupportedFuncNames.includes(key)) {
message =
'CMS.%s() is not supported in Sveltia CMS, and we don’t have any plans to implement it.';
}
if (message) {
// eslint-disable-next-line no-console
console.error(`${message} See %s for compatibility information.`, key, compatibilityURL);
// eslint-disable-next-line jsdoc/require-description
/** @returns {void} */
return () => undefined;
}
return undefined;
},
},
);
export default CMS;
export { init };
window.CMS = CMS;
window.initCMS = init;
// Automatically initialize the CMS if manual initialization is not requested AND the script is NOT
// a module; We can’t just use `document.currentScript` for module detection because the earlier
// versions of Sveltia CMS were built and shipped as modules
if (
!window.CMS_MANUAL_INIT &&
(!!document.currentScript ||
!!document.querySelector('script[src$="/sveltia-cms.js"]') ||
import.meta.env.DEV)
) {
init();
}