forked from ianstormtaylor/slate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.js
417 lines (381 loc) · 8.71 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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
import React from 'react'
import { cx, css } from 'emotion'
import {
HashRouter,
Link as RouterLink,
Route,
Redirect,
Switch,
} from 'react-router-dom'
import { Icon } from './components'
import CheckLists from './check-lists'
import CodeHighlighting from './code-highlighting'
import Embeds from './embeds'
import Emojis from './emojis'
import ForcedLayout from './forced-layout'
import History from './history'
import Versions from './versions'
import HoveringMenu from './hovering-menu'
import HugeDocument from './huge-document'
import Images from './images'
import Links from './links'
import MarkdownPreview from './markdown-preview'
import MarkdownShortcuts from './markdown-shortcuts'
import PasteHtml from './paste-html'
import PlainText from './plain-text'
import Plugins from './plugins'
import RTL from './rtl'
import ReadOnly from './read-only'
import RichText from './rich-text'
import SearchHighlighting from './search-highlighting'
import Composition from './composition'
import InputTester from './input-tester'
import SyncingOperations from './syncing-operations'
import Tables from './tables'
import Mentions from './mentions'
import Placeholder from './placeholder'
/**
* Examples.
*
* @type {Array}
*/
const EXAMPLES = [
['Checklists', CheckLists, '/check-lists'],
['Code Highlighting', CodeHighlighting, '/code-highlighting'],
['Composition', Composition, '/composition/:subpage?'],
['Embeds', Embeds, '/embeds'],
['Emojis', Emojis, '/emojis'],
['Forced Layout', ForcedLayout, '/forced-layout'],
['History', History, '/history'],
['Hovering Menu', HoveringMenu, '/hovering-menu'],
['Huge Document', HugeDocument, '/huge-document'],
['Images', Images, '/images'],
['Input Tester', InputTester, '/input-tester'],
['Links', Links, '/links'],
['Markdown Preview', MarkdownPreview, '/markdown-preview'],
['Markdown Shortcuts', MarkdownShortcuts, '/markdown-shortcuts'],
['Mentions', Mentions, '/mentions'],
['Paste HTML', PasteHtml, '/paste-html'],
['Placeholders', Placeholder, '/placeholders'],
['Plain Text', PlainText, '/plain-text'],
['Plugins', Plugins, '/plugins'],
['Read-only', ReadOnly, '/read-only'],
['Rich Text', RichText, '/rich-text'],
['RTL', RTL, '/rtl'],
['Search Highlighting', SearchHighlighting, '/search-highlighting'],
['Syncing Operations', SyncingOperations, '/syncing-operations'],
['Tables', Tables, '/tables'],
['Versions', Versions, '/versions'],
]
/**
* Some components.
*
* @type {Component}
*/
const Header = props => (
<div
{...props}
className={css`
align-items: center;
background: #000;
color: #aaa;
display: flex;
height: 42px;
position: relative;
z-index: 1; /* To appear above the underlay */
`}
/>
)
const Title = props => (
<span
{...props}
className={css`
margin-left: 1em;
`}
/>
)
const LinkList = props => (
<div
{...props}
className={css`
margin-left: auto;
margin-right: 1em;
`}
/>
)
const Link = props => (
<a
{...props}
className={css`
margin-left: 1em;
color: #aaa;
text-decoration: none;
&:hover {
color: #fff;
text-decoration: underline;
}
`}
/>
)
const TabList = ({ isVisible, ...props }) => (
<div
{...props}
className={css`
background-color: #222;
display: flex;
flex-direction: column;
overflow: auto;
padding-top: 0.2em;
position: absolute;
transition: width 0.2s;
width: ${isVisible ? '200px' : '0'};
white-space: nowrap;
max-height: 70vh;
z-index: 1; /* To appear above the underlay */
`}
/>
)
const TabListUnderlay = ({ isVisible, ...props }) => (
<div
{...props}
className={css`
background-color: rgba(200, 200, 200, 0.8);
display: ${isVisible ? 'block' : 'none'};
height: 100%;
top: 0;
position: fixed;
width: 100%;
`}
/>
)
const TabButton = props => (
<span
{...props}
className={css`
margin-left: 0.8em;
&:hover {
cursor: pointer;
}
.material-icons {
color: #aaa;
font-size: 24px;
}
`}
/>
)
const Tab = ({ active, ...props }) => (
<RouterLink
{...props}
className={css`
display: inline-block;
margin-bottom: 0.2em;
padding: 0.2em 1em;
border-radius: 0.2em;
text-decoration: none;
color: ${active ? 'white' : '#777'};
background: ${active ? '#333' : 'transparent'};
&:hover {
background: #333;
}
`}
/>
)
const Wrapper = ({ className, ...props }) => (
<div
{...props}
className={cx(
className,
css`
max-width: 42em;
margin: 20px auto;
padding: 20px;
`
)}
/>
)
const ExampleHeader = props => (
<div
{...props}
className={css`
align-items: center;
background-color: #555;
color: #ddd;
display: flex;
height: 42px;
position: relative;
z-index: 1; /* To appear above the underlay */
`}
/>
)
const ExampleTitle = props => (
<span
{...props}
className={css`
margin-left: 1em;
`}
/>
)
const ExampleContent = props => (
<Wrapper
{...props}
className={css`
background: #fff;
`}
/>
)
const Warning = props => (
<Wrapper
{...props}
className={css`
background: #fffae0;
& > pre {
background: #fbf1bd;
white-space: pre;
overflow-x: scroll;
margin-bottom: 0;
}
`}
/>
)
/**
* App.
*
* @type {Component}
*/
export default class App extends React.Component {
/**
* Initial state.
*
* @type {Object}
*/
state = {
error: null,
info: null,
isTabListVisible: false,
}
/**
* Catch the `error` and `info`.
*
* @param {Error} error
* @param {Object} info
*/
componentDidCatch(error, info) {
this.setState({ error, info })
}
/**
* Render the example app.
*
* @return {Element}
*/
render() {
return (
<HashRouter>
<div>
{this.renderHeader()}
{this.renderExampleHeader()}
{this.renderTabList()}
{this.state.error ? this.renderError() : this.renderExample()}
<TabListUnderlay
isVisible={this.state.isTabListVisible}
onClick={this._hideTabList}
/>
</div>
</HashRouter>
)
}
renderError() {
return (
<Warning>
<p>An error was thrown by one of the example's React components!</p>
<pre>
<code>
{this.state.error.stack}
{'\n'}
{this.state.info.componentStack}
</code>
</pre>
</Warning>
)
}
renderExample() {
return (
<Switch>
{EXAMPLES.map(([name, Component, path]) => (
<Route key={path} path={path}>
{({ match }) => (
<div>
<ExampleContent>
<Component params={match.params} />
</ExampleContent>
</div>
)}
</Route>
))}
<Redirect from="/" to="/rich-text" />
</Switch>
)
}
renderExampleHeader() {
return (
<ExampleHeader>
<TabButton
onClick={e => {
e.stopPropagation()
this.setState({
isTabListVisible: !this.state.isTabListVisible,
})
}}
>
<Icon>menu</Icon>
</TabButton>
<Switch>
{EXAMPLES.map(([name, Component, path]) => (
<Route key={path} exact path={path}>
<ExampleTitle>
{name}
<Link
href={`https://github.com/ianstormtaylor/slate/blob/master/examples${path}`}
>
(View Source)
</Link>
</ExampleTitle>
</Route>
))}
</Switch>
</ExampleHeader>
)
}
renderHeader() {
return (
<Header>
<Title>Slate Examples</Title>
<LinkList>
<Link href="https://github.com/ianstormtaylor/slate">GitHub</Link>
<Link href="https://docs.slatejs.org/">Docs</Link>
</LinkList>
</Header>
)
}
renderTabList() {
return (
<TabList isVisible={this.state.isTabListVisible}>
{EXAMPLES.map(([name, Component, path]) => (
<Route key={path} exact path={path}>
{({ match }) => (
<Tab
to={path}
active={match && match.isExact}
onClick={this._hideTabList}
>
{name}
</Tab>
)}
</Route>
))}
</TabList>
)
}
_hideTabList = () => {
this.setState({ isTabListVisible: false })
}
}