[openstack][skyline]Menu route problem.

Nguyễn Hữu Khôi nguyenhuukhoinw at gmail.com
Tue Sep 19 08:50:44 UTC 2023


Hello.
I resolve my problem by add some things related with new menu to

https://github.com/openstack/skyline-console/blob/master/src/pages/basic/routes/index.js

I think we need update docs,

Nguyen Huu Khoi


On Tue, Sep 19, 2023 at 1:10 PM Nguyễn Hữu Khôi <nguyenhuukhoinw at gmail.com>
wrote:

> Hello guys.
> I update,
> When I do similarly things with user-menu. It worked. I just have problem
> when Add item on Console menu.
> Nguyen Huu Khoi
>
>
> On Sun, Sep 17, 2023 at 2:16 PM Nguyễn Hữu Khôi <nguyenhuukhoinw at gmail.com>
> wrote:
>
>> Hello guys.
>>
>> I am working on Skyline and I followed
>>
>>
>> https://github.com/openstack/skyline-console/blob/master/docs/en/develop/3-12-Menu-introduction.md
>>
>>
>> https://github.com/openstack/skyline-console/blob/master/docs/en/develop/3-13-Route-introduction.md
>>
>> I add layouts/menu.jsx
>> #####
>>    {
>>       path: '/konitor',
>>       name: t('Konitor'),
>>       key: /konitor',
>>       icon: <DatabaseOutlined />,
>>       children: [
>>         {
>>           path: '/konitor/konitork',
>>           name: t('Konitork'),
>>           key: 'konitork',
>>           level: 1,
>>         }
>>       ],
>>     }
>>
>> I put my component in
>>
>> pages/konitor/containers/Konitork/index.jsx
>>
>> #######
>> import React, { Component } from 'react';
>> import { inject, observer } from 'mobx-react';
>>
>>
>> export class Konitork extends Component {
>>    render() {
>>     return (
>>       <div>nhk oi</div>
>>     );
>>   }
>> }
>> export default observer(Konitork);
>>
>> Here is my routes/index.js
>>
>> #####
>>
>> import BaseLayout from '../../../layouts/Basic';
>> import Konitork from '../containers/Konitork';
>> import Instance from  '../containers/Instance';
>> const PATH = '/konitor';
>> export default [
>>   {
>>     path: PATH,
>>     component: BaseLayout,
>>     routes: [
>>       { path: `${PATH}/konitork`, component: Konitork, exact: true },
>>     ],
>>   },
>> ];
>>
>> When click on Menu. Konitor>>Konitork. It return 404. although I have
>> x.x.x.x:9999/konitor/konitork.
>>
>> Pls correct me. Thank you much.
>>
>> Nguyen Huu Khoi
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.openstack.org/pipermail/openstack-discuss/attachments/20230919/0ef7436b/attachment-0001.htm>


More information about the openstack-discuss mailing list