2024-01-30 14:19:25 +00:00
|
|
|
import { Articles, GeneratedContent, InputSection } from '../../types/content-types'
|
|
|
|
import { generateSection } from './generateSection'
|
|
|
|
|
|
|
|
const { log: nicelog } = console
|
|
|
|
|
|
|
|
const section: InputSection = {
|
|
|
|
id: 'examples',
|
|
|
|
title: 'Examples',
|
|
|
|
description: 'Code recipes for bending tldraw to your will.',
|
|
|
|
categories: [
|
|
|
|
{ id: 'basic', title: 'Getting Started', description: '', groups: [] },
|
2024-02-20 18:13:50 +00:00
|
|
|
{ id: 'ui', title: 'UI & Theming', description: '', groups: [] },
|
2024-01-30 14:19:25 +00:00
|
|
|
{ id: 'shapes/tools', title: 'Shapes & Tools', description: '', groups: [] },
|
|
|
|
{ id: 'data/assets', title: 'Data & Assets', description: '', groups: [] },
|
|
|
|
{ id: 'editor-api', title: 'Editor API', description: '', groups: [] },
|
|
|
|
{ id: 'collaboration', title: 'Collaboration', description: '', groups: [] },
|
|
|
|
],
|
|
|
|
sidebar_behavior: 'show-links',
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function generateExamplesContent(): Promise<GeneratedContent> {
|
|
|
|
const articles: Articles = {}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const outputExamplesSection = generateSection(section, articles, 0)
|
|
|
|
const contentComplete = { sections: [outputExamplesSection], articles }
|
|
|
|
|
|
|
|
return contentComplete
|
|
|
|
} catch (error) {
|
|
|
|
nicelog(`x Could not generate Examples content`)
|
|
|
|
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
}
|