mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-13 04:16:34 +03:00
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import * as React from 'react';
|
|
import { render } from 'react-dom';
|
|
import { AppContainer } from 'react-hot-loader';
|
|
// import DevTools from 'mobx-react-devtools';
|
|
|
|
import { Redoc, RedocProps } from '../../src/components/Redoc/Redoc';
|
|
import { AppStore } from '../../src/services/AppStore';
|
|
import { RedocRawOptions } from '../../src/services/RedocNormalizedOptions';
|
|
import { loadAndBundleSpec } from '../../src/utils/loadAndBundleSpec';
|
|
|
|
const renderRoot = (Component: typeof Redoc, props: RedocProps) =>
|
|
render(
|
|
<div>
|
|
<AppContainer>
|
|
<Component {...props} />
|
|
</AppContainer>
|
|
</div>,
|
|
document.getElementById('example'),
|
|
);
|
|
|
|
const big = window.location.search.indexOf('big') > -1;
|
|
const swagger = window.location.search.indexOf('swagger') > -1; // compatibility mode ?
|
|
|
|
const specUrl = swagger ? 'swagger.yaml' : big ? 'big-openapi.json' : 'openapi.yaml';
|
|
|
|
let store;
|
|
const options: RedocRawOptions = { nativeScrollbars: false };
|
|
|
|
async function init() {
|
|
const spec = await loadAndBundleSpec(specUrl);
|
|
store = new AppStore(spec, specUrl, options);
|
|
renderRoot(Redoc, { store });
|
|
}
|
|
|
|
init();
|
|
|
|
if (module.hot) {
|
|
const reload = (reloadStore = false) => async () => {
|
|
if (reloadStore) {
|
|
// create a new Store
|
|
store.dispose();
|
|
|
|
const state = await store.toJS();
|
|
store = AppStore.fromJS(state);
|
|
}
|
|
|
|
renderRoot(Redoc, { store });
|
|
};
|
|
|
|
module.hot.accept(['../../src/components/Redoc/Redoc'], reload());
|
|
module.hot.accept(['../../src/services/AppStore'], reload(true));
|
|
}
|