Files
gpustack-ui/src/pages/backends/components/import-yaml.tsx
T

182 lines
4.8 KiB
TypeScript

import { PageAction } from '@/config';
import { PageActionType } from '@/config/types';
import useUserSettings from '@/hooks/use-user-settings';
import { ImportOutlined } from '@ant-design/icons';
import { useIntl } from '@umijs/max';
import { Button, message, Typography, Upload } from 'antd';
import { RcFile } from 'antd/lib/upload';
import React, {
forwardRef,
useImperativeHandle,
useRef,
useState
} from 'react';
import styled from 'styled-components';
import { yaml2Json, yamlTemplate } from '../config';
import YamlEditor from './yaml-editor';
const { Text } = Typography;
const ErrorText = styled(Text)`
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 4px 6px;
background-color: var(--ant-color-bg-elevated);
border-radius: 0 0 var(--ant-border-radius) var(--ant-border-radius);
`;
const Header = styled.div`
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
height: 40px;
padding-inline: 10px;
border-bottom: 1px solid var(--ant-color-border);
background-color: var(--ant-color-fill-tertiary);
`;
const Container = styled.div`
position: relative;
border: 1px solid var(--ant-color-border);
border-radius: var(--ant-border-radius);
.monaco-editor .scroll-decoration {
box-shadow: none;
}
`;
interface ImportYAMLProps {
ref?: any;
actionStatus: {
action: PageActionType;
isBuiltIn: boolean;
};
content?: string;
onSubmit?: (content: string) => void;
}
const ImportYAML: React.FC<ImportYAMLProps> = forwardRef(
({ actionStatus, content = '' }, ref) => {
const intl = useIntl();
const { userSettings } = useUserSettings();
const editorRef = useRef<any>(null);
const [fileContent, setFileContent] = useState<string>(
actionStatus.action === PageAction.CREATE ? yamlTemplate : content
);
const [error, setError] = useState<string>('');
const setContent = (val: string) => {
editorRef.current?.setValue?.(val);
};
const beforeUpload = (file: RcFile) => {
const isYaml =
file.type === 'application/x-yaml' ||
file.type === 'text/yaml' ||
file.name.endsWith('.yaml') ||
file.name.endsWith('.yml');
if (!isYaml) {
message.error('You can only upload YAML file!');
}
const reader = new FileReader();
reader.onload = (e) => {
const content = e.target?.result;
if (typeof content === 'string') {
setFileContent(content);
setContent(content);
} else {
message.error('Failed to read file content!');
}
};
reader.readAsText(file);
// Prevent upload
return false;
};
const validate = () => {
const markers = editorRef.current?.validate();
if (markers && markers.length > 0) {
setError(markers[0].message);
}
return markers.length === 0;
};
const getContent = () => {
try {
const content = editorRef.current?.getValue();
const jsonData = yaml2Json(content);
const exsistingVersions = Object.keys(jsonData.version_configs || {});
if (
actionStatus.isBuiltIn &&
exsistingVersions.find((v) => !v.endsWith('-custom'))
) {
setError(intl.formatMessage({ id: 'backend.version.no.tips' }));
return false;
}
if (
!actionStatus.isBuiltIn &&
actionStatus.action === PageAction.CREATE &&
!jsonData.backend_name.endsWith('-custom')
) {
setError(intl.formatMessage({ id: 'backend.backend.rules.custom' }));
return false;
}
return content;
} catch (error) {
return false;
}
};
const renderHeader = () => {
return (
<Header>
<span className="title">YAML</span>
<Upload
name="file"
multiple={false}
beforeUpload={beforeUpload}
showUploadList={false}
accept=".yaml,.yml,text/yaml,application/x-yaml"
>
<Button icon={<ImportOutlined />} type="text" size="small">
{intl.formatMessage({ id: 'common.button.import' })}
</Button>
</Upload>
</Header>
);
};
useImperativeHandle(ref, () => ({
getContent: () => {
return getContent();
},
setContent: setContent,
validate() {
return validate();
}
}));
return (
<Container>
<YamlEditor
ref={editorRef}
lang="yaml"
actionStatus={actionStatus}
theme={userSettings?.isDarkTheme ? 'vs-dark' : 'vs-light'}
value={fileContent}
height={'calc(100vh - 260px)'}
header={renderHeader()}
></YamlEditor>
{error && <ErrorText type="danger">{error}</ErrorText>}
</Container>
);
}
);
export default ImportYAML;