-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy patheditor-interface.ts
219 lines (205 loc) · 5.4 KB
/
editor-interface.ts
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
import copy from 'fast-copy'
import { freezeSys, toPlainObject } from 'contentful-sdk-core'
import enhanceWithMethods from '../enhance-with-methods'
import { MetaSysProps, MetaLinkProps, DefaultElements, MakeRequest } from '../common-types'
import { wrapCollection } from '../common-utils'
import { DefinedParameters } from './widget-parameters'
interface WidgetConfig {
/**
* Type of the widget used
*/
widgetNamespace?: string
/**
* ID of the widget used
*/
widgetId?: string
/**
* Instance parameter values
*/
settings?: DefinedParameters
}
export interface Control extends WidgetConfig {
/**
* ID of the customized field
*/
fieldId: string
}
export interface GroupControl extends WidgetConfig {
/**
* ID of the customized field group
*/
groupId: string
}
export interface FieldGroupItem {
groupId: string
name: string
items: EditorLayoutItem[]
}
export interface FieldItem {
fieldId: string
}
export type EditorLayoutItem = FieldItem | FieldGroupItem
export interface Editor {
/**
* Type of the widget used
*/
widgetNamespace: string
/**
* ID of the widget used
*/
widgetId: string
/**
* Widget will be enabled if disabled property is missing
*/
disabled?: boolean
/**
* Instance parameter values
*/
settings?: DefinedParameters
}
export interface SidebarItem {
/**
* Type of the widget used
*/
widgetNamespace: string
/**
* ID of the widget used
*/
widgetId: string
/**
* Widget will be enabled if disabled property is missing
*/
disabled?: boolean
/**
* Instance parameter values
*/
settings?: DefinedParameters
}
export type EditorInterfaceProps = {
sys: MetaSysProps & {
space: { sys: MetaLinkProps }
environment: { sys: MetaLinkProps }
contentType: { sys: MetaLinkProps }
}
/**
* Array of fields and their associated widgetId
*/
controls?: Control[]
/**
* Array of field groups and their associated widgetId
*/
groupControls?: GroupControl[]
/**
* Array of editors. Defaults will be used if property is missing.
*/
editors?: Editor[]
/**
* Legacy singular editor override
*/
editor?: Editor
/**
* Array of editor layout field groups
*/
editorLayout?: FieldGroupItem[]
/**
* Array of sidebar widgets. Defaults will be used if property is missing.
*/
sidebar?: SidebarItem[]
}
export interface EditorInterface
extends EditorInterfaceProps,
DefaultElements<EditorInterfaceProps> {
/**
* Gets a control for a specific field
* @return control object for specific field
* ```javascript
* const contentful = require('contentful-management')
*
* const client = contentful.createClient({
* accessToken: '<content_management_api_key>'
* })
*
* client.getSpace('<space_id>')
* .then((space) => space.getEnvironment('<environment_id>'))
* .then((environment) => environment.getContentType('<contentType_id>'))
* .then((contentType) => contentType.getEditorInterface())
* .then((editorInterface) => {
* control = editorInterface.getControlForField('<field-id>')
* console.log(control)
* })
* .catch(console.error)
* ```
*/
getControlForField(id: string): null | Control
/**
* Sends an update to the server with any changes made to the object's properties
* @return Object returned from the server with updated changes.
* ```javascript
* const contentful = require('contentful-management')
*
* const client = contentful.createClient({
* accessToken: '<content_management_api_key>'
* })
*
* client.getSpace('<space_id>')
* .then((space) => space.getEnvironment('<environment_id>'))
* .then((environment) => environment.getContentType('<contentType_id>'))
* .then((contentType) => contentType.getEditorInterface())
* .then((editorInterface) => {
* editorInterface.controls[0] = { "fieldId": "title", "widgetId": "singleLine"}
* editorInterface.editors = [
* { "widgetId": "custom-widget", "widgetNamespace": "app" }
* ]
* return editorInterface.update()
* })
* .catch(console.error)
* ```
*/
update(): Promise<EditorInterface>
}
/**
* @private
*/
function createEditorInterfaceApi(makeRequest: MakeRequest) {
return {
update: function () {
const self = this as EditorInterface
const raw = self.toPlainObject()
return makeRequest({
entityType: 'EditorInterface',
action: 'update',
params: {
spaceId: self.sys.space.sys.id,
environmentId: self.sys.environment.sys.id,
contentTypeId: self.sys.contentType.sys.id,
},
payload: raw,
}).then((response) => wrapEditorInterface(makeRequest, response))
},
getControlForField: function (fieldId: string) {
const self = this as EditorInterface
const result = (self.controls || []).filter((control) => {
return control.fieldId === fieldId
})
return result && result.length > 0 ? result[0] : null
},
}
}
/**
* @private
*/
export function wrapEditorInterface(
makeRequest: MakeRequest,
data: EditorInterfaceProps
): EditorInterface {
const editorInterface = toPlainObject(copy(data))
const editorInterfaceWithMethods = enhanceWithMethods(
editorInterface,
createEditorInterfaceApi(makeRequest)
)
return freezeSys(editorInterfaceWithMethods)
}
/**
* @private
*/
export const wrapEditorInterfaceCollection = wrapCollection(wrapEditorInterface)