mirror of https://github.com/sveltejs/svelte
parent
bab62df434
commit
c779162b29
@ -0,0 +1,3 @@
|
||||
{
|
||||
"title": "Introduction"
|
||||
}
|
@ -0,0 +1,81 @@
|
||||
<script>
|
||||
import { goto } from '@sapper/app';
|
||||
import Icon from '../../../../components/Icon.svelte';
|
||||
|
||||
export let sections;
|
||||
export let slug;
|
||||
export let selected;
|
||||
|
||||
function navigate(e) {
|
||||
goto(`tutorial/${e.target.value}`);
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
nav {
|
||||
display: grid;
|
||||
grid-template-columns: 2.5em 1fr 2.5em;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
div {
|
||||
position: relative;
|
||||
padding: 1em 0.5em;
|
||||
font-weight: 300;
|
||||
font-size: var(--h6);
|
||||
color: var(--text);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
a {
|
||||
display: block;
|
||||
padding: 0.7em 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a.disabled, a.disabled:hover, a.disabled:active {
|
||||
color: var(--second);
|
||||
}
|
||||
|
||||
span {
|
||||
white-space: nowrap;
|
||||
color: var(--prime);
|
||||
}
|
||||
|
||||
strong {
|
||||
color: var(--heading);
|
||||
}
|
||||
|
||||
select {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0.0001;
|
||||
}
|
||||
</style>
|
||||
|
||||
<nav>
|
||||
<a rel="prefetch" href="tutorial/{(selected.prev || selected).slug}" class:disabled={!selected.prev}>
|
||||
<Icon name="arrow-left" />
|
||||
</a>
|
||||
|
||||
<div>
|
||||
<span><strong>{selected.section.title} /</strong> {selected.chapter.title}</span>
|
||||
|
||||
<select value={slug} on:change={navigate}>
|
||||
{#each sections as section, i}
|
||||
<optgroup label="{i + 1}. {section.title}">
|
||||
{#each section.chapters as chapter, i}
|
||||
<option value={chapter.slug}>{String.fromCharCode(i + 97)}. {chapter.title}</option>
|
||||
{/each}
|
||||
</optgroup>
|
||||
{/each}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<a rel="prefetch" href="tutorial/{(selected.next || selected).slug}" class:disabled={!selected.next}>
|
||||
<Icon name="arrow-right" />
|
||||
</a>
|
||||
</nav>
|
@ -0,0 +1,95 @@
|
||||
import * as fs from 'fs';
|
||||
import marked from 'marked';
|
||||
import PrismJS from 'prismjs';
|
||||
import { extract_frontmatter, extract_metadata, langs } from '../../../utils/markdown';
|
||||
|
||||
const cache = new Map();
|
||||
|
||||
function find_tutorial(slug) {
|
||||
const sections = fs.readdirSync(`content/tutorial`);
|
||||
|
||||
for (const section of sections) {
|
||||
const chapters = fs.readdirSync(`content/tutorial/${section}`).filter(dir => /^\d+/.test(dir));
|
||||
for (const chapter of chapters) {
|
||||
if (slug === chapter.replace(/^\d+-/, '')) {
|
||||
return { section, chapter };
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function get_tutorial(slug) {
|
||||
const found = find_tutorial(slug);
|
||||
if (!found) return found;
|
||||
|
||||
const dir = `content/tutorial/${found.section}/${found.chapter}`;
|
||||
|
||||
const markdown = fs.readFileSync(`${dir}/text.md`, 'utf-8');
|
||||
const files = fs.readdirSync(dir).filter(file => file[0] !== '.' && file !== 'text.md');
|
||||
|
||||
const { content } = extract_frontmatter(markdown);
|
||||
|
||||
const renderer = new marked.Renderer();
|
||||
|
||||
renderer.code = (source, lang) => {
|
||||
source = source.replace(/^ +/gm, match =>
|
||||
match.split(' ').join('\t')
|
||||
);
|
||||
|
||||
const lines = source.split('\n');
|
||||
|
||||
const meta = extract_metadata(lines[0], lang);
|
||||
|
||||
let prefix = '';
|
||||
let className = 'code-block';
|
||||
|
||||
if (meta) {
|
||||
source = lines.slice(1).join('\n');
|
||||
const filename = meta.filename || (lang === 'html' && 'App.svelte');
|
||||
if (filename) {
|
||||
prefix = `<span class='filename'>${prefix} ${filename}</span>`;
|
||||
className += ' named';
|
||||
}
|
||||
}
|
||||
|
||||
const plang = langs[lang];
|
||||
const highlighted = PrismJS.highlight(
|
||||
source,
|
||||
PrismJS.languages[plang],
|
||||
lang
|
||||
);
|
||||
|
||||
return `<div class='${className}'>${prefix}<pre class='language-${plang}'><code>${highlighted}</code></pre></div>`;
|
||||
};
|
||||
|
||||
const html = marked(content, { renderer });
|
||||
|
||||
return {
|
||||
html,
|
||||
files: files.map(file => ({
|
||||
file,
|
||||
contents: fs.readFileSync(`${dir}/${file}`, 'utf-8')
|
||||
}))
|
||||
};
|
||||
}
|
||||
|
||||
export function get(req, res) {
|
||||
const { slug } = req.params;
|
||||
|
||||
if (!cache.has(slug) || process.env.NODE_ENV !== 'production') {
|
||||
cache.set(slug, JSON.stringify(get_tutorial(slug)));
|
||||
}
|
||||
|
||||
const json = cache.get(slug);
|
||||
|
||||
res.set({
|
||||
'Content-Type': 'application/json'
|
||||
});
|
||||
|
||||
if (json) {
|
||||
res.end(json);
|
||||
} else {
|
||||
res.statusCode = 404;
|
||||
res.end(JSON.stringify({ message: 'not found' }));
|
||||
}
|
||||
}
|
@ -0,0 +1,112 @@
|
||||
<script context="module">
|
||||
export async function preload({ params }) {
|
||||
const chapter = await this.fetch(`tutorial/${params.slug}.json`).then(r => r.json());
|
||||
|
||||
return {
|
||||
slug: params.slug,
|
||||
chapter
|
||||
};
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
import TableOfContents from './_components/TableOfContents.svelte';
|
||||
import Icon from '../../../components/Icon.svelte';
|
||||
import { getContext } from 'svelte';
|
||||
|
||||
export let slug;
|
||||
export let chapter;
|
||||
|
||||
const { sections } = getContext('tutorial');
|
||||
|
||||
const lookup = new Map();
|
||||
let prev;
|
||||
|
||||
sections.forEach(section => {
|
||||
section.chapters.forEach(chapter => {
|
||||
const obj = {
|
||||
slug: chapter.slug,
|
||||
section,
|
||||
chapter,
|
||||
prev
|
||||
};
|
||||
|
||||
lookup.set(chapter.slug, obj);
|
||||
|
||||
if (process.browser) { // pending https://github.com/sveltejs/svelte/issues/2135
|
||||
if (prev) prev.next = obj;
|
||||
prev = obj;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
$: selected = lookup.get(slug);
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.tutorial-outer {
|
||||
position: relative;
|
||||
height: calc(100vh - var(--nav-h));
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
margin: 0 calc(var(--side-nav) * -1);
|
||||
box-sizing: border-box;
|
||||
display: grid;
|
||||
grid-template-columns: 400px 1fr;
|
||||
}
|
||||
|
||||
.tutorial-text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
border-right: 1px solid var(--second);
|
||||
}
|
||||
|
||||
.tutorial-repl {
|
||||
|
||||
}
|
||||
|
||||
.table-of-contents {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.chapter-markup {
|
||||
padding: 1em;
|
||||
overflow: auto;
|
||||
flex: 1;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.chapter-markup :global(h2) {
|
||||
font-size: var(--h3);
|
||||
color: var(--second);
|
||||
margin: 3.2rem 0 1.6rem 0;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.next {
|
||||
display: block;
|
||||
text-align: right;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="tutorial-outer">
|
||||
<div class="tutorial-text">
|
||||
<div class="table-of-contents">
|
||||
<TableOfContents {sections} {slug} {selected}/>
|
||||
</div>
|
||||
|
||||
<div class="chapter-markup">
|
||||
{@html chapter.html}
|
||||
|
||||
{#if selected.next}
|
||||
<a class="next" href="tutorial/{selected.next.slug}">Next <Icon name="arrow-right" /></a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tutorial-repl">
|
||||
TODO add the REPL
|
||||
</div>
|
||||
|
||||
</div>
|
@ -0,0 +1,15 @@
|
||||
<script context="module">
|
||||
export async function preload() {
|
||||
const sections = await this.fetch(`tutorial.json`).then(r => r.json());
|
||||
return { sections };
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
import { setContext } from 'svelte';
|
||||
|
||||
export let sections;
|
||||
setContext('tutorial', { sections });
|
||||
</script>
|
||||
|
||||
<slot></slot>
|
@ -1,4 +0,0 @@
|
||||
export function get_tutorials() {
|
||||
// TODO
|
||||
return [];
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
import get_tutorials from './_tutorials.js';
|
||||
|
||||
let json;
|
||||
|
||||
export function get(req, res) {
|
||||
if (!json || process.env.NODE_ENV !== 'production') {
|
||||
json = JSON.stringify(get_tutorials());
|
||||
}
|
||||
|
||||
res.set({
|
||||
'Content-Type': 'application/json'
|
||||
});
|
||||
|
||||
res.end(json);
|
||||
}
|
@ -0,0 +1,48 @@
|
||||
import * as fs from 'fs';
|
||||
import { extract_frontmatter } from '../../utils/markdown';
|
||||
|
||||
let json;
|
||||
|
||||
function get_sections() {
|
||||
const slugs = new Set();
|
||||
|
||||
const sections = fs.readdirSync(`content/tutorial`)
|
||||
.filter(dir => /^\d+/.test(dir))
|
||||
.map(dir => {
|
||||
const meta = JSON.parse(fs.readFileSync(`content/tutorial/${dir}/meta.json`, 'utf-8'));
|
||||
|
||||
return {
|
||||
title: meta.title,
|
||||
chapters: fs.readdirSync(`content/tutorial/${dir}`)
|
||||
.filter(dir => /^\d+/.test(dir))
|
||||
.map(tutorial => {
|
||||
const md = fs.readFileSync(`content/tutorial/${dir}/${tutorial}/text.md`, 'utf-8');
|
||||
const { metadata, content } = extract_frontmatter(md);
|
||||
|
||||
const slug = tutorial.replace(/^\d+-/, '');
|
||||
|
||||
if (slugs.has(slug)) throw new Error(`Duplicate slug: ${slug}`);
|
||||
slugs.add(slug);
|
||||
|
||||
return {
|
||||
slug,
|
||||
title: metadata.title
|
||||
};
|
||||
})
|
||||
}
|
||||
});
|
||||
|
||||
return sections;
|
||||
}
|
||||
|
||||
export function get(req, res) {
|
||||
if (!json || process.env.NODE_ENV !== 'production') {
|
||||
json = JSON.stringify(get_sections());
|
||||
}
|
||||
|
||||
res.set({
|
||||
'Content-Type': 'application/json'
|
||||
});
|
||||
|
||||
res.end(json);
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
export default function process_markdown(markdown) {
|
||||
const match = /---\r?\n([\s\S]+?)\r?\n---/.exec(markdown);
|
||||
const frontMatter = match[1];
|
||||
const content = markdown.slice(match[0].length);
|
||||
|
||||
const metadata = {};
|
||||
frontMatter.split('\n').forEach(pair => {
|
||||
const colonIndex = pair.indexOf(':');
|
||||
metadata[pair.slice(0, colonIndex).trim()] = pair
|
||||
.slice(colonIndex + 1)
|
||||
.trim();
|
||||
});
|
||||
|
||||
return { metadata, content };
|
||||
}
|
@ -0,0 +1,43 @@
|
||||
import * as fleece from 'golden-fleece';
|
||||
|
||||
export function extract_frontmatter(markdown) {
|
||||
const match = /---\r?\n([\s\S]+?)\r?\n---/.exec(markdown);
|
||||
const frontMatter = match[1];
|
||||
const content = markdown.slice(match[0].length);
|
||||
|
||||
const metadata = {};
|
||||
frontMatter.split('\n').forEach(pair => {
|
||||
const colonIndex = pair.indexOf(':');
|
||||
metadata[pair.slice(0, colonIndex).trim()] = pair
|
||||
.slice(colonIndex + 1)
|
||||
.trim();
|
||||
});
|
||||
|
||||
return { metadata, content };
|
||||
}
|
||||
|
||||
export function extract_metadata(line, lang) {
|
||||
try {
|
||||
if (lang === 'html' && line.startsWith('<!--') && line.endsWith('-->')) {
|
||||
return fleece.evaluate(line.slice(4, -3).trim());
|
||||
}
|
||||
|
||||
if (
|
||||
lang === 'js' ||
|
||||
(lang === 'json' && line.startsWith('/*') && line.endsWith('*/'))
|
||||
) {
|
||||
return fleece.evaluate(line.slice(2, -2).trim());
|
||||
}
|
||||
} catch (err) {
|
||||
// TODO report these errors, don't just squelch them
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// map lang to prism-language-attr
|
||||
export const langs = {
|
||||
bash: 'bash',
|
||||
html: 'markup',
|
||||
js: 'javascript',
|
||||
css: 'css',
|
||||
};
|
Loading…
Reference in new issue