forked from plone/volto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-setup-config.js
135 lines (131 loc) · 3.6 KB
/
test-setup-config.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
* This is the mocked config registry loader for tests.
* It uses some of the default (real) configuration,
* (mainly) DraftJS one, to not differ too much from reality
* Ideally, we should mock this ones as well at some point.
* Views, Widgets and Blocks are mocked already, to keep
* snapshot consistency and readability.
*/
import React from 'react';
import config from '@plone/volto/registry';
import { loadables } from '@plone/volto/config/Loadables';
import { nonContentRoutes } from '@plone/volto/config/NonContentRoutes';
import ToHTMLRenderers, {
options as ToHTMLOptions,
} from '@plone/volto/config/RichTextEditor/ToHTML';
import {
extendedBlockRenderMap,
blockStyleFn,
listBlockTypes,
} from '@plone/volto/config/RichTextEditor/Blocks';
import { contentIcons } from '@plone/volto/config/ContentIcons';
import FromHTMLCustomBlockFn from '@plone/volto/config/RichTextEditor/FromHTML';
import { controlPanelsIcons } from '@plone/volto/config/ControlPanels';
config.set('settings', {
apiPath: 'http://localhost:8080/Plone',
defaultLanguage: 'en',
supportedLanguages: ['en'],
defaultPageSize: 25,
isMultilingual: false,
nonContentRoutes,
extendedBlockRenderMap,
blockStyleFn,
listBlockTypes,
FromHTMLCustomBlockFn,
ToHTMLRenderers,
ToHTMLOptions,
contentIcons: contentIcons,
loadables,
lazyBundles: {
cms: [
'prettierStandalone',
'prettierParserHtml',
'prismCore',
'toastify',
'reactSelect',
// 'diffLib',
],
},
controlPanelsIcons,
apiExpanders: [],
});
config.set('blocks', {
blocksConfig: {
listing: {
templates: {
default: {
label: 'Default',
template: () => (
<div className="mocked-default-listing-template"></div>
),
},
imageGallery: {
label: 'Image gallery',
template: () => <div className="mocked-image-listing-template"></div>,
},
summary: {
label: 'Summary',
template: () => (
<div className="mocked-summary-listing-template"></div>
),
},
},
},
},
requiredBlocks: [],
groupBlocksOrder: [
{ id: 'mostUsed', title: 'Most used' },
{ id: 'text', title: 'Text' },
{ id: 'media', title: 'Media' },
{ id: 'common', title: 'Common' },
],
initialBlocks: {},
});
config.set('views', {
layoutViews: {},
contentTypesViews: {},
defaultView: {},
errorViews: {},
});
function BaseWidget(name) {
return (props) => (
<div id={`mocked-field-${props.id}`} className={`mocked-${name}-widget`}>
{props.title || 'No title'} - {props.description || 'No description'}
</div>
);
}
config.set('widgets', {
id: {
schema: BaseWidget('schema'),
subjects: BaseWidget('subjects'),
query: BaseWidget('query'),
recurrence: BaseWidget('recurrence'),
remoteUrl: BaseWidget('remoteurl'),
},
widget: {
richtext: BaseWidget('richtext'),
textarea: BaseWidget('textarea'),
datetime: BaseWidget('datetime'),
date: BaseWidget('date'),
password: BaseWidget('password'),
file: BaseWidget('file'),
align: BaseWidget('align'),
url: BaseWidget('url'),
email: BaseWidget('email'),
object_browser: BaseWidget('object_browser'),
},
vocabulary: {},
factory: {},
choices: BaseWidget('choices'),
type: {
boolean: BaseWidget('boolean'),
array: BaseWidget('array'),
object: BaseWidget('object'),
datetime: BaseWidget('datetime'),
date: BaseWidget('date'),
password: BaseWidget('password'),
number: BaseWidget('number'),
integer: BaseWidget('integer'),
},
default: BaseWidget('default'),
});