-
-
Notifications
You must be signed in to change notification settings - Fork 228
/
SaveButtons.tsx
232 lines (207 loc) · 7.1 KB
/
SaveButtons.tsx
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
import React from "react"
import { ChartEditor, isChartEditorInstance } from "./ChartEditor.js"
import { action, computed } from "mobx"
import { observer } from "mobx-react"
import { isEmpty, omit } from "@ourworldindata/utils"
import {
IndicatorChartEditor,
isIndicatorChartEditorInstance,
} from "./IndicatorChartEditor.js"
import {
ErrorMessages,
ErrorMessagesForDimensions,
} from "./ChartEditorTypes.js"
import { AbstractChartEditor } from "./AbstractChartEditor.js"
import {
ChartViewEditor,
chartViewsFeatureEnabled,
isChartViewEditorInstance,
} from "./ChartViewEditor.js"
@observer
export class SaveButtons<
Editor extends AbstractChartEditor,
> extends React.Component<{
editor: Editor
errorMessages: ErrorMessages
errorMessagesForDimensions: ErrorMessagesForDimensions
}> {
render() {
const { editor } = this.props
const passthroughProps = omit(this.props, "editor")
if (isChartEditorInstance(editor))
return <SaveButtonsForChart editor={editor} {...passthroughProps} />
else if (isIndicatorChartEditorInstance(editor))
return (
<SaveButtonsForIndicatorChart
editor={editor}
{...passthroughProps}
/>
)
else if (isChartViewEditorInstance(editor))
return (
<SaveButtonsForChartView
editor={editor}
{...passthroughProps}
/>
)
else return null
}
}
@observer
class SaveButtonsForChart extends React.Component<{
editor: ChartEditor
errorMessages: ErrorMessages
errorMessagesForDimensions: ErrorMessagesForDimensions
}> {
@action.bound onSaveChart() {
void this.props.editor.saveGrapher()
}
@action.bound onSaveAsNew() {
void this.props.editor.saveAsNewGrapher()
}
@action.bound onSaveAsNarrativeView() {
void this.props.editor.saveAsNarrativeView()
}
@action.bound onPublishToggle() {
if (this.props.editor.grapher.isPublished)
this.props.editor.unpublishGrapher()
else this.props.editor.publishGrapher()
}
@computed get hasEditingErrors(): boolean {
const { errorMessages, errorMessagesForDimensions } = this.props
if (!isEmpty(errorMessages)) return true
const allErrorMessagesForDimensions = Object.values(
errorMessagesForDimensions
).flat()
return allErrorMessagesForDimensions.some((error) => error)
}
render() {
const { hasEditingErrors } = this
const { editor } = this.props
const { grapher } = editor
const isSavingDisabled = grapher.hasFatalErrors || hasEditingErrors
return (
<div className="SaveButtons">
<div>
<button
className="btn btn-success"
onClick={this.onSaveChart}
disabled={isSavingDisabled}
>
{grapher.isPublished
? "Update chart"
: grapher.id
? "Save draft"
: "Create draft"}
</button>{" "}
<button
className="btn btn-secondary"
onClick={this.onSaveAsNew}
disabled={isSavingDisabled}
>
Save as new
</button>{" "}
<button
className="btn btn-danger"
onClick={this.onPublishToggle}
disabled={isSavingDisabled}
>
{grapher.isPublished ? "Unpublish" : "Publish"}
</button>
</div>
{chartViewsFeatureEnabled && (
<div className="mt-2">
<button
className="btn btn-primary"
onClick={this.onSaveAsNarrativeView}
>
Save as narrative view
</button>
</div>
)}
</div>
)
}
}
@observer
class SaveButtonsForIndicatorChart extends React.Component<{
editor: IndicatorChartEditor
errorMessages: ErrorMessages
errorMessagesForDimensions: ErrorMessagesForDimensions
}> {
@action.bound onSaveChart() {
void this.props.editor.saveGrapher()
}
@computed get hasEditingErrors(): boolean {
const { errorMessages, errorMessagesForDimensions } = this.props
if (!isEmpty(errorMessages)) return true
const allErrorMessagesForDimensions = Object.values(
errorMessagesForDimensions
).flat()
return allErrorMessagesForDimensions.some((error) => error)
}
render() {
const { hasEditingErrors } = this
const { editor } = this.props
const { grapher } = editor
const isTrivial = editor.isNewGrapher && !editor.isModified
const isSavingDisabled =
grapher.hasFatalErrors || hasEditingErrors || isTrivial
return (
<div className="SaveButtons">
<button
className="btn btn-success"
onClick={this.onSaveChart}
disabled={isSavingDisabled}
>
{editor.isNewGrapher
? "Create indicator chart"
: "Update indicator chart"}
</button>
</div>
)
}
}
@observer
class SaveButtonsForChartView extends React.Component<{
editor: ChartViewEditor
errorMessages: ErrorMessages
errorMessagesForDimensions: ErrorMessagesForDimensions
}> {
@action.bound onSaveChart() {
void this.props.editor.saveGrapher()
}
@computed get hasEditingErrors(): boolean {
const { errorMessages, errorMessagesForDimensions } = this.props
if (!isEmpty(errorMessages)) return true
const allErrorMessagesForDimensions = Object.values(
errorMessagesForDimensions
).flat()
return allErrorMessagesForDimensions.some((error) => error)
}
render() {
const { hasEditingErrors } = this
const { editor } = this.props
const { grapher } = editor
const isSavingDisabled = grapher.hasFatalErrors || hasEditingErrors
return (
<div className="SaveButtons">
<button
className="btn btn-success"
onClick={this.onSaveChart}
disabled={isSavingDisabled}
>
Save chart view
</button>{" "}
<a
className="btn btn-secondary"
href={`/admin/charts/${editor.parentChartId}/edit`}
target="_blank"
rel="noopener"
>
Go to parent chart
</a>
</div>
)
}
}