Edit and create seem to more or less work (including selection of the parent). Delete is pending.

This commit is contained in:
Tomas Bures 2017-06-07 01:13:15 +02:00
parent 61893d77f6
commit 5b82d3b540
12 changed files with 322 additions and 176 deletions

View file

@ -6,8 +6,7 @@ import { I18nextProvider } from 'react-i18next';
import i18n from '../lib/i18n';
import { Section } from '../lib/page'
import Create from './Create'
import Edit from './Edit'
import CreateOrEdit from './CreateOrEdit'
import List from './List'
const getStructure = t => ({
@ -23,12 +22,12 @@ const getStructure = t => ({
'edit' : {
title: t('Edit Namespace'),
params: [':nsId'],
component: Edit
render: props => (<CreateOrEdit edit {...props} />)
},
'create' : {
title: t('Create Namespace'),
link: '/namespaces/create',
component: Create
render: props => (<CreateOrEdit {...props} />)
}
}
}