forked from owid/owid-grapher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditorReferencesTab.tsx
302 lines (287 loc) · 10.2 KB
/
EditorReferencesTab.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
import React from "react"
import { observer } from "mobx-react"
import {
ChartEditor,
References,
getFullReferencesCount,
} from "./ChartEditor.js"
import { computed, action, observable, runInAction } from "mobx"
import { BAKED_GRAPHER_URL } from "../settings/clientSettings.js"
import { AdminAppContext, AdminAppContextType } from "./AdminAppContext.js"
import {
stringifyUnknownError,
formatValue,
ChartRedirect,
} from "@ourworldindata/utils"
import { AbstractChartEditor } from "./AbstractChartEditor.js"
const BASE_URL = BAKED_GRAPHER_URL.replace(/^https?:\/\//, "")
export const ReferencesSection = (props: {
references: References | undefined
}) => {
const wpPosts = props.references?.postsWordpress?.length ? (
<>
{" "}
<p>Public wordpress pages that embed or reference this chart:</p>
<ul className="list-group">
{props.references.postsWordpress.map((post) => (
<li key={post.id} className="list-group-item">
<a href={post.url} target="_blank" rel="noopener">
<strong>{post.title}</strong>
</a>{" "}
(
<a
href={`https://owid.cloud/wp/wp-admin/post.php?post=${post.id}&action=edit`}
target="_blank"
rel="noopener"
>
Edit
</a>
)
</li>
))}
</ul>
</>
) : (
<></>
)
const gdocsPosts = props.references?.postsGdocs?.length ? (
<>
<p>Public gdocs pages that embed or reference this chart:</p>
<ul className="list-group">
{props.references.postsGdocs.map((post) => (
<li key={post.id} className="list-group-item">
<a href={post.url} target="_blank" rel="noopener">
<strong>{post.title}</strong>
</a>{" "}
(
<a
href={`/admin/gdocs/${post.id}`}
target="_blank"
rel="noopener"
>
Edit
</a>
)
</li>
))}
</ul>
</>
) : (
<></>
)
const explorers = props.references?.explorers?.length ? (
<>
<p>Explorers that reference this chart:</p>
<ul className="list-group">
{props.references.explorers.map((explorer) => (
<li key={explorer} className="list-group-item">
<a
href={`https://ourworldindata.org/explorers/${explorer}`}
target="_blank"
rel="noopener"
>
<strong>{explorer}</strong>
</a>{" "}
(
<a
href={`/admin/explorers/${explorer}`}
target="_blank"
rel="noopener"
>
Edit
</a>
)
</li>
))}
</ul>
</>
) : (
<></>
)
return (
<>
<h5>References</h5>
{props.references &&
getFullReferencesCount(props.references) > 0 ? (
<>
{wpPosts}
{gdocsPosts}
{explorers}
</>
) : (
<p>No references found</p>
)}
</>
)
}
@observer
export class EditorReferencesTab extends React.Component<{
editor: ChartEditor
}> {
@computed get isPersisted() {
return this.props.editor.grapher.id
}
@computed get references() {
return this.props.editor.references
}
@computed get redirects() {
return this.props.editor.redirects || []
}
@computed get pageviews() {
return this.props.editor.pageviews
}
@action.bound appendRedirect(redirect: ChartRedirect) {
this.props.editor.manager.redirects.push(redirect)
}
renderPageview(views: number | undefined) {
return views !== undefined
? formatValue(views, { unit: "views" })
: "No data"
}
render() {
return (
<div>
<section>
<h5>Pageviews</h5>
<div>
<div>
<strong>Last 7 days:</strong>{" "}
{this.renderPageview(this.pageviews?.views_7d)}
</div>
<div>
<strong>Last 14 days:</strong>{" "}
{this.renderPageview(this.pageviews?.views_14d)}
</div>
<div>
<strong>Last 365 days:</strong>{" "}
{this.renderPageview(this.pageviews?.views_365d)}
</div>
</div>
<small className="form-text text-muted">
Pageview numbers are inaccurate when the chart has been
published or renamed recently. The numbers are updated
nightly.
</small>
</section>
<section>
<ReferencesSection references={this.references} />
</section>
<section>
<h5>Alternative URLs for this chart</h5>
{this.redirects.length ? (
<React.Fragment>
<p>The following URLs redirect to this chart:</p>
<ul className="list-group">
{this.redirects.map((redirect) => (
<li
key={redirect.id}
className="list-group-item"
>
<span className="redirect-prefix">
{BASE_URL}/
</span>
<a
href={`${BAKED_GRAPHER_URL}/${redirect.slug}`}
target="_blank"
rel="noopener"
>
<strong>{redirect.slug}</strong>
</a>
</li>
))}
</ul>
<hr />
</React.Fragment>
) : null}
{this.isPersisted && (
<AddRedirectForm
editor={this.props.editor}
onSuccess={this.appendRedirect}
/>
)}
</section>
</div>
)
}
}
@observer
class AddRedirectForm<
Editor extends AbstractChartEditor,
> extends React.Component<{
editor: Editor
onSuccess: (redirect: ChartRedirect) => void
}> {
static contextType = AdminAppContext
context!: AdminAppContextType
@observable slug?: string = ""
@observable isLoading: boolean = false
@observable errorMessage?: string
@action.bound onChange(slug: string) {
this.slug = slug
}
@action.bound async onSubmit() {
if (!this.isLoading) {
this.isLoading = true
try {
const chartId = this.props.editor.grapher.id
const result = await this.context.admin.requestJSON(
`/api/charts/${chartId}/redirects/new`,
{ slug: this.slug },
"POST",
{ onFailure: "continue" }
)
const redirect = result.redirect as ChartRedirect
runInAction(() => {
this.isLoading = false
this.slug = ""
this.errorMessage = undefined
})
this.props.onSuccess(redirect)
} catch (error) {
runInAction(() => {
this.isLoading = false
this.errorMessage = stringifyUnknownError(error)
})
}
}
}
render() {
return (
<form
onSubmit={(e) => {
e.preventDefault()
void this.onSubmit()
}}
>
<div className="input-group mb-3">
<div className="input-group-prepend">
<span className="input-group-text" id="basic-addon3">
{BASE_URL}/
</span>
</div>
<input
type="text"
className="form-control"
placeholder="URL"
value={this.slug}
onChange={(event) => this.onChange(event.target.value)}
/>
<div className="input-group-append">
<button
className="btn btn-primary"
type="submit"
disabled={!this.slug || this.isLoading}
>
Add
</button>
</div>
</div>
{this.errorMessage && (
<div className="alert alert-danger">
{this.errorMessage}
</div>
)}
</form>
)
}
}