File size: 11,171 Bytes
1e92f2d |
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 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 |
import React, { useState, PropsWithChildren, Ref, ErrorInfo } from 'react'
import { cx, css } from '@emotion/css'
import Head from 'next/head'
import Link from 'next/link'
import dynamic from 'next/dynamic'
import { ErrorBoundary } from 'react-error-boundary'
import { Icon } from '../../examples/ts/components/index'
import AndroidTests from '../../examples/ts/android-tests'
import CheckLists from '../../examples/ts/check-lists'
import CodeHighlighting from '../../examples/ts/code-highlighting'
import EditableVoids from '../../examples/ts/editable-voids'
import Embeds from '../../examples/ts/embeds'
import ForcedLayout from '../../examples/ts/forced-layout'
import HoveringToolbar from '../../examples/ts/hovering-toolbar'
import HugeDocument from '../../examples/ts/huge-document'
import Images from '../../examples/ts/images'
import Inlines from '../../examples/ts/inlines'
import MarkdownPreview from '../../examples/ts/markdown-preview'
import MarkdownShortcuts from '../../examples/ts/markdown-shortcuts'
import Mentions from '../../examples/ts/mentions'
import PasteHtml from '../../examples/ts/paste-html'
import PlainText from '../../examples/ts/plaintext'
import ReadOnly from '../../examples/ts/read-only'
import RichText from '../../examples/ts/richtext'
import SearchHighlighting from '../../examples/ts/search-highlighting'
import ShadowDOM from '../../examples/ts/shadow-dom'
import Styling from '../../examples/ts/styling'
import Tables from '../../examples/ts/tables'
import IFrames from '../../examples/ts/iframe'
import CustomPlaceholder from '../../examples/ts/custom-placeholder'
// node
import { getAllExamples } from '../api'
type ExampleTuple = [name: string, component: React.ComponentType, path: string]
const EXAMPLES: ExampleTuple[] = [
['Android Tests', AndroidTests, 'android-tests'],
['Checklists', CheckLists, 'check-lists'],
['Code Highlighting', CodeHighlighting, 'code-highlighting'],
['Custom Placeholder', CustomPlaceholder, 'custom-placeholder'],
['Editable Voids', EditableVoids, 'editable-voids'],
['Embeds', Embeds, 'embeds'],
['Forced Layout', ForcedLayout, 'forced-layout'],
['Hovering Toolbar', HoveringToolbar, 'hovering-toolbar'],
['Huge Document', HugeDocument, 'huge-document'],
['Images', Images, 'images'],
['Inlines', Inlines, 'inlines'],
['Markdown Preview', MarkdownPreview, 'markdown-preview'],
['Markdown Shortcuts', MarkdownShortcuts, 'markdown-shortcuts'],
['Mentions', Mentions, 'mentions'],
['Paste HTML', PasteHtml, 'paste-html'],
['Plain Text', PlainText, 'plaintext'],
['Read-only', ReadOnly, 'read-only'],
['Rendering in iframes', IFrames, 'iframe'],
['Rich Text', RichText, 'richtext'],
['Search Highlighting', SearchHighlighting, 'search-highlighting'],
['Shadow DOM', ShadowDOM, 'shadow-dom'],
['Styling', Styling, 'styling'],
['Tables', Tables, 'tables'],
]
const HIDDEN_EXAMPLES = ['android-tests']
const NON_HIDDEN_EXAMPLES = EXAMPLES.filter(
([, , path]) => !HIDDEN_EXAMPLES.includes(path)
)
const Header = (props: React.HTMLAttributes<HTMLDivElement>) => (
<div
{...props}
className={css`
align-items: center;
background: #000;
color: #aaa;
display: flex;
height: 42px;
position: relative;
z-index: 3; /* To appear above the underlay */
`}
/>
)
const Title = (props: React.HTMLAttributes<HTMLSpanElement>) => (
<span
{...props}
className={css`
margin-left: 1em;
`}
/>
)
const LinkList = (props: React.HTMLAttributes<HTMLDivElement>) => (
<div
{...props}
className={css`
margin-left: auto;
margin-right: 1em;
`}
/>
)
const A = (props: React.AnchorHTMLAttributes<HTMLAnchorElement>) => (
<a
{...props}
className={css`
margin-left: 1em;
color: #aaa;
text-decoration: none;
&:hover {
color: #fff;
text-decoration: underline;
}
`}
/>
)
const Pill = (props: React.HTMLAttributes<HTMLSpanElement>) => (
<span
{...props}
className={css`
background: #333;
border-radius: 9999px;
color: #aaa;
padding: 0.2em 0.5em;
`}
/>
)
const TabList = ({
isVisible,
...props
}: React.HTMLAttributes<HTMLDivElement> & { isVisible?: boolean }) => (
<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: 3; /* To appear above the underlay */
`}
/>
)
const TabListUnderlay = ({
isVisible,
...props
}: React.HTMLAttributes<HTMLDivElement> & { isVisible?: boolean }) => (
<div
{...props}
className={css`
background-color: rgba(200, 200, 200, 0.8);
display: ${isVisible ? 'block' : 'none'};
height: 100%;
top: 0;
position: fixed;
width: 100%;
z-index: 2;
`}
/>
)
const TabButton = (props: React.HTMLAttributes<HTMLSpanElement>) => (
<span
{...props}
className={css`
margin-left: 0.8em;
&:hover {
cursor: pointer;
}
.material-icons {
color: #aaa;
font-size: 24px;
}
`}
/>
)
const Tab = React.forwardRef(
(
{
active,
href,
...props
}: PropsWithChildren<{
active: boolean
href: string
[key: string]: unknown
}>,
ref: Ref<HTMLAnchorElement>
) => (
<a
ref={ref}
href={href}
{...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
}: React.HTMLAttributes<HTMLDivElement>) => (
<div
{...props}
className={cx(
className,
css`
max-width: 42em;
margin: 20px auto;
padding: 20px;
`
)}
/>
)
const ExampleHeader = (props: React.HTMLAttributes<HTMLDivElement>) => (
<div
{...props}
className={css`
align-items: center;
background-color: #555;
color: #ddd;
display: flex;
height: 42px;
position: relative;
z-index: 3; /* To appear above the underlay */
`}
/>
)
const ExampleTitle = (props: React.HTMLAttributes<HTMLSpanElement>) => (
<span
{...props}
className={css`
margin-left: 1em;
`}
/>
)
const ExampleContent = (props: React.HTMLAttributes<HTMLDivElement>) => (
<Wrapper
{...props}
className={css`
background: #fff;
`}
/>
)
const Warning = (props: React.HTMLAttributes<HTMLDivElement>) => (
<Wrapper
{...props}
className={css`
background: #fffae0;
& > pre {
background: #fbf1bd;
white-space: pre;
overflow-x: scroll;
margin-bottom: 0;
}
`}
/>
)
const ExamplePage = ({ example }: { example: string }) => {
const [error, setError] = useState<Error | undefined>(undefined)
const [stacktrace, setStacktrace] = useState<ErrorInfo | undefined>(undefined)
const [showTabs, setShowTabs] = useState<boolean>(false)
const EXAMPLE = EXAMPLES.find(e => e[2] === example)
const [name, Component, path] = EXAMPLE!
return (
<ErrorBoundary
onError={(error, stacktrace) => {
setError(error)
setStacktrace(stacktrace)
}}
fallbackRender={({ error, resetErrorBoundary }) => (
<Warning>
<p>An error was thrown by one of the example's React components!</p>
<pre>
<code>
{error.stack}
{'\n'}
{stacktrace}
</code>
</pre>
<button onClick={resetErrorBoundary}>Try again</button>
</Warning>
)}
>
<div>
<Head>
<title>Slate Examples</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="/index.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:400,400i,700,700i&subset=latin-ext"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
</Head>
<Header>
<Title>Slate Examples</Title>
<LinkList>
<A href="https://github.com/ianstormtaylor/slate">GitHub</A>
<A href="https://docs.slatejs.org/">Docs</A>
</LinkList>
</Header>
<ExampleHeader>
<TabButton
onClick={e => {
e.stopPropagation()
setShowTabs(!showTabs)
}}
>
<Icon>menu</Icon>
</TabButton>
<ExampleTitle>
{name}
<A
href={`https://github.com/ianstormtaylor/slate/blob/main/site/examples/js/${path}.jsx`}
>
<Pill>JS Code</Pill>
</A>
<A
href={`https://github.com/ianstormtaylor/slate/blob/main/site/examples/ts/${path}.tsx`}
>
<Pill>TS Code</Pill>
</A>
</ExampleTitle>
</ExampleHeader>
<TabList isVisible={showTabs}>
{NON_HIDDEN_EXAMPLES.map(([n, , p]) => (
<Link
key={p as string}
href="/examples/[example]"
as={`/examples/${p}`}
legacyBehavior
passHref
>
<Tab onClick={() => setShowTabs(false)}>{n}</Tab>
</Link>
))}
</TabList>
{error ? (
<Warning>
<p>An error was thrown by one of the example's React components!</p>
<pre>
<code>
<>
{error.stack}
{'\n'}
{stacktrace}
</>
</code>
</pre>
</Warning>
) : (
<ExampleContent>
<Component />
</ExampleContent>
)}
<TabListUnderlay
isVisible={showTabs}
onClick={() => setShowTabs(false)}
/>
</div>
</ErrorBoundary>
)
}
// Disable SSR because it results in a double rendering which makes debugging
// examples more challenging. No idea how any of this works.
const NoSsrExamplePage = dynamic(() => Promise.resolve(ExamplePage), {
ssr: false,
})
export async function getStaticPaths() {
const paths = getAllExamples()
return {
paths: paths.map(path => ({
params: {
example: path,
},
})),
fallback: false,
}
}
export async function getStaticProps({
params,
}: {
params: { example: string }
}) {
return {
props: {
example: params.example,
},
}
}
export default NoSsrExamplePage
|