Skip to content

Commit

Permalink
fix: sidebars updated, removed warnings (#41)
Browse files Browse the repository at this point in the history
* fix: sidebars updated, removed warnings

* fix: added installation title

* fix: make cli section non-collapsible
  • Loading branch information
Rohan Mukherjee committed Jun 27, 2022
1 parent 55bb8c7 commit 951f1ab
Show file tree
Hide file tree
Showing 6 changed files with 108 additions and 58 deletions.
1 change: 1 addition & 0 deletions docs/cli/installation.mdx
@@ -1,5 +1,6 @@
---
sidebar_position: 1
title: Installation
---

# Dyte CLI
Expand Down
13 changes: 0 additions & 13 deletions docs/ui-kit/customization/03-atoms/dyte-avatar.md

This file was deleted.

5 changes: 0 additions & 5 deletions docs/ui-kit/customization/03-atoms/dyte-icon.md

This file was deleted.

2 changes: 0 additions & 2 deletions docs/ui-kit/customization/04-molecules/dyte-peer-view.md

This file was deleted.

81 changes: 53 additions & 28 deletions sidebars/sidebars-cli.js
Expand Up @@ -35,32 +35,38 @@ module.exports = {
},
{
type: 'category',
label: 'Client SDK',
label: 'Web SDK',
collapsed: true,
collapsible: true,
items: [
{
type: 'link',
label: 'Installation',
href: '/react/installation',
href: '/react-ui-kit/installation',
},
{
type: 'link',
label: 'Usage',
href: '/react/usage',
},
{
type: 'link',
label: 'Sample app',
href: '/react/sample-app',
label: 'Quickstart',
href: '/react-ui-kit/quickstart',
},
{
type: 'link',
label: 'Reference',
href: '/react/reference/dyte-meeting',
href: '/web-core/Reference/DyteClient',
},
],
},
{
type: 'category',
label: 'Plugins',
collapsed: true,
collapsible: true,
items: [{
type: 'link',
label: 'Plugins',
href: '/docs/plugins',
}],
},
{
type: 'category',
label: 'API Reference',
Expand All @@ -77,36 +83,55 @@ module.exports = {
{
type: 'category',
label: 'Dyte CLI',
items: [
'installation',
'getting-started',
'meetings',
'recording',
'plugins',
'webhooks',
]
},
{
type: 'category',
label: 'Product Integration Guides',
collapsed: true,
collapsible: true,
items: [
{
type: 'doc',
id: 'installation',
label: 'Installation'
type: 'link',
label: 'Integrating with Webhooks',
href: '/guides/integrating-with-webhooks',
},
{
type: 'doc',
id: 'getting-started',
label: 'Getting started'
type: 'link',
label: 'Recording your meetings via Dyte',
href: '/guides/recording-your-meetings',
},
{
type: 'doc',
id: 'meetings',
label: 'Creating meetings'
type: 'link',
label: 'Livestreaming Dyte Meetings to other platforms',
href: '/guides/livestreaming-other-platforms',
},
{
type: 'doc',
id: 'recording',
label: 'Recording a meeting'
type: 'link',
label: 'Livestreaming Dyte Meeting to HLS',
href: '/guides/livestreaming-rtmp-hls',
},
{
type: 'doc',
id: 'plugins',
label: 'Publishing plugins'
type: 'link',
label: 'Livestreaming any RTMP input using Dyte',
href: '/guides/livestreaming-any-rtmp-streams',
},
{
type: 'doc',
id: 'webhooks',
label: 'Creating webhooks'
type: 'link',
label: 'Dyte Embed',
href: '/guides/embed',
},
{
type: 'link',
label: 'Controlling an Active Session',
href: '/guides/controlling-an-active-session'
},
],
},
Expand Down
64 changes: 54 additions & 10 deletions sidebars/sidebars-guides.js
Expand Up @@ -35,32 +35,38 @@ module.exports = {
},
{
type: 'category',
label: 'Client SDK',
label: 'Web SDK',
collapsed: true,
collapsible: true,
items: [
{
type: 'link',
label: 'Installation',
href: '/react/installation',
href: '/react-ui-kit/installation',
},
{
type: 'link',
label: 'Usage',
href: '/react/usage',
},
{
type: 'link',
label: 'Sample app',
href: '/react/sample-app',
label: 'Quickstart',
href: '/react-ui-kit/quickstart',
},
{
type: 'link',
label: 'Reference',
href: '/react/reference/dyte-meeting',
href: '/web-core/Reference/DyteClient',
},
],
},
{
type: 'category',
label: 'Plugins',
collapsed: true,
collapsible: true,
items: [{
type: 'link',
label: 'Plugins',
href: '/docs/plugins',
}],
},
{
type: 'category',
label: 'API Reference',
Expand All @@ -74,6 +80,44 @@ module.exports = {
},
],
},
{
type: 'category',
label: 'Dyte CLI',
collapsed: true,
collapsible: true,
items: [
{
type: 'link',
label: 'Installation',
href: '/cli/installation'
},
{
type: 'link',
label: 'Getting started',
href: '/cli/getting-started'
},
{
type: 'link',
label: 'Creating meetings',
href: '/cli/meetings'
},
{
type: 'link',
label: 'Recording a meeting',
href: '/cli/recording'
},
{
type: 'link',
label: 'Publishing plugins',
href: '/cli/plugins'
},
{
type: 'link',
label: 'Creating webhooks',
href: '/cli/webhooks'
},
]
},
{
type: 'category',
label: 'Product Integration Guides',
Expand Down

0 comments on commit 951f1ab

Please sign in to comment.