Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(billing): init the application #13631

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/manager/apps/billing/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"globals": {
"__VERSION__": true,
"__NG_APP_INJECTIONS__": true
}
}
Empty file.
72 changes: 72 additions & 0 deletions packages/manager/apps/billing/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"name": "@ovh-ux/manager-billing-app",
"version": "0.0.0",
"private": true,
"description": "OVHcloud Billing app",
"repository": {
"type": "git",
"url": "git+https://github.com/ovh/manager.git",
"directory": "packages/manager/apps/billing"
},
"license": "BSD-3-Clause",
"author": "OVH SAS",
"scripts": {
"build": "webpack --env production",
"dev": "webpack-dev-server",
"dev:watch": "yarn run dev",
"start": "lerna exec --stream --scope='@ovh-ux/manager-billing-app' --include-dependencies -- npm run build --if-present",
"start:dev": "lerna exec --stream --scope='@ovh-ux/manager-billing-app' --include-dependencies -- npm run dev --if-present",
"start:watch": "lerna exec --stream --parallel --scope='@ovh-ux/manager-billing-app' --include-dependencies -- npm run dev:watch --if-present"
},
"dependencies": {
"@ovh-ux/manager-at-internet-configuration": "^1.5.0",
"@ovh-ux/manager-billing": "^0.20.0-alpha.45",
"@ovh-ux/manager-config": "^7.0.0",
"@ovh-ux/manager-core": "^12.0.0 || ^13.0.0",
"@ovh-ux/manager-error-page": "^2.3.1",
"@ovh-ux/manager-ng-layout-helpers": "^2.6.1",
"@ovh-ux/ng-at-internet": "^5.11.13",
"@ovh-ux/ng-at-internet-ui-router-plugin": "^3.5.0",
"@ovh-ux/ng-ovh-api-wrappers": "^5.0.0",
"@ovh-ux/ng-ovh-http": "^5.0.0",
"@ovh-ux/ng-ovh-request-tagger": "^1.1.7",
"@ovh-ux/ng-ovh-sso-auth": "^4.6.3",
"@ovh-ux/ng-ovh-swimming-poll": "^5.0.6",
"@ovh-ux/ng-shell-tracking": "^0.2.1",
"@ovh-ux/ng-translate-async-loader": "^2.1.5",
"@ovh-ux/ng-ui-router-breadcrumb": "^1.1.7",
"@ovh-ux/request-tagger": "^0.1.1",
"@ovh-ux/shell": "^2.0.0",
"@ovh-ux/ui-kit": "^6.5.1",
"@uirouter/angularjs": "^1.0.23",
"angular": "^1.7.5",
"angular-aria": "^1.7.8",
"angular-cookies": "^1.7.8",
"angular-dynamic-locale": "^0.1.37",
"angular-i18n": "^1.7.8",
"angular-resource": "^1.7.8",
"angular-sanitize": "^1.7.8",
"angular-translate": "^2.18.1",
"angular-translate-loader-pluggable": "^1.3.1",
"core-js": "^3.6.5",
"flatpickr": "~4.6.3",
"jquery": "^2.1.3",
"lodash-es": "^4.17.15",
"oclazyload": "^1.1.0",
"ovh-api-services": "^16.0.0",
"regenerator-runtime": "^0.13.7",
"whatwg-fetch": "^3.5.0"
},
"devDependencies": {
"@ovh-ux/manager-webpack-config": "^6.1.1",
"glob": "^7.1.6",
"lodash": "^4.17.15",
"webpack": "^4.44.2",
"webpack-merge": "^4.2.2"
},
"regions": [
"CA",
"EU",
"US"
]
}
154 changes: 154 additions & 0 deletions packages/manager/apps/billing/src/app.module.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
import angular from 'angular';
import get from 'lodash/get';
import has from 'lodash/has';
import isString from 'lodash/isString';
import uiRouter, { RejectType } from '@uirouter/angularjs';
import '@ovh-ux/ui-kit';
import '@ovh-ux/ng-at-internet';
import { isTopLevelApplication } from '@ovh-ux/manager-config';
import { registerCoreModule } from '@ovh-ux/manager-core';
import ngOvhSsoAuth from '@ovh-ux/ng-ovh-sso-auth';
import ngUiRouterBreadcrumb from '@ovh-ux/ng-ui-router-breadcrumb';
import ovhManagerAtInternetConfiguration from '@ovh-ux/manager-at-internet-configuration';
import { registerAtInternet } from '@ovh-ux/ng-shell-tracking';
// TODO: Change to '@ovh-ux/manager-billing' when module is deployed
// import Billing from '@ovh-ux/manager-billing';
import Billing from '../../../modules/billing/src';
import errorPage from './error';

import TRACKING from './tracking/at-internet.constants';
import '@ovh-ux/ui-kit/dist/css/oui.css';

