mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-24 14:53:52 +03:00
c53b593ea6
* custom swagger endpoint metadata graphql remove /rest from endpoint * fixed pseudo scheme creation * move graphql playground creation to own file, added navbar to change baseurl and token * add schema switcher, fix changing url not applied, add invalid overlay * fix link color * removed path on Graphql Playground, naming fixes subdoc * - fixed overflow issue Rest docs * history replace & goBack * Small fix GraphQL playground broken --------- Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
114 lines
2.5 KiB
JavaScript
114 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: '#',
|
|
className: 'coming-soon',
|
|
//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;
|