forked from owid/owid-grapher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EditorReferencesTab.tsx
187 lines (176 loc) · 7 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
import * as React from "react"
import { observer } from "mobx-react"
import { ChartEditor, ChartRedirect } from "./ChartEditor"
import { computed, action, observable, runInAction } from "mobx"
import { BAKED_GRAPHER_URL } from "../settings/clientSettings"
import { AdminAppContext, AdminAppContextType } from "./AdminAppContext"
import { stringifyUnkownError } from "../clientUtils/Util"
const BASE_URL = BAKED_GRAPHER_URL.replace(/^https?:\/\//, "")
@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 || []
}
@action.bound appendRedirect(redirect: ChartRedirect) {
this.props.editor.manager.redirects.push(redirect)
}
render() {
return (
<div>
<section>
<h5>References</h5>
{this.references.length ? (
<React.Fragment>
<p>
Public pages that embed or reference this chart:
</p>
<ul className="list-group">
{this.references.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>
</React.Fragment>
) : (
<p>No public posts reference this chart</p>
)}
</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 extends React.Component<{
editor: ChartEditor
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 = stringifyUnkownError(error)
})
}
}
}
render() {
return (
<form onSubmit={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>
)
}
}