grafana/public/app/routes/routes.ts

416 lines
14 KiB
TypeScript
Raw Normal View History

2017-12-20 05:33:33 -06:00
import './dashboard_loaders';
import './ReactContainer';
import { applyRouteRegistrationHandlers } from './registry';
2019-02-04 06:49:14 -06:00
// Pages
2019-01-23 13:21:07 -06:00
import CreateFolderCtrl from 'app/features/folders/CreateFolderCtrl';
import FolderDashboardsCtrl from 'app/features/folders/FolderDashboardsCtrl';
import DashboardImportCtrl from 'app/features/manage-dashboards/DashboardImportCtrl';
Ldap: Add LDAP debug page (#18759) * Add items for navmodel and basic page * add reducer and actions * adding user mapping table component * adding components for ldap tables * add alert box on error * close error alert box * LDAP status page: connect APIs WIP * LDAP debug: fetch connection status from API * LDAP debug: fetch user info from API * LDAP debug: improve connection error view * LDAP debug: connection error tweaks * LDAP debug: fix role mapping view * LDAP debug: role mapping view tweaks * LDAP debug: add bulk-sync button stub * LDAP debug: minor refactor * LDAP debug: show user teams * LDAP debug: user info refactor * LDAP debug: initial user page * LDAP debug: minor refactor, remove unused angular wrapper * LDAP debug: add sessions to user page * LDAP debug: tweak user page * LDAP debug: tweak view for disabled user * LDAP debug: get sync info from API * LDAP debug: user sync info * LDAP debug: sync user button * LDAP debug: clear error on page load * LDAP debug: add user last sync info * LDAP debug: actions refactor * LDAP debug: roles and teams style tweaks * Pass showAttributeMapping to LdapUserTeams * LDAP debug: hide bulk sync button * LDAP debug: refactor sessions component * LDAP debug: fix loading user sessions * LDAP debug: hide sync user button * LDAP debug: fix fetching unavailable /ldap-sync-status endpoint * LDAP debug: revert accidentally added fix * LDAP debug: show error when LDAP is not enabled * LDAP debug: refactor, move ldap components into ldap/ folder * LDAP debug: styles refactoring * LDAP debug: ldap reducer tests * LDAP debug: ldap user reducer tests * LDAP debug: fix connection error placement * Text update * LdapUser: Minor UI changes moving things around * AlertBox: Removed icon-on-top as everywhere else it is centered, want to have it be consistent
2019-09-16 10:56:01 -05:00
import LdapPage from 'app/features/admin/ldap/LdapPage';
import config from 'app/core/config';
import { ILocationProvider, route } from 'angular';
2019-02-04 06:49:14 -06:00
// Types
import { DashboardRouteInfo } from 'app/types';
import { LoginPage } from 'app/core/components/Login/LoginPage';
import { SafeDynamicImport } from '../core/components/DynamicImports/SafeDynamicImport';
2019-02-04 06:49:14 -06:00
/** @ngInject */
export function setupAngularRoutes($routeProvider: route.IRouteProvider, $locationProvider: ILocationProvider) {
2016-02-09 04:17:49 -06:00
$locationProvider.html5Mode(true);
// Routes here are guarded both here and server side for react-container routes or just on the server for angular
// ones. That means angular ones could be navigated to in case there is a client side link some where.
const importDashboardPage = () =>
SafeDynamicImport(import(/* webpackChunkName: "DashboardPage" */ '../features/dashboard/containers/DashboardPage'));
2016-02-09 04:17:49 -06:00
$routeProvider
2017-12-20 05:33:33 -06:00
.when('/', {
2019-02-03 07:53:42 -06:00
template: '<react-container />',
//@ts-ignore
2017-12-20 05:33:33 -06:00
pageClass: 'page-dashboard',
2019-02-04 06:49:14 -06:00
routeInfo: DashboardRouteInfo.Home,
2019-02-03 07:53:42 -06:00
reloadOnSearch: false,
resolve: {
component: importDashboardPage,
2019-02-03 07:53:42 -06:00
},
})
.when('/d/:uid/:slug', {
2019-02-02 12:23:19 -06:00
template: '<react-container />',
pageClass: 'page-dashboard',
2019-02-04 06:49:14 -06:00
routeInfo: DashboardRouteInfo.Normal,
2019-02-02 12:23:19 -06:00
reloadOnSearch: false,
resolve: {
component: importDashboardPage,
2019-02-02 12:23:19 -06:00
},
})
.when('/d/:uid', {
2019-02-03 07:53:42 -06:00
template: '<react-container />',
pageClass: 'page-dashboard',
2019-02-03 07:53:42 -06:00
reloadOnSearch: false,
2019-02-04 06:49:14 -06:00
routeInfo: DashboardRouteInfo.Normal,
2019-02-03 07:53:42 -06:00
resolve: {
component: importDashboardPage,
2019-02-03 07:53:42 -06:00
},
})
2017-12-20 05:33:33 -06:00
.when('/dashboard/:type/:slug', {
2019-02-03 07:53:42 -06:00
template: '<react-container />',
pageClass: 'page-dashboard',
2019-02-04 10:36:04 -06:00
routeInfo: DashboardRouteInfo.Normal,
2019-02-04 06:49:14 -06:00
reloadOnSearch: false,
resolve: {
component: importDashboardPage,
2019-02-04 06:49:14 -06:00
},
})
.when('/dashboard/new', {
template: '<react-container />',
pageClass: 'page-dashboard',
routeInfo: DashboardRouteInfo.New,
2019-02-03 07:53:42 -06:00
reloadOnSearch: false,
resolve: {
component: importDashboardPage,
2019-02-03 07:53:42 -06:00
},
})
.when('/d-solo/:uid/:slug', {
template: '<react-container />',
pageClass: 'dashboard-solo',
routeInfo: DashboardRouteInfo.Normal,
reloadOnSearch: false,
resolve: {
component: () =>
SafeDynamicImport(
import(/* webpackChunkName: "SoloPanelPage" */ '../features/dashboard/containers/SoloPanelPage')
),
},
})
.when('/d-solo/:uid', {
template: '<react-container />',
pageClass: 'dashboard-solo',
2019-02-04 06:49:14 -06:00
routeInfo: DashboardRouteInfo.Normal,
reloadOnSearch: false,
resolve: {
component: () =>
SafeDynamicImport(
import(/* webpackChunkName: "SoloPanelPage" */ '../features/dashboard/containers/SoloPanelPage')
),
},
})
2017-12-20 05:33:33 -06:00
.when('/dashboard-solo/:type/:slug', {
template: '<react-container />',
pageClass: 'dashboard-solo',
2019-02-04 10:36:04 -06:00
routeInfo: DashboardRouteInfo.Normal,
reloadOnSearch: false,
resolve: {
component: () =>
SafeDynamicImport(
import(/* webpackChunkName: "SoloPanelPage" */ '../features/dashboard/containers/SoloPanelPage')
),
},
})
2017-12-20 05:33:33 -06:00
.when('/dashboard/import', {
templateUrl: 'public/app/features/manage-dashboards/partials/dashboard_import.html',
controller: DashboardImportCtrl,
2017-12-20 05:33:33 -06:00
controllerAs: 'ctrl',
})
.when('/datasources', {
template: '<react-container />',
resolve: {
component: () =>
SafeDynamicImport(
import(/* webpackChunkName: "DataSourcesListPage"*/ 'app/features/datasources/DataSourcesListPage')
),
},
2017-12-20 05:33:33 -06:00
})
2018-10-24 09:17:25 -05:00
.when('/datasources/edit/:id/', {
template: '<react-container />',
reloadOnSearch: false, // for tabs
2018-10-24 09:17:25 -05:00
resolve: {
component: () =>
SafeDynamicImport(
import(
/* webpackChunkName: "DataSourceSettingsPage"*/ '../features/datasources/settings/DataSourceSettingsPage'
)
),
2018-10-24 09:17:25 -05:00
},
})
2018-01-18 10:42:40 -06:00
.when('/datasources/edit/:id/dashboards', {
2018-10-08 07:09:02 -05:00
template: '<react-container />',
resolve: {
component: () =>
SafeDynamicImport(
import(/* webpackChunkName: "DataSourceDashboards"*/ 'app/features/datasources/DataSourceDashboards')
),
2018-10-08 07:09:02 -05:00
},
2017-12-20 05:33:33 -06:00
})
.when('/datasources/new', {
2018-10-02 09:18:42 -05:00
template: '<react-container />',
resolve: {
component: () =>
SafeDynamicImport(
import(/* webpackChunkName: "NewDataSourcePage"*/ '../features/datasources/NewDataSourcePage')
),
2018-10-02 09:18:42 -05:00
},
2017-12-20 05:33:33 -06:00
})
.when('/dashboards', {
templateUrl: 'public/app/features/manage-dashboards/partials/dashboard_list.html',
2017-12-20 05:33:33 -06:00
controller: 'DashboardListCtrl',
controllerAs: 'ctrl',
})
.when('/dashboards/folder/new', {
2019-01-23 13:21:07 -06:00
templateUrl: 'public/app/features/folders/partials/create_folder.html',
controller: CreateFolderCtrl,
2017-12-20 05:33:33 -06:00
controllerAs: 'ctrl',
})
.when('/dashboards/f/:uid/:slug/permissions', {
template: '<react-container />',
resolve: {
component: () =>
SafeDynamicImport(
import(/* webpackChunkName: "FolderPermissions"*/ 'app/features/folders/FolderPermissions')
),
},
})
.when('/dashboards/f/:uid/:slug/settings', {
template: '<react-container />',
resolve: {
component: () =>
SafeDynamicImport(
import(/* webpackChunkName: "FolderSettingsPage"*/ 'app/features/folders/FolderSettingsPage')
),
},
})
.when('/dashboards/f/:uid/:slug', {
2019-01-23 13:21:07 -06:00
templateUrl: 'public/app/features/folders/partials/folder_dashboards.html',
controller: FolderDashboardsCtrl,
2017-12-20 05:33:33 -06:00
controllerAs: 'ctrl',
})
.when('/dashboards/f/:uid', {
templateUrl: 'public/app/features/folders/partials/folder_dashboards.html',
controller: FolderDashboardsCtrl,
controllerAs: 'ctrl',
})
.when('/explore', {
2018-04-26 04:58:42 -05:00
template: '<react-container />',
reloadOnSearch: false,
2018-04-26 04:58:42 -05:00
resolve: {
roles: () => (config.viewersCanEdit ? [] : ['Editor', 'Admin']),
component: () => SafeDynamicImport(import(/* webpackChunkName: "explore" */ 'app/features/explore/Wrapper')),
2018-04-26 04:58:42 -05:00
},
})
.when('/a/:pluginId/', {
// Someday * and will get a ReactRouter under that path!
template: '<react-container />',
reloadOnSearch: false,
resolve: {
component: () =>
SafeDynamicImport(import(/* webpackChunkName: "AppRootPage" */ 'app/features/plugins/AppRootPage')),
},
})
2017-12-20 05:33:33 -06:00
.when('/org', {
2018-10-25 00:45:22 -05:00
template: '<react-container />',
resolve: {
component: () =>
SafeDynamicImport(import(/* webpackChunkName: "OrgDetailsPage" */ '../features/org/OrgDetailsPage')),
2018-10-25 00:45:22 -05:00
},
2017-12-20 05:33:33 -06:00
})
.when('/org/new', {
templateUrl: 'public/app/features/org/partials/newOrg.html',
controller: 'NewOrgCtrl',
})
.when('/org/users', {
2018-10-03 02:43:10 -05:00
template: '<react-container />',
resolve: {
component: () =>
SafeDynamicImport(import(/* webpackChunkName: "UsersListPage" */ 'app/features/users/UsersListPage')),
2018-10-03 02:43:10 -05:00
},
2017-12-20 05:33:33 -06:00
})
.when('/org/users/invite', {
templateUrl: 'public/app/features/org/partials/invite.html',
controller: 'UserInviteCtrl',
controllerAs: 'ctrl',
})
.when('/org/apikeys', {
2018-09-25 09:23:43 -05:00
template: '<react-container />',
resolve: {
roles: () => ['Editor', 'Admin'],
component: () =>
SafeDynamicImport(import(/* webpackChunkName: "ApiKeysPage" */ 'app/features/api-keys/ApiKeysPage')),
2018-09-25 09:23:43 -05:00
},
})
2017-12-20 05:33:33 -06:00
.when('/org/teams', {
template: '<react-container />',
resolve: {
roles: () => (config.editorsCanAdmin ? [] : ['Editor', 'Admin']),
component: () => SafeDynamicImport(import(/* webpackChunkName: "TeamList" */ 'app/features/teams/TeamList')),
},
2017-12-20 05:33:33 -06:00
})
.when('/org/teams/new', {
2018-10-31 14:21:16 -05:00
templateUrl: 'public/app/features/teams/partials/create_team.html',
controller: 'CreateTeamCtrl',
controllerAs: 'ctrl',
})
.when('/org/teams/edit/:id/:page?', {
template: '<react-container />',
resolve: {
roles: () => (config.editorsCanAdmin ? [] : ['Admin']),
component: () => SafeDynamicImport(import(/* webpackChunkName: "TeamPages" */ 'app/features/teams/TeamPages')),
},
2017-12-20 05:33:33 -06:00
})
.when('/profile', {
templateUrl: 'public/app/features/profile/partials/profile.html',
2017-12-20 05:33:33 -06:00
controller: 'ProfileCtrl',
controllerAs: 'ctrl',
})
.when('/profile/password', {
template: '<react-container />',
resolve: {
component: () =>
SafeDynamicImport(
import(/* webPackChunkName: "ChangePasswordPage" */ 'app/features/profile/ChangePasswordPage')
),
},
2017-12-20 05:33:33 -06:00
})
.when('/profile/select-org', {
templateUrl: 'public/app/features/org/partials/select_org.html',
controller: 'SelectOrgCtrl',
})
// ADMIN
2017-12-20 05:33:33 -06:00
.when('/admin', {
templateUrl: 'public/app/features/admin/partials/admin_home.html',
controller: 'AdminHomeCtrl',
controllerAs: 'ctrl',
})
.when('/admin/settings', {
template: '<react-container />',
resolve: {
component: () =>
SafeDynamicImport(import(/* webpackChunkName: "AdminSettings" */ 'app/features/admin/AdminSettings')),
},
2017-12-20 05:33:33 -06:00
})
.when('/admin/users', {
templateUrl: 'public/app/features/admin/partials/users.html',
controller: 'AdminListUsersCtrl',
controllerAs: 'ctrl',
})
.when('/admin/users/create', {
templateUrl: 'public/app/features/admin/partials/new_user.html',
controller: 'AdminEditUserCtrl',
})
.when('/admin/users/edit/:id', {
templateUrl: 'public/app/features/admin/partials/edit_user.html',
controller: 'AdminEditUserCtrl',
})
.when('/admin/orgs', {
templateUrl: 'public/app/features/admin/partials/orgs.html',
controller: 'AdminListOrgsCtrl',
controllerAs: 'ctrl',
})
.when('/admin/orgs/edit/:id', {
templateUrl: 'public/app/features/admin/partials/edit_org.html',
controller: 'AdminEditOrgCtrl',
controllerAs: 'ctrl',
})
.when('/admin/stats', {
template: '<react-container />',
resolve: {
component: () =>
SafeDynamicImport(import(/* webpackChunkName: "ServerStats" */ 'app/features/admin/ServerStats')),
},
})
Ldap: Add LDAP debug page (#18759) * Add items for navmodel and basic page * add reducer and actions * adding user mapping table component * adding components for ldap tables * add alert box on error * close error alert box * LDAP status page: connect APIs WIP * LDAP debug: fetch connection status from API * LDAP debug: fetch user info from API * LDAP debug: improve connection error view * LDAP debug: connection error tweaks * LDAP debug: fix role mapping view * LDAP debug: role mapping view tweaks * LDAP debug: add bulk-sync button stub * LDAP debug: minor refactor * LDAP debug: show user teams * LDAP debug: user info refactor * LDAP debug: initial user page * LDAP debug: minor refactor, remove unused angular wrapper * LDAP debug: add sessions to user page * LDAP debug: tweak user page * LDAP debug: tweak view for disabled user * LDAP debug: get sync info from API * LDAP debug: user sync info * LDAP debug: sync user button * LDAP debug: clear error on page load * LDAP debug: add user last sync info * LDAP debug: actions refactor * LDAP debug: roles and teams style tweaks * Pass showAttributeMapping to LdapUserTeams * LDAP debug: hide bulk sync button * LDAP debug: refactor sessions component * LDAP debug: fix loading user sessions * LDAP debug: hide sync user button * LDAP debug: fix fetching unavailable /ldap-sync-status endpoint * LDAP debug: revert accidentally added fix * LDAP debug: show error when LDAP is not enabled * LDAP debug: refactor, move ldap components into ldap/ folder * LDAP debug: styles refactoring * LDAP debug: ldap reducer tests * LDAP debug: ldap user reducer tests * LDAP debug: fix connection error placement * Text update * LdapUser: Minor UI changes moving things around * AlertBox: Removed icon-on-top as everywhere else it is centered, want to have it be consistent
2019-09-16 10:56:01 -05:00
.when('/admin/ldap', {
template: '<react-container />',
resolve: {
component: () => LdapPage,
},
})
// LOGIN / SIGNUP
2017-12-20 05:33:33 -06:00
.when('/login', {
template: '<react-container/>',
resolve: {
component: () => LoginPage,
},
2017-12-20 05:33:33 -06:00
pageClass: 'login-page sidemenu-hidden',
})
.when('/invite/:code', {
templateUrl: 'public/app/partials/signup_invited.html',
controller: 'InvitedCtrl',
pageClass: 'sidemenu-hidden',
})
.when('/signup', {
templateUrl: 'public/app/partials/signup_step2.html',
controller: 'SignUpCtrl',
pageClass: 'sidemenu-hidden',
})
.when('/user/password/send-reset-email', {
templateUrl: 'public/app/partials/reset_password.html',
controller: 'ResetPasswordCtrl',
pageClass: 'sidemenu-hidden',
})
.when('/user/password/reset', {
templateUrl: 'public/app/partials/reset_password.html',
controller: 'ResetPasswordCtrl',
pageClass: 'sidemenu-hidden',
})
.when('/dashboard/snapshots', {
templateUrl: 'public/app/features/manage-dashboards/partials/snapshot_list.html',
controller: 'SnapshotListCtrl',
2017-12-20 05:33:33 -06:00
controllerAs: 'ctrl',
})
.when('/plugins', {
2018-09-25 07:53:55 -05:00
template: '<react-container />',
resolve: {
component: () =>
SafeDynamicImport(import(/* webpackChunkName: "PluginListPage" */ 'app/features/plugins/PluginListPage')),
2018-09-25 07:53:55 -05:00
},
2017-12-20 05:33:33 -06:00
})
.when('/plugins/:pluginId/', {
template: '<react-container />',
reloadOnSearch: false, // tabs from query parameters
resolve: {
component: () =>
SafeDynamicImport(import(/* webpackChunkName: "PluginPage" */ '../features/plugins/PluginPage')),
},
2017-12-20 05:33:33 -06:00
})
.when('/plugins/:pluginId/page/:slug', {
templateUrl: 'public/app/features/plugins/partials/plugin_page.html',
controller: 'AppPageCtrl',
controllerAs: 'ctrl',
})
.when('/styleguide/:page?', {
controller: 'StyleGuideCtrl',
controllerAs: 'ctrl',
2018-09-10 06:38:45 -05:00
templateUrl: 'public/app/features/admin/partials/styleguide.html',
2017-12-20 05:33:33 -06:00
})
.when('/alerting', {
redirectTo: '/alerting/list',
})
.when('/alerting/list', {
template: '<react-container />',
reloadOnSearch: false,
resolve: {
component: () =>
SafeDynamicImport(import(/* webpackChunkName: "AlertRuleList" */ 'app/features/alerting/AlertRuleList')),
},
})
2017-12-20 05:33:33 -06:00
.when('/alerting/notifications', {
templateUrl: 'public/app/features/alerting/partials/notifications_list.html',
2017-12-20 05:33:33 -06:00
controller: 'AlertNotificationsListCtrl',
controllerAs: 'ctrl',
})
2017-12-20 05:33:33 -06:00
.when('/alerting/notification/new', {
templateUrl: 'public/app/features/alerting/partials/notification_edit.html',
2017-12-20 05:33:33 -06:00
controller: 'AlertNotificationEditCtrl',
controllerAs: 'ctrl',
})
2017-12-20 05:33:33 -06:00
.when('/alerting/notification/:id/edit', {
templateUrl: 'public/app/features/alerting/partials/notification_edit.html',
2017-12-20 05:33:33 -06:00
controller: 'AlertNotificationEditCtrl',
controllerAs: 'ctrl',
})
.otherwise({
2017-12-20 05:33:33 -06:00
templateUrl: 'public/app/partials/error.html',
controller: 'ErrorCtrl',
});
applyRouteRegistrationHandlers($routeProvider);
2016-02-09 04:17:49 -06:00
}