mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
19 lines
755 B
TypeScript
19 lines
755 B
TypeScript
import * as React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import type { RedocRawOptions } from '../../src/services/RedocNormalizedOptions';
|
|
import { RedocStandalone } from '../../src';
|
|
|
|
const big = window.location.search.indexOf('big') > -1;
|
|
const swagger = window.location.search.indexOf('swagger') > -1;
|
|
|
|
const userUrl = window.location.search.match(/url=(.*)$/);
|
|
|
|
const specUrl =
|
|
(userUrl && userUrl[1]) || (swagger ? 'museum.yaml' : big ? 'big-openapi.json' : 'museum.yaml');
|
|
|
|
const options: RedocRawOptions = { nativeScrollbars: false, maxDisplayedEnumValues: 3 };
|
|
|
|
const container = document.getElementById('example');
|
|
const root = createRoot(container!);
|
|
root.render(<RedocStandalone specUrl={specUrl} options={options} />);
|