mirror of
https://github.com/Redocly/redoc.git
synced 2024-12-03 22:03:43 +03:00
d7a1ec11d4
This reverts commit 98eec19647
.
96 lines
3.0 KiB
TypeScript
96 lines
3.0 KiB
TypeScript
import * as React from 'react';
|
|
import { ShelfIcon } from '../../common-elements';
|
|
import { OperationModel } from '../../services';
|
|
import { Markdown } from '../Markdown/Markdown';
|
|
import { OptionsContext } from '../OptionsProvider';
|
|
import { SelectOnClick } from '../SelectOnClick/SelectOnClick';
|
|
|
|
import { expandDefaultServerVariables, getBasePath } from '../../utils';
|
|
import {
|
|
EndpointInfo,
|
|
HttpVerb,
|
|
OperationEndpointWrap,
|
|
ServerItem,
|
|
ServerRelativeURL,
|
|
ServersOverlay,
|
|
ServerUrl,
|
|
} from './styled.elements';
|
|
|
|
export interface EndpointProps {
|
|
operation: OperationModel;
|
|
|
|
hideHostname?: boolean;
|
|
inverted?: boolean;
|
|
compact?: boolean;
|
|
}
|
|
|
|
export interface EndpointState {
|
|
expanded: boolean;
|
|
}
|
|
|
|
export class Endpoint extends React.Component<EndpointProps, EndpointState> {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
expanded: false,
|
|
};
|
|
}
|
|
|
|
toggle = () => {
|
|
this.setState({ expanded: !this.state.expanded });
|
|
};
|
|
|
|
render() {
|
|
const { operation, inverted, hideHostname } = this.props;
|
|
const { expanded } = this.state;
|
|
|
|
// TODO: highlight server variables, e.g. https://{user}.test.com
|
|
return (
|
|
<OptionsContext.Consumer>
|
|
{options => (
|
|
<OperationEndpointWrap>
|
|
<EndpointInfo onClick={this.toggle} expanded={expanded} inverted={inverted}>
|
|
<HttpVerb type={operation.httpVerb} compact={this.props.compact}>
|
|
{operation.httpVerb}
|
|
</HttpVerb>
|
|
<ServerRelativeURL>{operation.path}</ServerRelativeURL>
|
|
<ShelfIcon
|
|
float={'right'}
|
|
color={inverted ? 'black' : 'white'}
|
|
size={'20px'}
|
|
direction={expanded ? 'up' : 'down'}
|
|
style={{ marginRight: '-25px' }}
|
|
/>
|
|
</EndpointInfo>
|
|
<ServersOverlay expanded={expanded} aria-hidden={!expanded}>
|
|
{operation.servers.map(server => {
|
|
const normalizedUrl = options.expandDefaultServerVariables
|
|
? expandDefaultServerVariables(server.url, server.variables)
|
|
: server.url;
|
|
const basePath = getBasePath(normalizedUrl);
|
|
return (
|
|
<ServerItem key={normalizedUrl}>
|
|
<Markdown source={server.description || ''} compact={true} />
|
|
<SelectOnClick>
|
|
<ServerUrl>
|
|
<span>
|
|
{hideHostname || options.hideHostname
|
|
? basePath === '/'
|
|
? ''
|
|
: basePath
|
|
: normalizedUrl}
|
|
</span>
|
|
{operation.path}
|
|
</ServerUrl>
|
|
</SelectOnClick>
|
|
</ServerItem>
|
|
);
|
|
})}
|
|
</ServersOverlay>
|
|
</OperationEndpointWrap>
|
|
)}
|
|
</OptionsContext.Consumer>
|
|
);
|
|
}
|
|
}
|