mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-04-28 23:19:40 +00:00
This refactor the UI components from class based element into function based elements. This makes it possible to use hooks that are used now by most React components. This also updates React and Ant to the latest versions (+ other dependencies).
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
import { Link } from "react-router-dom";
|
|
|
|
import { Col, Card, Popconfirm } from "antd";
|
|
import { PlusOutlined, EditOutlined, DeleteOutlined } from "@ant-design/icons";
|
|
|
|
import { Application, DeleteIftttIntegrationRequest } from "@chirpstack/chirpstack-api-grpc-web/api/application_pb";
|
|
|
|
import ApplicationStore from "../../../stores/ApplicationStore";
|
|
|
|
interface IProps {
|
|
application: Application;
|
|
add?: boolean;
|
|
}
|
|
|
|
function IftttCard(props: IProps) {
|
|
const onDelete = () => {
|
|
let req = new DeleteIftttIntegrationRequest();
|
|
req.setApplicationId(props.application.getId());
|
|
ApplicationStore.deleteIftttIntegration(req, () => {});
|
|
};
|
|
|
|
let actions: any[] = [];
|
|
|
|
if (!!props.add) {
|
|
actions = [
|
|
<Link to="ifttt/create">
|
|
<PlusOutlined />
|
|
</Link>,
|
|
];
|
|
} else {
|
|
actions = [
|
|
<Link to="ifttt/edit">
|
|
<EditOutlined />
|
|
</Link>,
|
|
<Popconfirm title="Are you sure you want to delete this integration?" onConfirm={onDelete}>
|
|
<DeleteOutlined />
|
|
</Popconfirm>,
|
|
];
|
|
}
|
|
|
|
return (
|
|
<Col span={8}>
|
|
<Card
|
|
title="IFTTT"
|
|
className="integration-card"
|
|
cover={<img alt="IFTTT" src="/integrations/ifttt.png" style={{ padding: 1 }} />}
|
|
actions={actions}
|
|
>
|
|
<Card.Meta description="The IFTTT integration forwards events to the IFTTT Webhooks integration." />
|
|
</Card>
|
|
</Col>
|
|
);
|
|
}
|
|
|
|
export default IftttCard;
|