You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
151 lines
4.6 KiB
TypeScript
151 lines
4.6 KiB
TypeScript
// Copyright (C) 2020 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { connect, Provider } from 'react-redux';
|
|
import { ExtendedKeyMapOptions } from 'react-hotkeys';
|
|
import { BrowserRouter } from 'react-router-dom';
|
|
|
|
import CVATApplication from 'components/cvat-app';
|
|
|
|
import createRootReducer from 'reducers/root-reducer';
|
|
import createCVATStore, { getCVATStore } from 'cvat-store';
|
|
import logger, { LogType } from 'cvat-logger';
|
|
|
|
import { authorizedAsync } from 'actions/auth-actions';
|
|
import { getFormatsAsync } from 'actions/formats-actions';
|
|
import { checkPluginsAsync } from 'actions/plugins-actions';
|
|
import { getUsersAsync } from 'actions/users-actions';
|
|
import { getAboutAsync } from 'actions/about-actions';
|
|
import { shortcutsActions } from 'actions/shortcuts-actions';
|
|
import {
|
|
resetErrors,
|
|
resetMessages,
|
|
} from './actions/notification-actions';
|
|
|
|
import {
|
|
CombinedState,
|
|
NotificationsState,
|
|
} from './reducers/interfaces';
|
|
|
|
createCVATStore(createRootReducer);
|
|
const cvatStore = getCVATStore();
|
|
|
|
interface StateToProps {
|
|
pluginsInitialized: boolean;
|
|
pluginsFetching: boolean;
|
|
userInitialized: boolean;
|
|
userFetching: boolean;
|
|
usersInitialized: boolean;
|
|
usersFetching: boolean;
|
|
aboutInitialized: boolean;
|
|
aboutFetching: boolean;
|
|
formatsInitialized: boolean;
|
|
formatsFetching: boolean;
|
|
installedAutoAnnotation: boolean;
|
|
installedTFSegmentation: boolean;
|
|
installedTFAnnotation: boolean;
|
|
notifications: NotificationsState;
|
|
user: any;
|
|
keyMap: Record<string, ExtendedKeyMapOptions>;
|
|
}
|
|
|
|
interface DispatchToProps {
|
|
loadFormats: () => void;
|
|
verifyAuthorized: () => void;
|
|
loadUsers: () => void;
|
|
loadAbout: () => void;
|
|
initPlugins: () => void;
|
|
resetErrors: () => void;
|
|
resetMessages: () => void;
|
|
switchShortcutsDialog: () => void;
|
|
}
|
|
|
|
function mapStateToProps(state: CombinedState): StateToProps {
|
|
const { plugins } = state;
|
|
const { auth } = state;
|
|
const { formats } = state;
|
|
const { users } = state;
|
|
const { about } = state;
|
|
const { shortcuts } = state;
|
|
|
|
return {
|
|
userInitialized: auth.initialized,
|
|
userFetching: auth.fetching,
|
|
pluginsInitialized: plugins.initialized,
|
|
pluginsFetching: plugins.fetching,
|
|
usersInitialized: users.initialized,
|
|
usersFetching: users.fetching,
|
|
aboutInitialized: about.initialized,
|
|
aboutFetching: about.fetching,
|
|
formatsInitialized: formats.initialized,
|
|
formatsFetching: formats.fetching,
|
|
installedAutoAnnotation: plugins.list.AUTO_ANNOTATION,
|
|
installedTFSegmentation: plugins.list.TF_SEGMENTATION,
|
|
installedTFAnnotation: plugins.list.TF_ANNOTATION,
|
|
notifications: state.notifications,
|
|
user: auth.user,
|
|
keyMap: shortcuts.keyMap,
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch: any): DispatchToProps {
|
|
return {
|
|
loadFormats: (): void => dispatch(getFormatsAsync()),
|
|
verifyAuthorized: (): void => dispatch(authorizedAsync()),
|
|
initPlugins: (): void => dispatch(checkPluginsAsync()),
|
|
loadUsers: (): void => dispatch(getUsersAsync()),
|
|
loadAbout: (): void => dispatch(getAboutAsync()),
|
|
resetErrors: (): void => dispatch(resetErrors()),
|
|
resetMessages: (): void => dispatch(resetMessages()),
|
|
switchShortcutsDialog: (): void => dispatch(shortcutsActions.switchShortcutsDialog()),
|
|
};
|
|
}
|
|
|
|
const ReduxAppWrapper = connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(CVATApplication);
|
|
|
|
ReactDOM.render(
|
|
(
|
|
<Provider store={cvatStore}>
|
|
<BrowserRouter>
|
|
<ReduxAppWrapper />
|
|
</BrowserRouter>
|
|
</Provider>
|
|
),
|
|
document.getElementById('root'),
|
|
);
|
|
|
|
window.onerror = (
|
|
message: Event | string,
|
|
source?: string,
|
|
lineno?: number,
|
|
colno?: number,
|
|
error?: Error,
|
|
) => {
|
|
if (typeof (message) === 'string' && source && typeof (lineno) === 'number' && (typeof (colno) === 'number') && error) {
|
|
const logPayload = {
|
|
filename: source,
|
|
line: lineno,
|
|
message: error.message,
|
|
column: colno,
|
|
stack: error.stack,
|
|
};
|
|
|
|
const store = getCVATStore();
|
|
const state: CombinedState = store.getState();
|
|
const { pathname } = window.location;
|
|
const re = RegExp(/\/tasks\/[0-9]+\/jobs\/[0-9]+$/);
|
|
const { instance: job } = state.annotation.job;
|
|
if (re.test(pathname) && job) {
|
|
job.logger.log(LogType.sendException, logPayload);
|
|
} else {
|
|
logger.log(LogType.sendException, logPayload);
|
|
}
|
|
}
|
|
};
|