mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
* refactor(module): provide basic endpoint id url * fix(stacks): fix route to include endpointId * fix(stacks): fix stacks urls * fix(sidebar): fix urls to docker routes * refactor(app): set endpoint id on change view * refactor(dashboard): revert to old version * refactor(sidebar): revert file * feat(app): wip load endpoint on route change * feat(home): show error * feat(app): load endpoint route * feat(sidebar): show endpoint per provider * refactor(app): revert * refactor(app): clean endpoint startup * feat(edge): check for edge k8s * refactor(endpoints): move all modules under endpoint route * refactor(stacks): move stacks route to docker * refactor(templates): move templates route to docker * refactor(app): check endpoint when entering docker module * fix(app): load endpoint when entering endpoints modules * feat(azure): check endpoint * feat(kubernetes): check endpoint * feat(home): show loading state when loading edge * style(app): revert small changes * refactor(sidebar): remove refernce to endpointId * fix(stacks): fix stacks route * style(docker): sort routes * feat(app): change route to home if endpoint failed * fix(services): guard against empty snapshots * feat(app): show error when failed to load endpoint * feat(app): reload home route when failing * refactor(router): replace resolvers with onEnter
63 lines
1.9 KiB
JavaScript
63 lines
1.9 KiB
JavaScript
angular.module('portainer.azure', ['portainer.app']).config([
|
|
'$stateRegistryProvider',
|
|
function ($stateRegistryProvider) {
|
|
'use strict';
|
|
|
|
var azure = {
|
|
name: 'azure',
|
|
url: '/azure',
|
|
parent: 'endpoint',
|
|
abstract: true,
|
|
/* ngInject */
|
|
async onEnter($state, endpoint, EndpointProvider, Notifications, StateManager) {
|
|
try {
|
|
EndpointProvider.setEndpointID(endpoint.Id);
|
|
EndpointProvider.setEndpointPublicURL(endpoint.PublicURL);
|
|
EndpointProvider.setOfflineModeFromStatus(endpoint.Status);
|
|
await StateManager.updateEndpointState(endpoint, []);
|
|
} catch (e) {
|
|
Notifications.error('Failed loading endpoint', e);
|
|
$state.go('portainer.home', {}, { reload: true });
|
|
}
|
|
},
|
|
};
|
|
|
|
var containerInstances = {
|
|
name: 'azure.containerinstances',
|
|
url: '/containerinstances',
|
|
views: {
|
|
'content@': {
|
|
templateUrl: './views/containerinstances/containerinstances.html',
|
|
controller: 'AzureContainerInstancesController',
|
|
},
|
|
},
|
|
};
|
|
|
|
var containerInstanceCreation = {
|
|
name: 'azure.containerinstances.new',
|
|
url: '/new/',
|
|
views: {
|
|
'content@': {
|
|
templateUrl: './views/containerinstances/create/createcontainerinstance.html',
|
|
controller: 'AzureCreateContainerInstanceController',
|
|
},
|
|
},
|
|
};
|
|
|
|
var dashboard = {
|
|
name: 'azure.dashboard',
|
|
url: '/dashboard',
|
|
views: {
|
|
'content@': {
|
|
templateUrl: './views/dashboard/dashboard.html',
|
|
controller: 'AzureDashboardController',
|
|
},
|
|
},
|
|
};
|
|
|
|
$stateRegistryProvider.register(azure);
|
|
$stateRegistryProvider.register(containerInstances);
|
|
$stateRegistryProvider.register(containerInstanceCreation);
|
|
$stateRegistryProvider.register(dashboard);
|
|
},
|
|
]);
|