-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock.js
256 lines (246 loc) · 7.96 KB
/
block.js
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
(function (wp) {
const { registerBlockType } = wp.blocks;
const { createElement: el, Fragment, useState, useEffect } = wp.element;
const { InspectorControls } = wp.blockEditor;
const { PanelBody, TextControl, Notice, Spinner, ToggleControl } = wp.components;
// Register the GitHub Repo Card Block
registerBlockType('ghrc/github-repo-card', {
title: 'GitHub Repo Card Block',
icon: 'media-code',
category: 'embed',
attributes: {
repoUrl: {
type: 'string',
default: ''
},
repoName: {
type: 'string',
default: ''
},
ownerName: {
type: 'string',
default: ''
},
ownerAvatar: {
type: 'string',
default: ''
},
description: {
type: 'string',
default: ''
},
stars: {
type: 'number',
default: 0
},
watchers: {
type: 'number',
default: 0
},
forks: {
type: 'number',
default: 0
},
issues: {
type: 'number',
default: 0
},
contributors: {
type: 'number',
default: 0
},
showContributors: {
type: 'boolean',
default: true
},
showStars: {
type: 'boolean',
default: true
},
showWatchers: {
type: 'boolean',
default: true
},
showForks: {
type: 'boolean',
default: true
},
showIssues: {
type: 'boolean',
default: true
},
errorMessage: {
type: 'string',
default: ''
}
},
edit({ attributes, setAttributes }) {
// State to manage the loading spinner
const [loading, setLoading] = useState(false);
// Function to validate the repository URL and fetch data from GitHub API
const validateRepo = async (repoUrl) => {
setLoading(true);
// Remove trailing slash from the repo url if it exists
const normalizedRepoUrl = repoUrl.endsWith('/') ? repoUrl.slice(0, -1) : repoUrl;
const regex = /^https:\/\/github\.com\/[A-Za-z0-9_.-]+\/[A-Za-z0-9_.-]+$/;
if (!regex.test(normalizedRepoUrl)) {
// If the URL is not valid, set an error message and reset attributes
setAttributes({ errorMessage: 'Please enter a valid GitHub repository URL.' });
setAttributes({
repoName: '',
ownerName: '',
ownerAvatar: '',
description: '',
stars: 0,
watchers: 0,
forks: 0,
issues: 0,
contributors: 0
});
setLoading(false);
return;
}
const urlParts = normalizedRepoUrl.split('/');
const owner = urlParts[urlParts.length - 2];
const repo = urlParts[urlParts.length - 1];
try {
// Fetch repository data from GitHub API
const response = await fetch(`https://api.github.com/repos/${owner}/${repo}`);
if (response.ok) {
const data = await response.json();
// Fetch contributors data
const contributorsResponse = await fetch(`https://api.github.com/repos/${owner}/${repo}/contributors`);
let contributorsCount = 0;
if (contributorsResponse.ok) {
const contributorsData = await contributorsResponse.json();
contributorsCount = contributorsData.length;
}
// Update the block attributes with the fetched data
setAttributes({
repoName: data.name,
ownerName: data.owner.login,
ownerAvatar: data.owner.avatar_url,
description: data.description,
stars: data.stargazers_count,
watchers: data.watchers_count,
forks: data.forks_count,
issues: data.open_issues_count,
contributors: contributorsCount,
errorMessage: ''
});
} else {
// If the repository is not found, set an error message
setAttributes({ errorMessage: 'Repository not found.', repoName: '', ownerName: '', ownerAvatar: '', description: '', stars: 0, watchers: 0, forks: 0, issues: 0, contributors: 0 });
}
} catch (error) {
// Handle any errors that occur during the fetch process
setAttributes({ errorMessage: 'Error fetching repository data.', repoName: '', ownerName: '', ownerAvatar: '', description: '', stars: 0, watchers: 0, forks: 0, issues: 0, contributors: 0 });
}
setLoading(false); // Stop the loading spinner
};
// Fetch data when the repoUrl attribute changes
useEffect(() => {
if (attributes.repoUrl) {
validateRepo(attributes.repoUrl);
}
}, [attributes.repoUrl]);
// Render the block in the editor
return el(
Fragment,
null,
el(
InspectorControls,
null,
el(
PanelBody,
{ title: 'GitHub Repository URL' },
el(TextControl, {
label: 'Repository URL',
value: attributes.repoUrl,
onChange: (repoUrl) => setAttributes({ repoUrl }),
placeholder: 'Enter GitHub repo URL',
disabled: loading // Disable input while loading
}),
attributes.errorMessage && el(Notice, {
status: 'error',
isDismissible: false,
}, attributes.errorMessage)
),
el(
PanelBody,
{ title: 'Display Options', initialOpen: false },
el(ToggleControl, {
label: 'Show Contributors',
checked: attributes.showContributors,
onChange: (value) => setAttributes({ showContributors: value })
}),
el(ToggleControl, {
label: 'Show Stars',
checked: attributes.showStars,
onChange: (value) => setAttributes({ showStars: value })
}),
el(ToggleControl, {
label: 'Show Watchers',
checked: attributes.showWatchers,
onChange: (value) => setAttributes({ showWatchers: value })
}),
el(ToggleControl, {
label: 'Show Forks',
checked: attributes.showForks,
onChange: (value) => setAttributes({ showForks: value })
}),
el(ToggleControl, {
label: 'Show Issues',
checked: attributes.showIssues,
onChange: (value) => setAttributes({ showIssues: value })
})
)
),
el(
'div',
{ className: 'github-repo-card' },
loading ? el(Spinner, null) :
attributes.repoName ? el(Fragment, null,
el('div', { className: 'repo-card-header' },
el('img', { src: attributes.ownerAvatar, alt: `${attributes.ownerName} avatar`, className: 'repo-owner-avatar' }),
el('div', { className: 'repo-title' }, el('a', { href: attributes.repoUrl, target: '_blank' }, attributes.repoName))
),
el('p', null, el('strong', null, 'Owner: '), attributes.ownerName),
el('p', null, el('strong', null, 'Description: '), attributes.description),
el('div', { className: 'repo-stats' },
attributes.showContributors && el('span', { className: 'repo-stat' },
el('img', { src: `${ghrc_plugin.pluginUrl}images/contributor.svg`, className: 'icon', alt: 'Contributors' }),
` ${attributes.contributors}`,
el('span', { className: 'stat-name' }, ' Contributors')
),
attributes.showStars && el('span', { className: 'repo-stat' },
el('img', { src: `${ghrc_plugin.pluginUrl}images/star.svg`, className: 'icon', alt: 'Stars' }),
` ${attributes.stars}`,
el('span', { className: 'stat-name' }, ' Stars')
),
attributes.showWatchers && el('span', { className: 'repo-stat' },
el('img', { src: `${ghrc_plugin.pluginUrl}images/watch.svg`, className: 'icon', alt: 'Watchers' }),
` ${attributes.watchers}`,
el('span', { className: 'stat-name' }, ' Watchers')
),
attributes.showForks && el('span', { className: 'repo-stat' },
el('img', { src: `${ghrc_plugin.pluginUrl}images/fork.svg`, className: 'icon', alt: 'Forks' }),
` ${attributes.forks}`,
el('span', { className: 'stat-name' }, ' Forks')
),
attributes.showIssues && el('span', { className: 'repo-stat' },
el('img', { src: `${ghrc_plugin.pluginUrl}images/issue.svg`, className: 'icon', alt: 'Issues' }),
` ${attributes.issues}`,
el('span', { className: 'stat-name' }, ' Issues')
)
)
) :
el('p', null, 'Enter a valid GitHub repository URL in the block settings.')
)
);
},
save() {
return null; // Rendered in PHP, no need to save output in JS
}
});
})(window.wp);