2022-01-27 22:02:41 -08:00
|
|
|
import React, { useState } from 'react';
|
|
|
|
import styled from 'styled-components';
|
|
|
|
import { message, Button, Input, Modal, Typography, Form, Collapse, Tag } from 'antd';
|
|
|
|
import { useCreateDomainMutation } from '../../graphql/domain.generated';
|
2022-02-17 04:30:54 +05:30
|
|
|
import { useEnterKeyListener } from '../shared/useEnterKeyListener';
|
2022-01-27 22:02:41 -08:00
|
|
|
|
|
|
|
const SuggestedNamesGroup = styled.div`
|
|
|
|
margin-top: 12px;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const ClickableTag = styled(Tag)`
|
|
|
|
:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
visible: boolean;
|
|
|
|
onClose: () => void;
|
|
|
|
onCreate: (id: string | undefined, name: string, description: string) => void;
|
|
|
|
};
|
|
|
|
|
|
|
|
const SUGGESTED_DOMAIN_NAMES = ['Engineering', 'Marketing', 'Sales', 'Product'];
|
|
|
|
|
|
|
|
export default function CreateDomainModal({ visible, onClose, onCreate }: Props) {
|
|
|
|
const [stagedName, setStagedName] = useState('');
|
|
|
|
const [stagedDescription, setStagedDescription] = useState('');
|
|
|
|
const [stagedId, setStagedId] = useState<string | undefined>(undefined);
|
|
|
|
const [createDomainMutation] = useCreateDomainMutation();
|
|
|
|
|
|
|
|
const onCreateDomain = () => {
|
|
|
|
createDomainMutation({
|
|
|
|
variables: {
|
|
|
|
input: {
|
|
|
|
id: stagedId,
|
|
|
|
name: stagedName,
|
|
|
|
description: stagedDescription,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
message.destroy();
|
|
|
|
message.error({ content: `Failed to create Domain!: \n ${e.message || ''}`, duration: 3 });
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
message.success({
|
|
|
|
content: `Created domain!`,
|
|
|
|
duration: 3,
|
|
|
|
});
|
|
|
|
onCreate(stagedId, stagedName, stagedDescription);
|
|
|
|
setStagedName('');
|
|
|
|
setStagedDescription('');
|
|
|
|
setStagedId(undefined);
|
|
|
|
});
|
|
|
|
onClose();
|
|
|
|
};
|
|
|
|
|
2022-02-17 04:30:54 +05:30
|
|
|
// Handle the Enter press
|
|
|
|
useEnterKeyListener({
|
|
|
|
querySelectorToExecuteClick: '#createDomainButton',
|
|
|
|
});
|
|
|
|
|
2022-01-27 22:02:41 -08:00
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
title="Create new Domain"
|
|
|
|
visible={visible}
|
|
|
|
onCancel={onClose}
|
|
|
|
footer={
|
|
|
|
<>
|
|
|
|
<Button onClick={onClose} type="text">
|
|
|
|
Cancel
|
|
|
|
</Button>
|
2022-02-17 04:30:54 +05:30
|
|
|
<Button id="createDomainButton" onClick={onCreateDomain} disabled={stagedName === ''}>
|
2022-01-27 22:02:41 -08:00
|
|
|
Create
|
|
|
|
</Button>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Form layout="vertical">
|
|
|
|
<Form.Item name="name" label={<Typography.Text strong>Name</Typography.Text>}>
|
|
|
|
<Typography.Paragraph>Give your new Domain a name. </Typography.Paragraph>
|
|
|
|
<Input
|
|
|
|
placeholder="A name for your domain"
|
|
|
|
value={stagedName}
|
|
|
|
onChange={(event) => setStagedName(event.target.value)}
|
|
|
|
/>
|
|
|
|
<SuggestedNamesGroup>
|
|
|
|
{SUGGESTED_DOMAIN_NAMES.map((name) => {
|
|
|
|
return <ClickableTag onClick={() => setStagedName(name)}>{name}</ClickableTag>;
|
|
|
|
})}
|
|
|
|
</SuggestedNamesGroup>
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item name="description" label={<Typography.Text strong>Description</Typography.Text>}>
|
|
|
|
<Typography.Paragraph>
|
|
|
|
An optional description for your new domain. You can change this later.
|
|
|
|
</Typography.Paragraph>
|
|
|
|
<Input
|
|
|
|
placeholder="A description for your domain"
|
|
|
|
value={stagedDescription}
|
|
|
|
onChange={(event) => setStagedDescription(event.target.value)}
|
|
|
|
/>
|
|
|
|
</Form.Item>
|
|
|
|
<Collapse ghost>
|
|
|
|
<Collapse.Panel header={<Typography.Text type="secondary">Advanced</Typography.Text>} key="1">
|
|
|
|
<Form.Item label={<Typography.Text strong>Domain Id</Typography.Text>}>
|
|
|
|
<Typography.Paragraph>
|
|
|
|
By default, a random UUID will be generated to uniquely identify this domain. If
|
|
|
|
you'd like to provide a custom id instead to more easily keep track of this domain,
|
|
|
|
you may provide it here. Be careful, you cannot easily change the domain id after
|
|
|
|
creation.
|
|
|
|
</Typography.Paragraph>
|
|
|
|
<Input
|
|
|
|
placeholder="engineering"
|
|
|
|
value={stagedId || ''}
|
|
|
|
onChange={(event) => setStagedId(event.target.value)}
|
|
|
|
/>
|
|
|
|
</Form.Item>
|
|
|
|
</Collapse.Panel>
|
|
|
|
</Collapse>
|
|
|
|
</Form>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|