-
Notifications
You must be signed in to change notification settings - Fork 49
/
Plugin.jsx
291 lines (256 loc) · 8.09 KB
/
Plugin.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
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
import React, { Component } from 'react';
import { Badge, Grid, GridItem, Split, SplitItem, Button } from '@patternfly/react-core';
import { StarIcon } from '@patternfly/react-icons';
import PropTypes from 'prop-types';
import Client, { Plugin } from '@fnndsc/chrisstoreapi';
import LoadingPlugin from './components/LoadingPlugin/LoadingPlugin';
import PluginBody from './components/PluginBody/PluginBody';
import RelativeDate from '../RelativeDate/RelativeDate';
import ChrisStore from '../../store/ChrisStore';
import PluginImg from '../../assets/img/brainy-pointer.png';
import NotFound from '../NotFound/NotFound';
import ErrorNotification from '../Notification';
import HttpApiCallError from '../../errors/HttpApiCallError';
import './Plugin.css';
/**
* View a plugin by plugin ID.
*/
export class PluginView extends Component {
constructor(props) {
super(props);
this.state = {
pluginData: undefined,
star: undefined,
loading: true,
errors: [],
};
const storeURL = process.env.REACT_APP_STORE_URL;
const auth = { token: props.store.get('authToken') };
this.client = new Client(storeURL, auth);
}
/**
* Fetch a plugin by ID, from URL params.
* Then fetch other plugins which have the same name as versions.
* Set stars if user is logged in.
*/
async componentDidMount() {
// eslint-disable-next-line react/destructuring-assignment
const { pluginId } = this.props.match.params;
try {
const plugin = await this.fetchPlugin(pluginId);
const versions = await this.fetchPluginVersions(plugin.data.name);
let star;
if (this.isLoggedIn())
star = await this.fetchIsPluginStarred(plugin.data);
this.setState({
loading: false,
pluginData: {
...plugin.data,
url: plugin.url,
versions
},
star,
});
} catch (error) {
this.setState((prev) => ({
loading: false,
errors: [...prev.errors, error]
}));
}
}
showNotifications = (error) => {
this.setState((prev) => ({
errors: [...prev.errors, error]
}));
}
// eslint-disable-next-line react/destructuring-assignment
isFavorite = () => this.state.star !== undefined;
// eslint-disable-next-line react/destructuring-assignment
isLoggedIn = () => this.props.store ? this.props.store.get('isLoggedIn') : false;
onStarClicked = () => {
if (this.isLoggedIn()) {
if (this.isFavorite())
this.unfavPlugin();
else
this.favPlugin();
}
else
this.showNotifications(new Error('Login required to favorite this plugin.'))
}
favPlugin = async () => {
const { pluginData } = this.state;
// Early state change for instant visual feedback
pluginData.stars += 1;
this.setState({ star: {}, pluginData });
try {
const star = await this.client.createPluginStar({ plugin_name: pluginData.name });
this.setState({ star: star.data });
} catch (error) {
this.showNotifications(new HttpApiCallError(error));
pluginData.stars -= 1;
this.setState({ star: undefined, pluginData });
}
}
unfavPlugin = async () => {
const { pluginData, star: previousStarState } = this.state;
// Early state change for instant visual feedback
pluginData.stars -= 1;
this.setState({ star: undefined, pluginData });
try {
await (
await this.client.getPluginStar(previousStarState.id)
).delete();
} catch (error) {
pluginData.stars += 1;
this.setState({ star: previousStarState, pluginData });
this.showNotifications(new HttpApiCallError(error));
}
}
renderStar = () => {
let name;
let className;
if (this.isLoggedIn()) {
className = this.isFavorite() ? 'plugin-star-favorite' : 'plugin-star';
name = this.isFavorite() ? 'star' : 'star-o';
} else {
className = 'plugin-star-disabled';
name = 'star-o';
}
return <StarIcon name={name} className={className} onClick={this.onStarClicked} />;
}
/**
* Fetch a plugin by ID
* @param {string} pluginId
* @returns {Promise} Plugin
*/
async fetchPlugin(pluginId) {
// eslint-disable-next-line react/destructuring-assignment
return this.client.getPlugin(parseInt(pluginId, 10));
}
/**
* Fetch all versions of a plugin by name.
* @param {string} name Plugin name
* @returns Promise => void
*/
async fetchPluginVersions(name) {
const versions = await this.client.getPlugins({ limit: 10e6, name_exact: name });
const firstplg = await this.client.getPlugin(parseInt(versions.data[0].id, 10));
return [
{ ...versions.data[0], url: firstplg.url },
...versions.data.slice(1)
]
}
async fetchIsPluginStarred({ name }) {
const response = await this.client.getPluginStars({ plugin_name: name });
if (response.data.length > 0)
return response.data[0];
return undefined;
}
render() {
const { loading, pluginData: plugin, errors } = this.state;
if (!loading && !plugin)
return <NotFound />
let container;
if (plugin) {
container = (
<article>
<section>
<Grid hasGutter>
<GridItem style={{ marginRight: '2em' }} lg={2} xs={12}>
<img
className="plugin-icon"
src={PluginImg}
alt="Plugin icon"
/>
</GridItem>
<GridItem lg={10} xs={12}>
<Grid>
<GridItem lg={10} xs={12}>
<h3 className="plugin-name">{plugin.name} <Badge>{plugin.category}</Badge></h3>
<h2 className="plugin-title">{plugin.title}</h2>
</GridItem>
<GridItem lg={2} xs={12} className="plugin-stats">
<Split>
<SplitItem isFilled />
<SplitItem>
{
!this.isFavorite() ?
<Button onClick={this.onStarClicked}>
Favorite <Badge isRead><StarIcon /> {plugin.stars}</Badge>
</Button>
:
<Button variant="secondary" onClick={this.onStarClicked}>
Unfavorite <Badge><StarIcon /> {plugin.stars}</Badge>
</Button>
}
</SplitItem>
</Split>
</GridItem>
<GridItem>
<p>{plugin.description}</p>
<p style={{ color: "gray" }}>
{
RelativeDate.isValid(plugin.modification_date) ?
`Updated ${new RelativeDate(plugin.modification_date).format()}`
:
`Created ${new RelativeDate(plugin.creation_date).format()}`
}
</p>
</GridItem>
</Grid>
</GridItem>
</Grid>
</section>
<section>
<PluginBody pluginData={plugin} />
</section>
</article>
);
} else {
container = (
<article>
<LoadingPlugin />
</article>
);
}
return (
<>
{
errors.map((message, index) => (
<ErrorNotification
key={`notif-${message}`}
title={message}
position='top-right'
variant='danger'
closeable
onClose={() => {
errors.splice(index)
this.setState({ errors })
}}
/>
))
}
<div className="plugin">
{container}
</div>
</>
);
}
}
Plugin.propTypes = {
store: PropTypes.objectOf(PropTypes.object),
match: PropTypes.shape({
params: PropTypes.shape({
plugin: PropTypes.string,
})
})
};
Plugin.defaultProps = {
store: new Map(),
match: {
params: {
plugin: undefined,
}
}
};
export default ChrisStore.withStore(PluginView);