Files
skyline-console/src/core/index.jsx
Jingwei.Zhang c960f06c1a feat: Support client module
1. Add client module to request openstack api
2. Remove window.request, stores use client to request api
3. Remove window.globals, use globalRootStore to deal with user info

Change-Id: I5657cfd8cf142dbacce8716991f805bbbb4a9222
2021-08-24 15:58:45 +08:00

77 lines
2.4 KiB
JavaScript

// Copyright 2021 99cloud
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import React, { lazy, Suspense } from 'react';
import ReactDOM from 'react-dom';
import { createBrowserHistory } from 'history';
import { syncHistoryWithStore } from 'mobx-react-router';
// import { AppContainer } from 'react-hot-loader';
import { ConfigProvider } from 'antd';
import zhCN from 'antd/es/locale/zh_CN';
import enUS from 'antd/es/locale/en_US';
import globalRootStore from 'stores/root';
import PageLoading from 'components/PageLoading';
import i18n from './i18n';
import App from './App';
window.t = i18n.t;
const store = globalRootStore;
const browserHistory = createBrowserHistory();
const history = syncHistoryWithStore(browserHistory, store.routing);
const lang = i18n.getLocale();
const localeProvider = lang === 'en' ? enUS : zhCN;
const render = (component) => {
ReactDOM.render(
<Suspense fallback={<PageLoading className="sl-page-loading" />}>
{/* <>{component}</> */}
<ConfigProvider locale={localeProvider}>{component}</ConfigProvider>
</Suspense>,
document.getElementById('app')
);
};
const getUser = async (callback) => {
if (window.location.pathname.indexOf('/login') < 0) {
try {
await store.getUserProfileAndPolicy();
} catch (e) {
// eslint-disable-next-line no-console
console.log(e);
store.gotoLoginPage();
} finally {
callback && callback();
}
return;
}
callback && callback();
};
getUser(() => {
render(<App rootStore={store} history={history} />);
});
module.hot &&
module.hot.accept('./App', () => {
const NextApp = lazy(() => import('./App'));
// eslint-disable-next-line import/no-extraneous-dependencies
const { AppContainer } = lazy(() => import('react-hot-loader'));
render(
<AppContainer>
<NextApp rootStore={store} history={history} />
</AppContainer>
);
});