portainer/app/docker/react/views/index.ts

23 lines
866 B
TypeScript

import angular from 'angular';
import { ItemView as NetworksItemView } from '@/react/docker/networks/ItemView';
import { r2a } from '@/react-tools/react2angular';
import { withCurrentUser } from '@/react-tools/withCurrentUser';
import { withUIRouter } from '@/react-tools/withUIRouter';
import { DashboardView } from '@/react/docker/DashboardView/DashboardView';
import { ListView } from '@/react/docker/events/ListView';
import { containersModule } from './containers';
export const viewsModule = angular
.module('portainer.docker.react.views', [containersModule])
.component(
'dockerDashboardView',
r2a(withUIRouter(withCurrentUser(DashboardView)), [])
)
.component('eventsListView', r2a(withUIRouter(withCurrentUser(ListView)), []))
.component(
'networkDetailsView',
r2a(withUIRouter(withCurrentUser(NetworksItemView)), [])
).name;