114 lines
3 KiB
TypeScript
114 lines
3 KiB
TypeScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { edit, save, init, update, remove } from 'Duck/integrations/teams';
|
|
import { Form, Input, Button, Message } from 'UI';
|
|
import { confirm } from 'UI';
|
|
|
|
interface Props {
|
|
edit: (inst: any) => void;
|
|
save: (inst: any) => void;
|
|
init: (inst: any) => void;
|
|
update: (inst: any) => void;
|
|
remove: (id: string) => void;
|
|
onClose: () => void;
|
|
instance: any;
|
|
saving: boolean;
|
|
errors: any;
|
|
}
|
|
|
|
class TeamsAddForm extends React.PureComponent<Props> {
|
|
componentWillUnmount() {
|
|
this.props.init({});
|
|
}
|
|
|
|
save = () => {
|
|
const instance = this.props.instance;
|
|
if (instance.exists()) {
|
|
this.props.update(this.props.instance);
|
|
} else {
|
|
this.props.save(this.props.instance);
|
|
}
|
|
};
|
|
|
|
remove = async (id: string) => {
|
|
if (
|
|
await confirm({
|
|
header: 'Confirm',
|
|
confirmButton: 'Yes, delete',
|
|
confirmation: `Are you sure you want to permanently delete this channel?`,
|
|
})
|
|
) {
|
|
this.props.remove(id);
|
|
}
|
|
};
|
|
|
|
write = ({ target: { name, value } }: { target: { name: string, value: string }}) => this.props.edit({ [name]: value });
|
|
|
|
render() {
|
|
const { instance, saving, errors, onClose } = this.props;
|
|
return (
|
|
<div className="p-5" style={{ minWidth: '300px' }}>
|
|
<Form>
|
|
<Form.Field>
|
|
<label>Name</label>
|
|
<Input
|
|
name="name"
|
|
value={instance.name}
|
|
onChange={this.write}
|
|
placeholder="Enter any name"
|
|
type="text"
|
|
/>
|
|
</Form.Field>
|
|
<Form.Field>
|
|
<label>URL</label>
|
|
<Input
|
|
name="endpoint"
|
|
value={instance.endpoint}
|
|
onChange={this.write}
|
|
placeholder="Slack webhook URL"
|
|
type="text"
|
|
/>
|
|
</Form.Field>
|
|
<div className="flex justify-between">
|
|
<div className="flex">
|
|
<Button
|
|
onClick={this.save}
|
|
disabled={!instance.validate()}
|
|
loading={saving}
|
|
variant="primary"
|
|
className="float-left mr-2"
|
|
>
|
|
{instance.exists() ? 'Update' : 'Add'}
|
|
</Button>
|
|
|
|
<Button onClick={onClose}>{'Cancel'}</Button>
|
|
</div>
|
|
|
|
<Button onClick={() => this.remove(instance.webhookId)} disabled={!instance.exists()}>
|
|
{'Delete'}
|
|
</Button>
|
|
</div>
|
|
</Form>
|
|
|
|
{errors && (
|
|
<div className="my-3">
|
|
{errors.map((error: any) => (
|
|
<Message visible={errors} key={error}>
|
|
{error}
|
|
</Message>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default connect(
|
|
(state: any) => ({
|
|
instance: state.getIn(['teams', 'instance']),
|
|
saving: state.getIn(['teams', 'saveRequest', 'loading']),
|
|
errors: state.getIn(['teams', 'saveRequest', 'errors']),
|
|
}),
|
|
{ edit, save, init, remove, update }
|
|
)(TeamsAddForm);
|