-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathApp.js
387 lines (357 loc) · 10.6 KB
/
App.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
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
import './App.css';
/* Markdown */
import ReactMarkdown from 'react-markdown'
import remarkGfm from 'remark-gfm'
import rangeParser from 'parse-numeric-range'
/* Loading Spinner */
import ClipLoader from 'react-spinners/ClipLoader';
//import LoadingIcons from 'react-loading-icons'
/* GraphQL */
import { ApolloClient,ApolloLink, concat, InMemoryCache, ApolloProvider,
gql, HttpLink, useQuery } from '@apollo/client'
/* Routing */
import {Routes, Route, useParams, useRoutes} from 'react-router-dom'
/* Syntax highlighting */
import { PrismLight as SyntaxHighlighter } from 'react-syntax-highlighter'
import { oneDark } from 'react-syntax-highlighter/dist/cjs/styles/prism'
import javascript from 'react-syntax-highlighter/dist/cjs/languages/prism/javascript'
import scss from 'react-syntax-highlighter/dist/cjs/languages/prism/scss'
import bash from 'react-syntax-highlighter/dist/cjs/languages/prism/bash'
import markdown from 'react-syntax-highlighter/dist/cjs/languages/prism/markdown'
import json from 'react-syntax-highlighter/dist/cjs/languages/prism/json'
import rust from 'react-syntax-highlighter/dist/cjs/languages/prism/rust'
import graphql from 'react-syntax-highlighter/dist/cjs/languages/prism/graphql'
import turtle from 'react-syntax-highlighter/dist/cjs/languages/prism/turtle'
SyntaxHighlighter.registerLanguage('turtle', turtle)
SyntaxHighlighter.registerLanguage('ttl', turtle)
SyntaxHighlighter.registerLanguage('javascript', javascript)
SyntaxHighlighter.registerLanguage('scss', scss)
SyntaxHighlighter.registerLanguage('bash', bash)
SyntaxHighlighter.registerLanguage('shell', bash)
SyntaxHighlighter.registerLanguage('markdown', markdown)
SyntaxHighlighter.registerLanguage('json', json)
SyntaxHighlighter.registerLanguage('rust', rust)
SyntaxHighlighter.registerLanguage('graphql', graphql)
const syntaxTheme = oneDark
const MarkdownComponents = {
code({ node, inline, className, ...props }) {
const match = /language-(\w+)|(diagram)/.exec(className || '')
const hasMeta = node?.data?.meta
const applyHighlights = (applyHighlights) => {
if (hasMeta) {
const RE = /{([\d,-]+)}/
const metadata = node.data.meta?.replace(/\s/g, '')
const strlineNumbers = RE?.test(metadata)
? RE?.exec(metadata)[1]
: '0'
const highlightLines = rangeParser(strlineNumbers)
const highlight = highlightLines
const data = highlight.includes(applyHighlights)
? 'highlight'
: null
return { data }
} else {
return {}
}
}
return match ? (
<SyntaxHighlighter
style={syntaxTheme}
language={match[1]}
PreTag="div"
className="codeStyle"
showLineNumbers={true}
useInlineStyles={true}
lineProps={applyHighlights}
{...props}
/>
) : (
<code className={className} {...props} />
/*
<SyntaxHighlighter
style={syntaxTheme}
language="diagram"
className="codeStyle"
showLineNumbers={false}
useInlineStyles={true}
{...props}
/>*/
)
},
}
/* GraphQL Boilerplate */
const httpLink = new HttpLink({ uri: "http://localhost:6363/api/graphql/admin/blog" });
const authMiddleware = new ApolloLink((operation, forward) => {
// add the authorization to the headers
operation.setContext(({ headers = {} }) => ({
headers: {
...headers,
authorization: "Basic YWRtaW46cm9vdA==",
}
}));
return forward(operation);
})
const ComposedLink = concat(authMiddleware, httpLink)
const cache = new InMemoryCache({
addTypename: false,
});
const client = new ApolloClient({
cache: cache,
link: ComposedLink,
});
/* GraphQL Queries */
const POSTS_QUERY = gql`
query PostsQuery($offset: Int, $limit: Int) {
Post(offset: $offset, limit: $limit, orderBy: { date : DESC }) {
_id
date
title
content
feature {
alt
location
}
}
}`
const POST_QUERY = gql`
query PostQuery($id: ID) {
Post(id: $id) {
_id
date
title
content
}
}`
const SITEMAP_QUERY = gql`
query SitemapQuery {
SiteMap {
items(orderBy: { order : ASC }) {
_id
name
location
}
}
}`
const PAGE_QUERY = gql`
query PageQuery($id: ID) {
Page(id: $id) {
_id
title
content
}
}`
/* Text Processing */
function snippit(content, size=20) {
content = content.replace(/!\[[^\]]*\]\([^\)]*\)/g,'')
content = content.replace(/```[^`]*```/g,'')
const matcher = new RegExp(`^(.*\n){0,${size}}`, 'g')
const result = matcher.exec(content)
if(result !== null) {
return result[0]
}else{
return content.substring(0,100)
}
}
/* The App */
/*function Loading() {
return (
<LoadingIcons.Hearts stroke="#3dffc5" fill="#3dffc5" alignment-baseline="central" />
)
}*/
function Loading() {
const style = { position: "fixed", top: "50%", left: "50%", transform: "translate(-50%, -50%)" };
return (
<div style={style}>
<ClipLoader color="#3dffc5" />
</div>
)
}
function SiteMap() {
const { loading, error, data } = useQuery(SITEMAP_QUERY);
if (loading) return <div className='topnav'><Loading /></div>;
if (error) return `Error! ${error.message}`;
const SiteItems = data.SiteMap[0].items
return (
<div className='topnav'>
{SiteItems.map((item) =>
<span key={item.id} className="siteLink" id={item.id}><a href={item.location}>{item.name}</a></span>
)}
</div>
)
}
function get_page_number(){
const path = window.location.pathname
const re = /^\/p\/(.*)/;
if (re.exec(path)) {
// We are a page
const m = re.exec(path)
const i = parseInt(m[1])
if(i){
return i
}else{
return 0
}
}else{
return 0
}
}
function get_offsets() {
const page_number = get_page_number()
return { offset: 10 * page_number,
limit: 10}
}
function More(){
const next_page_number = get_page_number() + 1;
const offsets = {
offset: 10 * next_page_number,
limit:1
}
const { loading, error, data } = useQuery(POSTS_QUERY, {variables:offsets});
if (loading) return <Loading />;
if (error) return `Error! ${error.message}`;
const next_path = `/p/${next_page_number}`
return (
<div key="more" name="morePosts">
{data.Post.map((post) => <a key="more_ref" href={next_path}>More posts</a>)}
</div>
)
}
function Image(image){
return (
<td className='blogImage' ><img className='Thumbnail' src={image.location} alt={image.alt} /></td>
)
}
function PostRiver() {
const offsets = get_offsets()
const { loading, error, data } = useQuery(POSTS_QUERY, {variables:offsets});
if (loading) return <Loading />;
if (error) return `Error! ${error.message}`;
return (
<div>
<div name='post_river'>
{data.Post.map((post) => {
const date_time_obj = new Date(post.date);
var options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }
var date_time = date_time_obj.toLocaleDateString("en-US", options)
var id = post._id.replace(/^iri:\/\/data/, '')
var path = `${id}`
var content = snippit(post.content) + `... **[see more](${path})**`
var image = post.feature ? Image(post.feature) : ''
return (
<div key={id} id={id} name='BlogCard'>
<table className='blogTable'>
<tbody>
<tr>
<td className='blogData'>
<span><h2><a href={path}>{post.title}</a></h2></span><em>{date_time}</em>
<ReactMarkdown components={MarkdownComponents}>
{content}
</ReactMarkdown>
</td>
{image}
</tr>
</tbody>
</table>
<hr />
</div>
)})}
</div>
<More />
</div>
);
}
function Post() {
var path = window.location.pathname
var id = path.substring(1,path.length)
id = "iri://data/" + id
const { loading, error, data } = useQuery(POST_QUERY, {variables:{id:id}});
if (loading) return <Loading />
if (error) return `Error! ${error.message}`;
return (
<div name='post'>
<SiteMap />
{data.Post.map((post) => {
const date_time_obj = new Date(post.date);
var options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }
var date_time = date_time_obj.toLocaleDateString("en-US", options)
var id = post._id.replace(/^iri:\/\/data/, '')
var content = post.content
return (
<div key={id} id={id}>
<span><h1>{post.title}</h1></span><em>{date_time}</em>
<ReactMarkdown components={MarkdownComponents} remarkPlugins={[remarkGfm]}>
{content}
</ReactMarkdown>
</div>
)})}
</div>
)
}
function Page() {
var path = window.location.pathname
var id = path.substring(1,path.length)
id = "iri://data/" + id
const { loading, error, data } = useQuery(PAGE_QUERY, {variables:{id:id}});
if (loading) return 'Loading...';
if (error) return `Error! ${error.message}`;
return (
<div name='page'>
<SiteMap />
{data.Page.map((page) => {
var id = page.id.replace(/^iri:\/\/data/, '')
var content = page.content
return (
<div id={id}>
<span><h1>{page.title}</h1></span>
<ReactMarkdown components={MarkdownComponents} remarkPlugins={[remarkGfm]}>
{content}
</ReactMarkdown>
</div>
)})}
</div>
)
}
function Posts() {
return (
<div className="App">
<ApolloProvider client={client}>
<SiteMap />
<ReactMarkdown>
# Gavin's Technical Blog
</ReactMarkdown>
<PostRiver />
</ApolloProvider>
</div>
)
}
function SinglePost() {
return (
<div className="App">
<ApolloProvider client={client}>
<Post />
</ApolloProvider>
</div>
)
}
function SinglePage() {
return (
<div className="App">
<ApolloProvider client={client}>
<Page />
</ApolloProvider>
</div>
)
}
function App() {
let routes = useRoutes([
{ path: "/", element: <Posts /> },
{ path: "p", children : [
{ path: ":page", element: <Posts /> }]},
{ path: "Post", children : [
{ path: ":id", element: <SinglePost /> }]},
{ path: "Page", children : [
{ path: ":id", element: <SinglePage /> }]}
]);
return routes;
}
export default App;