2017-10-12 00:01:37 +03:00
|
|
|
import * as React from 'react';
|
|
|
|
import { render } from 'react-dom';
|
2021-06-09 14:57:36 +03:00
|
|
|
import type { RedocRawOptions } from '../../src/services/RedocNormalizedOptions';
|
|
|
|
import RedocStandalone from './hot';
|
2017-10-12 00:01:37 +03:00
|
|
|
|
|
|
|
const big = window.location.search.indexOf('big') > -1;
|
2019-03-28 11:39:41 +03:00
|
|
|
const swagger = window.location.search.indexOf('swagger') > -1;
|
2017-10-12 00:01:37 +03:00
|
|
|
|
2019-03-28 11:39:41 +03:00
|
|
|
const userUrl = window.location.search.match(/url=(.*)$/);
|
|
|
|
|
|
|
|
const specUrl =
|
|
|
|
(userUrl && userUrl[1]) || (swagger ? 'swagger.yaml' : big ? 'big-openapi.json' : 'openapi.yaml');
|
2017-11-14 18:46:50 +03:00
|
|
|
|
2023-06-14 13:30:03 +03:00
|
|
|
const options: RedocRawOptions = {
|
|
|
|
nativeScrollbars: false,
|
|
|
|
maxDisplayedEnumValues: 3,
|
2023-06-21 19:55:11 +03:00
|
|
|
codeSamplesLanguages: ['json', 'xml', 'csv'],
|
2023-06-14 13:30:03 +03:00
|
|
|
};
|
2017-11-14 18:46:50 +03:00
|
|
|
|
2021-06-09 14:57:36 +03:00
|
|
|
render(<RedocStandalone specUrl={specUrl} options={options} />, document.getElementById('example'));
|