2025-02-13 17:44:23 +03:00
|
|
|
|
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
|
|
|
|
|
|
|
|
|
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
|
|
|
// By default, Docusaurus generates a sidebar from the docs folder structure
|
2021-04-02 14:38:59 +03:00
|
|
|
|
docs: [
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
2021-05-26 21:26:09 +03:00
|
|
|
|
label: 'Общая информация',
|
|
|
|
|
collapsed: false,
|
2021-04-02 14:38:59 +03:00
|
|
|
|
items: [
|
2021-10-06 17:31:13 +03:00
|
|
|
|
'motivation',
|
2022-04-05 16:46:28 +03:00
|
|
|
|
'robossembler-overview',
|
|
|
|
|
'vacancies'
|
2021-05-26 21:26:09 +03:00
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
2024-12-03 07:22:58 +00:00
|
|
|
|
label: 'Аппаратное обеспечение',
|
2021-05-26 21:26:09 +03:00
|
|
|
|
items: [
|
2024-12-03 07:22:58 +00:00
|
|
|
|
{
|
|
|
|
|
type: 'link',
|
|
|
|
|
href: 'https://gitlab.com/robossembler/servo',
|
|
|
|
|
label: 'Сервопривод',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'link',
|
|
|
|
|
href: 'https://gitlab.com/robossembler/roboarm-diy-version',
|
|
|
|
|
label: 'Робот-манипулятор',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'link',
|
|
|
|
|
href: 'https://gitlab.com/robossembler/cnc/motor-wire-winder',
|
|
|
|
|
label: 'Станок намотки',
|
|
|
|
|
},
|
2021-05-27 19:14:33 +03:00
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
2024-12-03 07:22:58 +00:00
|
|
|
|
label: 'Программное обеспечение',
|
2021-05-27 19:14:33 +03:00
|
|
|
|
items: [
|
2024-12-03 07:22:58 +00:00
|
|
|
|
'robossembler-framework',
|
|
|
|
|
{
|
|
|
|
|
type: 'doc',
|
|
|
|
|
id: 'technologies/ASP-overview',
|
|
|
|
|
label: 'Генерация последовательности сборки',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'doc',
|
|
|
|
|
id: 'technologies/cad-cg-pipeline',
|
|
|
|
|
label: 'Экспорт моделей в виртуальные среды',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'doc',
|
|
|
|
|
id: 'technologies/plansys2',
|
|
|
|
|
label: 'Генерация технологических карт',
|
|
|
|
|
},
|
|
|
|
|
'software/dataset-generator',
|
|
|
|
|
'software/environment-manager',
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'Модуль исполнения планов',
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
type: 'doc',
|
|
|
|
|
id: 'software/ros2',
|
|
|
|
|
label: 'Архитектура',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'doc',
|
|
|
|
|
id: 'software/ros2/installation',
|
|
|
|
|
label: 'Установка',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'doc',
|
|
|
|
|
id: 'software/ros2/add_new_robot',
|
|
|
|
|
label: 'Добавление нового робота',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'doc',
|
|
|
|
|
id: 'software/ros2/prepare-and-execute-skill',
|
|
|
|
|
label: 'Создание и запуск навыка',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'doc',
|
|
|
|
|
id: 'software/webservice',
|
|
|
|
|
label: 'Веб-интерфейс',
|
|
|
|
|
},
|
2024-12-11 20:13:55 +00:00
|
|
|
|
{
|
|
|
|
|
type: 'doc',
|
|
|
|
|
id: 'software/usecases',
|
|
|
|
|
label: 'Сценарии использования',
|
|
|
|
|
},
|
2021-06-12 15:58:12 +03:00
|
|
|
|
],
|
|
|
|
|
},
|
2022-04-07 13:15:06 +00:00
|
|
|
|
/* {
|
|
|
|
|
type: 'category',
|
2024-12-03 07:22:58 +00:00
|
|
|
|
label: 'Прикладные решения',
|
2022-04-07 13:15:06 +00:00
|
|
|
|
items: [
|
|
|
|
|
'applications/beehive',
|
|
|
|
|
'applications/microalgae-garden',
|
|
|
|
|
'applications/sprouts-garden',
|
|
|
|
|
'applications/vegetable-garden'
|
|
|
|
|
],
|
|
|
|
|
}, */
|
2021-06-12 15:58:12 +03:00
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
2024-12-03 07:22:58 +00:00
|
|
|
|
label: 'Переводы статей, обзоры',
|
2021-06-12 15:58:12 +03:00
|
|
|
|
items: [
|
2024-12-03 07:22:58 +00:00
|
|
|
|
'technologies/cv-perception-methods',
|
|
|
|
|
'technologies/wrs2020-assembly-challenge',
|
|
|
|
|
'papers/mania-beetz-self-training-with-vr-2019',
|
|
|
|
|
'technologies/dds_and_ros2',
|
|
|
|
|
'papers/self-organization-in-robotic-welding',
|
|
|
|
|
'papers/smerobotics',
|
|
|
|
|
'papers/auto-assembly',
|
|
|
|
|
'technologies/mrs-robotics-assembly-review',
|
|
|
|
|
'technologies/machine-learning-in-robotics',
|
2021-04-02 14:38:59 +03:00
|
|
|
|
],
|
|
|
|
|
},
|
2021-06-12 15:58:12 +03:00
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
2024-12-03 07:22:58 +00:00
|
|
|
|
label: 'Самовоспроизводство техники',
|
2021-06-12 15:58:12 +03:00
|
|
|
|
items: [
|
2024-12-03 07:22:58 +00:00
|
|
|
|
{
|
|
|
|
|
type: 'doc',
|
|
|
|
|
id: 'replication',
|
|
|
|
|
label: 'Дорожная карта САС',
|
|
|
|
|
},
|
|
|
|
|
'analogy',
|
|
|
|
|
'mining',
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'Модели',
|
|
|
|
|
items: [
|
|
|
|
|
'models/generation/generation',
|
|
|
|
|
'models/growth/growth'
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'Технические решения',
|
|
|
|
|
items: [
|
|
|
|
|
'technologies/robonomics',
|
|
|
|
|
'autostorage',
|
|
|
|
|
'information/information_support',
|
|
|
|
|
'information/planner',
|
|
|
|
|
'technologies/wood',
|
|
|
|
|
{
|
|
|
|
|
type: 'doc',
|
|
|
|
|
id: 'technologies/recycling',
|
|
|
|
|
label: 'Мусор как сырьё',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
'glossary',
|
2021-06-12 15:58:12 +03:00
|
|
|
|
],
|
|
|
|
|
},
|
2021-05-26 21:26:09 +03:00
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'Разное',
|
|
|
|
|
items: [
|
2024-12-03 07:22:58 +00:00
|
|
|
|
'technologies/open-source-robots-and-tools',
|
2022-09-26 14:43:34 +03:00
|
|
|
|
'concept/engelmeyer',
|
2024-12-03 07:22:58 +00:00
|
|
|
|
'workflow-rules',
|
|
|
|
|
'technologies/knowledge-management',
|
|
|
|
|
'information/cfs-models-pub-in-nix'
|
2021-05-26 21:26:09 +03:00
|
|
|
|
],
|
|
|
|
|
},
|
2021-04-02 14:38:59 +03:00
|
|
|
|
],
|
2022-12-08 19:33:25 +03:00
|
|
|
|
};
|
2025-02-13 17:44:23 +03:00
|
|
|
|
|
|
|
|
|
export default sidebars;
|