Reports ported to ReactJS and Knex

Note that the interface for the custom JS code inside a report template has changed. It now offers promise-based interface and exposes knex.
This commit is contained in:
Tomas Bures 2017-07-13 13:27:03 +02:00
parent 6d95fa515e
commit d63eed9ca9
27 changed files with 649 additions and 953 deletions

View file

@ -10,10 +10,10 @@ export default class List extends Component {
render() {
const t = this.props.t;
const actionLinks = [
const actions = key => [
{
label: 'Edit',
link: key => '/namespaces/edit/' + key
link: '/namespaces/edit/' + key
}
];
@ -25,7 +25,7 @@ export default class List extends Component {
<Title>{t('Namespaces')}</Title>
<TreeTable withHeader dataUrl="/rest/namespaces-tree" actionLinks={actionLinks} />
<TreeTable withHeader dataUrl="/rest/namespaces-tree" actions={actions} />
</div>
);
}