Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(#1251): Add file selector to demo application #1859

Merged
merged 5 commits into from
Jan 24, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions demo/components/FileInput.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
import * as yaml from 'js-yaml';
import * as React from 'react';
import { RefObject, useRef } from 'react';
import styled from '../../src/styled-components';

const Button = styled.button`
background-color: #fff;
color: #333;
padding: 2px 10px;
touch-action: manipulation;
cursor: pointer;
user-select: none;
border: 1px solid #ccc;
font-size: 16px;
height: 28px;
box-sizing: border-box;
vertical-align: middle;
line-height: 1;
outline: none;
white-space: nowrap;
@media (max-width: 699px) {
display: none;
}
`;

function GetUseRef(): RefObject<HTMLInputElement> {
return useRef<HTMLInputElement>(null);
}

const FileInput = props => {
Oprysk marked this conversation as resolved.
Show resolved Hide resolved
const hiddenFileInput: RefObject<HTMLInputElement> = GetUseRef();
Oprysk marked this conversation as resolved.
Show resolved Hide resolved

function handleClick() {
if (hiddenFileInput && hiddenFileInput.current) {
hiddenFileInput.current.click();
}
}

function uploadFile(event) {
Oprysk marked this conversation as resolved.
Show resolved Hide resolved
const file = event.target.files[0];
const reader = new FileReader();
reader.onload = () => {
props.onUpload(yaml.load(reader.result));
};
reader.readAsText(file);
}

return (
<span>
<Button onClick={handleClick}>Upload a file</Button>
<input type="file" style={{ display: 'none' }} onChange={uploadFile} ref={hiddenFileInput} />
</span>
);
};

export default FileInput;
16 changes: 14 additions & 2 deletions demo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import styled from 'styled-components';
import { resolve as urlResolve } from 'url';
import { RedocStandalone } from '../src';
import ComboBox from './ComboBox';
import FileInput from './components/FileInput';

const DEFAULT_SPEC = 'openapi.yaml';
const NEW_VERSION_SPEC = 'openapi-3-1.yaml';
Expand All @@ -22,7 +23,7 @@ const demos = [

class DemoApp extends React.Component<
{},
{ specUrl: string; dropdownOpen: boolean; cors: boolean }
{ spec: object | undefined; specUrl: string; dropdownOpen: boolean; cors: boolean }
> {
constructor(props) {
super(props);
Expand All @@ -40,15 +41,24 @@ class DemoApp extends React.Component<
}

this.state = {
spec: undefined,
specUrl: url,
dropdownOpen: false,
cors,
};
}

handleUploadFile = (spec: object) => {
this.setState({
spec,
specUrl: '',
});
};

handleChange = (url: string) => {
if (url === NEW_VERSION_SPEC) {
this.setState({ cors: false })
this.setState({ cors: false });
0;
}
this.setState({
specUrl: url,
Expand Down Expand Up @@ -90,6 +100,7 @@ class DemoApp extends React.Component<
/>
</a>
<ControlsContainer>
<FileInput onUpload={this.handleUploadFile} />
<ComboBox
placeholder={'URL to a spec to try'}
options={demos}
Expand All @@ -110,6 +121,7 @@ class DemoApp extends React.Component<
/>
</Heading>
<RedocStandalone
spec={this.state.spec}
specUrl={proxiedUrl}
options={{ scrollYOffset: 'nav', untrustedSpec: true }}
/>
Expand Down