64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
import angular from 'angular';
|
|
import { StateRegistry } from '@uirouter/angularjs';
|
|
|
|
import { r2a } from '@/react-tools/react2angular';
|
|
import {
|
|
ListView,
|
|
CreateView,
|
|
ItemView,
|
|
} from '@/react/portainer/environments/update-schedules';
|
|
import { withUIRouter } from '@/react-tools/withUIRouter';
|
|
import { withReactQuery } from '@/react-tools/withReactQuery';
|
|
import { withCurrentUser } from '@/react-tools/withCurrentUser';
|
|
|
|
export const updateSchedulesModule = angular
|
|
.module('portainer.edge.updateSchedules', [])
|
|
.component(
|
|
'updateSchedulesListView',
|
|
r2a(withUIRouter(withReactQuery(withCurrentUser(ListView))), [])
|
|
)
|
|
.component(
|
|
'updateSchedulesCreateView',
|
|
r2a(withUIRouter(withReactQuery(withCurrentUser(CreateView))), [])
|
|
)
|
|
.component(
|
|
'updateSchedulesItemView',
|
|
r2a(withUIRouter(withReactQuery(withCurrentUser(ItemView))), [])
|
|
)
|
|
.config(config).name;
|
|
|
|
function config($stateRegistryProvider: StateRegistry) {
|
|
$stateRegistryProvider.register({
|
|
name: 'portainer.endpoints.updateSchedules',
|
|
url: '/update-schedules',
|
|
views: {
|
|
'content@': {
|
|
component: 'updateSchedulesListView',
|
|
},
|
|
},
|
|
data: {
|
|
docs: '/admin/environments/update',
|
|
},
|
|
});
|
|
|
|
$stateRegistryProvider.register({
|
|
name: 'portainer.endpoints.updateSchedules.create',
|
|
url: '/update-schedules/new',
|
|
views: {
|
|
'content@': {
|
|
component: 'updateSchedulesCreateView',
|
|
},
|
|
},
|
|
});
|
|
|
|
$stateRegistryProvider.register({
|
|
name: 'portainer.endpoints.updateSchedules.item',
|
|
url: '/update-schedules/:id',
|
|
views: {
|
|
'content@': {
|
|
component: 'updateSchedulesItemView',
|
|
},
|
|
},
|
|
});
|
|
}
|