-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsx
234 lines (226 loc) · 12.2 KB
/
index.jsx
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
import React, { useState } from 'react'
import { Grid, Cell, Card, NavigationDrawer, DialogContainer } from 'react-md'
import { Form } from '../../modules/shared-components'
import DataQuery from '../../modules/data-query'
import DataMutation from '../../modules/data-mutation'
import { fieldDefinitions } from './variable-definitions'
import {
EditorSaveButton,
EditorLayout,
EntityEditor,
RelationEditor,
EditorHeader,
EditorContentWrapperInner,
} from '../../modules/editor-page'
import { VARIABLE, DATAPRODUCTS_MIN, PROTOCOLS_MIN, RFORCINGS_MIN } from '../../graphql/queries'
import { UPDATE_VARIABLES } from '../../graphql/mutations'
const cardStyle = { boxShadow: 'none' }
export default ({ id, ...props }) => {
const [dialogVisible, setDialogVisible] = useState(false)
return (
<DataQuery query={VARIABLE} variables={{ id: parseInt(id) }}>
{({ variable }) => {
return (
<DataQuery query={DATAPRODUCTS_MIN}>
{/*dataproducts is a simple list of EVERY dataproduct*/}
{({ dataproducts }) => (
<DataQuery query={PROTOCOLS_MIN}>
{/*protocols is a simple list of EVERY protocol*/}
{({ protocols }) => (
<DataQuery query={RFORCINGS_MIN}>
{({ radiativeForcings }) => (
<div
onClick={() => {
if (dialogVisible) setDialogVisible(false)
}}
>
<DialogContainer
id="dialogContainer"
title=""
visible={dialogVisible}
modal
actions={[
{
onClick: () => {
setDialogVisible(false)
},
primary: true,
children: 'Okay',
},
]}
contentStyle={{ overflow: 'hidden' }}
>
<p>
Please note that since this is a prototype, any changes made will be
reset the next day
</p>
</DialogContainer>
<Form
{...variable}
addDirectlyRelatedProtocols={[
...variable.directly_related_protocols.map(({ id }) => id),
]}
addIndirectlyRelatedProtocols={[
...variable.indirectly_related_protocols.map(({ id }) => id),
]}
addDataproducts={[...variable.dataproducts.map(({ id }) => id)]}
addRForcings={[...variable.rforcings.map(({ id }) => id)]}
removeProtocols={[]}
removeDataproducts={[]}
removeRForcings={[]}
>
{({
updateForm,
addDirectlyRelatedProtocols,
addIndirectlyRelatedProtocols,
addDataproducts,
addRForcings,
removeProtocols,
removeDataproducts,
removeRForcings,
...fields
}) => (
<DataMutation mutation={UPDATE_VARIABLES}>
{/* eslint-disable-next-line no-unused-vars */}
{({ executeMutation, mutationLoading, mutationError }) => (
<EditorLayout>
{/* Menu bar */}
<Grid noSpacing>
<Cell size={12}>
<EditorHeader
loading={mutationLoading}
{...props}
actions={[
<EditorSaveButton
key={0}
saveEntity={() => {
setDialogVisible(true)
executeMutation({
variables: {
input: [
{
id: fields.id,
addDirectlyRelatedProtocols,
addIndirectlyRelatedProtocols,
addDataproducts,
addRForcings,
removeProtocols,
removeDataproducts,
removeRForcings,
...Object.fromEntries(
Object.entries(fields).filter(([key]) =>
fieldDefinitions[key]
? !fieldDefinitions[key].pristine
: false
)
),
},
],
},
})
}}
/>,
]}
/>
</Cell>
</Grid>
{/* Page content */}
<Grid noSpacing>
<Cell size={12}>
<Card style={cardStyle}>
<Grid
noSpacing={
NavigationDrawer.getCurrentMedia().mobile ? true : false
}
className="sf-editor-wrapper"
>
{/* Attribute editor */}
<Cell phoneSize={4} tabletSize={8} size={6}>
<EditorContentWrapperInner>
<EntityEditor
fieldDefinitions={fieldDefinitions}
updateForm={updateForm}
{...fields}
/>
</EditorContentWrapperInner>
</Cell>
{/* Relationship editor */}
<Cell phoneSize={4} tabletSize={8} size={6}>
<EditorContentWrapperInner>
{/* DIRECTLY RELATED PROTOCOLS */}
<RelationEditor
label="Directly Related Protocols"
items={protocols.map(({ id, title: value }) => ({
id,
value,
}))}
selectedItems={addDirectlyRelatedProtocols}
updateForm={updateForm}
removeArray={removeProtocols}
addFieldName={'addDirectlyRelatedProtocols'}
removeFieldName={'removeProtocols'}
/>
{/* INDIRECTLY RELATED PROTOCOLS */}
<RelationEditor
label="Indirectly Related Protocols"
items={protocols.map(({ id, title: value }) => ({
id,
value,
}))}
selectedItems={addIndirectlyRelatedProtocols}
updateForm={updateForm}
removeArray={removeProtocols}
addFieldName={'addIndirectlyRelatedProtocols'}
removeFieldName={'removeProtocols'}
/>
{/* RELATED DATAPRODUCTS */}
<RelationEditor
label="Dataproducts"
items={dataproducts.map(({ id, title: value }) => ({
id,
value,
}))}
selectedItems={addDataproducts}
updateForm={updateForm}
removeArray={removeDataproducts}
addFieldName={'addDataproducts'}
removeFieldName={'removeDataproducts'}
/>
{/* RELATED RADIATIVE FORCINGS */}
<RelationEditor
label="Radiative Forcings"
items={radiativeForcings.map(
({ id, compound: value }) => ({
id,
value,
})
)}
selectedItems={addRForcings}
updateForm={updateForm}
removeArray={removeRForcings}
addFieldName={'addRForcings'}
removeFieldName={'removeRForcings'}
/>
</EditorContentWrapperInner>
</Cell>
</Grid>
</Card>
</Cell>
</Grid>
</EditorLayout>
)}
</DataMutation>
)}
</Form>
</div>
)}
</DataQuery>
)}
</DataQuery>
)}
</DataQuery>
)
}}
</DataQuery>
)
}