You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
2.9 KiB
139 lines
2.9 KiB
2 months ago
|
<?php
|
||
|
|
||
|
use Kirby\Panel\Lab\Category;
|
||
|
use Kirby\Panel\Lab\Docs;
|
||
|
|
||
|
return [
|
||
|
'lab' => [
|
||
|
'pattern' => 'lab',
|
||
|
'action' => function () {
|
||
|
return [
|
||
|
'component' => 'k-lab-index-view',
|
||
|
'props' => [
|
||
|
'categories' => Category::all(),
|
||
|
'info' => Category::installed() ? null : 'The default Lab examples are not installed.',
|
||
|
'tab' => 'examples',
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
],
|
||
|
'lab.docs' => [
|
||
|
'pattern' => 'lab/docs',
|
||
|
'action' => function () {
|
||
|
$props = match (Docs::installed()) {
|
||
|
true => [
|
||
|
'categories' => [['examples' => Docs::all()]],
|
||
|
'tab' => 'docs',
|
||
|
],
|
||
|
false => [
|
||
|
'info' => 'The UI docs are not installed.',
|
||
|
'tab' => 'docs',
|
||
|
]
|
||
|
};
|
||
|
|
||
|
return [
|
||
|
'component' => 'k-lab-index-view',
|
||
|
'title' => 'Docs',
|
||
|
'breadcrumb' => [
|
||
|
[
|
||
|
'label' => 'Docs',
|
||
|
'link' => 'lab/docs'
|
||
|
]
|
||
|
],
|
||
|
'props' => $props,
|
||
|
];
|
||
|
}
|
||
|
],
|
||
|
'lab.doc' => [
|
||
|
'pattern' => 'lab/docs/(:any)',
|
||
|
'action' => function (string $component) {
|
||
|
$crumbs = [
|
||
|
[
|
||
|
'label' => 'Docs',
|
||
|
'link' => 'lab/docs'
|
||
|
],
|
||
|
[
|
||
|
'label' => $component,
|
||
|
'link' => 'lab/docs/' . $component
|
||
|
]
|
||
|
];
|
||
|
|
||
|
if (Docs::installed() === false) {
|
||
|
return [
|
||
|
'component' => 'k-lab-index-view',
|
||
|
'title' => $component,
|
||
|
'breadcrumb' => $crumbs,
|
||
|
'props' => [
|
||
|
'info' => 'The UI docs are not installed.',
|
||
|
'tab' => 'docs',
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
$docs = new Docs($component);
|
||
|
|
||
|
return [
|
||
|
'component' => 'k-lab-docs-view',
|
||
|
'title' => $component,
|
||
|
'breadcrumb' => $crumbs,
|
||
|
'props' => [
|
||
|
'component' => $component,
|
||
|
'docs' => $docs->toArray(),
|
||
|
'lab' => $docs->lab()
|
||
|
]
|
||
|
];
|
||
|
}
|
||
|
],
|
||
|
'lab.vue' => [
|
||
|
'pattern' => [
|
||
|
'lab/(:any)/(:any)/index.vue',
|
||
|
'lab/(:any)/(:any)/(:any)/index.vue'
|
||
|
],
|
||
|
'action' => function (
|
||
|
string $category,
|
||
|
string $id,
|
||
|
string|null $tab = null
|
||
|
) {
|
||
|
return Category::factory($category)->example($id, $tab)->serve();
|
||
|
}
|
||
|
],
|
||
|
'lab.example' => [
|
||
|
'pattern' => 'lab/(:any)/(:any)/(:any?)',
|
||
|
'action' => function (
|
||
|
string $category,
|
||
|
string $id,
|
||
|
string|null $tab = null
|
||
|
) {
|
||
|
$category = Category::factory($category);
|
||
|
$example = $category->example($id, $tab);
|
||
|
$props = $example->props();
|
||
|
$vue = $example->vue();
|
||
|
|
||
|
return [
|
||
|
'component' => 'k-lab-playground-view',
|
||
|
'breadcrumb' => [
|
||
|
[
|
||
|
'label' => $category->name(),
|
||
|
],
|
||
|
[
|
||
|
'label' => $example->title(),
|
||
|
'link' => $example->url()
|
||
|
]
|
||
|
],
|
||
|
'props' => [
|
||
|
'docs' => $props['docs'] ?? null,
|
||
|
'examples' => $vue['examples'],
|
||
|
'file' => $example->module(),
|
||
|
'github' => $example->github(),
|
||
|
'props' => $props,
|
||
|
'styles' => $vue['style'],
|
||
|
'tab' => $example->tab(),
|
||
|
'tabs' => array_values($example->tabs()),
|
||
|
'template' => $vue['template'],
|
||
|
'title' => $example->title(),
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
]
|
||
|
];
|