mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-30 23:23:47 +03:00
caa4dcf893
* initialise metadata schema for open-api * remove "soon" label on metadata rest-api * open-api fetch paths * remove parameter type for metadata schema * add REST module to open-api * metadata schema components * metadata paths * refactor and /open-api route fix
112 lines
2.5 KiB
JavaScript
112 lines
2.5 KiB
JavaScript
/**
|
|
* Creating a sidebar enables you to:
|
|
- create an ordered group of docs
|
|
- render a sidebar for each doc of that group
|
|
- provide next/previous navigation
|
|
|
|
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
|
|
Create as many sidebars as you want.
|
|
*/
|
|
|
|
// @ts-check
|
|
|
|
const backToHomeLink = {
|
|
/** @type {"ref"} */
|
|
type: 'ref',
|
|
id: 'homepage',
|
|
label: 'Back to home',
|
|
className: 'menu__list-item--home',
|
|
customProps: {
|
|
icon: 'TbArrowBackUp',
|
|
iconSize: 20,
|
|
},
|
|
};
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
docsSidebar: [
|
|
{
|
|
type: 'doc',
|
|
id: 'homepage',
|
|
customProps: {
|
|
type: 'search-bar',
|
|
props: { name: 'Hello World', age: 42 },
|
|
},
|
|
},
|
|
{ type: 'autogenerated', dirName: '.' },
|
|
{
|
|
type: 'category',
|
|
label: 'Extending',
|
|
items: [
|
|
{
|
|
type: 'category',
|
|
label: 'Rest APIs',
|
|
collapsible: true,
|
|
collapsed: true,
|
|
customProps: {
|
|
icon: 'TbApi',
|
|
},
|
|
items: [
|
|
{
|
|
type: 'link',
|
|
label: 'Core API',
|
|
href: '/rest-api/core',
|
|
},
|
|
{
|
|
type: 'link',
|
|
label: 'Metadata API',
|
|
href: '/rest-api/metadata',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'GraphQL APIs',
|
|
collapsible: true,
|
|
collapsed: true,
|
|
customProps: {
|
|
icon: 'TbBrandGraphql',
|
|
},
|
|
items: [
|
|
{
|
|
type: 'link',
|
|
label: 'Core API',
|
|
href: '/graphql/core',
|
|
},
|
|
{
|
|
type: 'link',
|
|
label: 'Metadata API',
|
|
href: '/graphql/metadata',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'UI Kit',
|
|
collapsible: true,
|
|
collapsed: true,
|
|
customProps: {
|
|
icon: 'TbComponents',
|
|
},
|
|
items: [
|
|
{
|
|
type: 'link',
|
|
label: 'Storybook',
|
|
href: 'https://storybook.twenty.com',
|
|
},
|
|
{
|
|
type: 'link',
|
|
label: 'Components',
|
|
href: '/ui-components/',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
uiDocsSidebar: [{ type: 'autogenerated', dirName: 'ui-components' }],
|
|
};
|
|
|
|
module.exports = sidebars;
|