forked from owid/owid-grapher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GdocsSaveButtons.tsx
127 lines (123 loc) · 4.11 KB
/
GdocsSaveButtons.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
import { Badge, Button, Modal, Space } from "antd"
import React from "react"
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome/index.js"
import {
faExclamationTriangle,
faBolt,
} from "@fortawesome/free-solid-svg-icons"
import { GdocsDiff } from "./GdocsDiff.js"
import { OwidGdocErrorMessage, OwidGdoc } from "@ourworldindata/utils"
export const GdocsSaveButtons = ({
published,
originalGdoc,
currentGdoc,
errors,
hasErrors,
hasWarnings,
hasChanges,
isLightningUpdate,
doPublish,
saveDraft,
}: {
published: boolean
originalGdoc: OwidGdoc | undefined
currentGdoc: OwidGdoc
errors: OwidGdocErrorMessage[] | undefined
hasErrors: boolean
hasWarnings: boolean
hasChanges: boolean
isLightningUpdate: boolean
setDiffOpen: (open: boolean) => void
doPublish: VoidFunction
saveDraft: VoidFunction
}) => {
const confirmPublish = async () => {
const styleDiff = hasChanges
? { style: { "overflow-y": "auto", maxHeight: "50vh" } }
: {}
const widthModal = hasChanges ? { width: "80vw" } : {}
const centeredModal = hasChanges ? { centered: true } : {}
Modal.confirm({
title: `Are you sure you want to publish ${
hasChanges ? "these changes" : "this article"
}?`,
content: (
<>
{published && (
<div {...styleDiff}>
<GdocsDiff
originalGdoc={originalGdoc}
currentGdoc={currentGdoc}
/>
</div>
)}
{hasWarnings && (
<div className="mt-3">
{errors?.map((error, i) => (
<div key={i}>
<FontAwesomeIcon
icon={faExclamationTriangle}
color="#faad14"
/>{" "}
{error.message}
</div>
))}
</div>
)}
</>
),
okType: hasWarnings ? "danger" : "primary",
okText: "Publish now",
cancelText: "Cancel",
onOk: doPublish,
maskClosable: true,
...centeredModal,
...widthModal,
})
}
const badgeProps =
hasWarnings && !hasErrors
? {
count: (
<FontAwesomeIcon
icon={faExclamationTriangle}
className="warning"
/>
),
}
: {}
return (
<>
<Space>
{!published && (
<Button disabled={!hasChanges} onClick={saveDraft}>
Save draft
</Button>
)}
<Badge {...badgeProps}>
{/* #gdocsvalidationclient: prevent saving published articles with errors */}
<Button
disabled={hasErrors || (published && !hasChanges)}
type="primary"
onClick={confirmPublish}
title={
hasErrors
? "This document has errors and can't be published until they're fixed"
: undefined
}
>
{!published ? (
"Publish"
) : isLightningUpdate ? (
<>
<FontAwesomeIcon icon={faBolt} /> Republish
</>
) : (
"Republish"
)}
</Button>
</Badge>
</Space>
</>
)
}