export default async (containerEl, shellClient) => {
const moduleName = 'BillingApp';

const routingConfig = /* @ngInject */ ($urlRouterProvider) => {
$urlRouterProvider.otherwise('/billing');
};

const trackingConfig = /* @ngInject */ (atInternetConfigurationProvider) => {
atInternetConfigurationProvider.setSkipInit(true);
atInternetConfigurationProvider.setPrefix('BillingApp');
};

const [environment, locale] = await Promise.all([
shellClient.environment.getEnvironment(),
shellClient.i18n.getLocale(),
]);

const coreCallbacks = {
onLocaleChange: (lang) => {
shellClient.i18n.setLocale(lang);
},
};

const ssoAuthConfig = /* @ngInject */ (ssoAuthenticationProvider) => {
ssoAuthenticationProvider.setOnLogin(() => {
shellClient.auth.login();
});
ssoAuthenticationProvider.setOnLogout(() => {
shellClient.auth.logout();
});
};

const calendarConfigProvider = /* @ngInject */ (
ouiCalendarConfigurationProvider,
) => {
const [lang] = locale.split('_');
return import(`flatpickr/dist/l10n/${lang}.js`)
.then((module) => {
ouiCalendarConfigurationProvider.setLocale(module.default[lang]);
})
.catch(() => {});
};

const broadcastAppStarted = /* @ngInject */ ($rootScope, $transitions) => {
const unregisterHook = $transitions.onSuccess({}, async () => {
if (!isTopLevelApplication()) {
await shellClient.ux.hidePreloader();
}
$rootScope.$broadcast('app:started');
unregisterHook();
});
};

const transitionsConfig = /* @ngInject */ ($transitions) => {
if (!isTopLevelApplication()) {
$transitions.onBefore({}, (transition) => {
if (
!transition.ignored() &&
transition.from().name !== '' &&
transition.entering().length > 0
) {
shellClient.ux.startProgress();
}
});

$transitions.onSuccess({}, () => {
shellClient.ux.stopProgress();
});

$transitions.onError({}, (transition) => {
if (!transition.error().redirected) {
shellClient.ux.stopProgress();
}
});
}
};

const defaultErrorHandler = /* @ngInject */ ($state) => {
$state.defaultErrorHandler((error) => {
if (error.type === RejectType.ERROR) {
$state.go(
'error',
{
detail: {
message: get(error.detail, 'data.message'),
code: has(error.detail, 'headers')
? error.detail.headers('x-ovh-queryId')
: null,
},
},
{ location: false },
);
}
});
};

angular
.module(
moduleName,
[
registerCoreModule(environment, coreCallbacks),
registerAtInternet(shellClient.tracking),
ovhManagerAtInternetConfiguration,
ngOvhSsoAuth,
ngUiRouterBreadcrumb,
'oui',
uiRouter,
errorPage,
Billing,
...get(__NG_APP_INJECTIONS__, environment.getRegion(), []),
].filter(isString),
)
.constant('shellClient', shellClient)
.config(
/* @ngInject */ ($locationProvider) => $locationProvider.hashPrefix(''),
)
.config(routingConfig)
.config(ssoAuthConfig)
.config(async () => {
await shellClient.tracking.setConfig(environment.getRegion(), TRACKING);
})
.config(trackingConfig)
.config(calendarConfigProvider)
.run(broadcastAppStarted)
.run(transitionsConfig)
.run(defaultErrorHandler);

angular.bootstrap(containerEl, [moduleName], {
strictDi: true,
});

return moduleName;
};
9 changes: 9 additions & 0 deletions packages/manager/apps/billing/src/error/error.module.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import managerErrorPage from '@ovh-ux/manager-error-page';

import routing from './error.routing';

const moduleName = 'ovhManagerBillingError';

angular.module(moduleName, [managerErrorPage]).config(routing);

export default moduleName;
17 changes: 17 additions & 0 deletions packages/manager/apps/billing/src/error/error.routing.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
export default /* @ngInject */ ($stateProvider) => {
$stateProvider.state('error', {
params: {
detail: null,
},
url: '/error',
component: 'managerErrorPage',
resolve: {
cancelLink: /* @ngInject */ ($state) => $state.href('app'),
error: /* @ngInject */ ($transition$) => $transition$.params(),
submitAction: /* @ngInject */ ($window) => () =>
$window.location.reload(),
translationsRefresh: /* @ngInject */ ($translate) => $translate.refresh(),
breadcrumb: () => null,
},
});
};
22 changes: 22 additions & 0 deletions packages/manager/apps/billing/src/error/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import angular from 'angular';
import '@uirouter/angularjs';
import 'oclazyload';

const moduleName = 'ovhManagerBillingErrorPageLazyLoading';

angular.module(moduleName, ['ui.router', 'oc.lazyLoad']).config(
/* @ngInject */ ($stateProvider) => {
$stateProvider.state('error.**', {
url: '/error',
lazyLoad: ($transition$) => {
const $ocLazyLoad = $transition$.injector().get('$ocLazyLoad');

return import('./error.module').then((mod) =>
$ocLazyLoad.inject(mod.default || mod),
);
},
});
},
);

export default moduleName;
16 changes: 16 additions & 0 deletions packages/manager/apps/billing/src/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Billing App</title>
<style type="text/css">
.ng-cloak {
display: none !important;
}
</style>
</head>
<body class="container-fluid">
<ui-router-breadcrumb></ui-router-breadcrumb>
<div data-ui-view></div>
</body>
</html>
29 changes: 29 additions & 0 deletions packages/manager/apps/billing/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import 'script-loader!jquery'; // eslint-disable-line
import 'core-js/stable';
import 'whatwg-fetch';
import 'regenerator-runtime/runtime';

import { isTopLevelApplication } from '@ovh-ux/manager-config';
import { defineApplicationVersion } from '@ovh-ux/request-tagger';

import { initShellClient } from '@ovh-ux/shell';

defineApplicationVersion(__VERSION__);

initShellClient('billing').then((shellClient) => {
if (!isTopLevelApplication()) {
shellClient.ux.startProgress();
}
shellClient.i18n.onLocaleChange(() => {
window.top.location.reload();
});
shellClient.environment.getEnvironment().then((environment) => {
environment.setVersion(__VERSION__);
import(`./config-${environment.getRegion()}`)
.catch(() => {})
.then(() => import('./app.module'))
.then(({ default: startApplication }) => {
startApplication(document.body, shellClient);
});
});
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export default {
EU: {
config: {
level2: '',
},
},
CA: {
config: {
level2: '',
},
},
};
Loading
Loading