mirror of
https://github.com/hexastack/hexabot
synced 2025-06-26 18:27:28 +00:00
101 lines
3.4 KiB
TypeScript
101 lines
3.4 KiB
TypeScript
/*
|
|
* Copyright © 2025 Hexastack. All rights reserved.
|
|
*
|
|
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
|
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
|
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
|
*/
|
|
|
|
import { Divider } from "@mui/material";
|
|
import { Controller, useFormContext } from "react-hook-form";
|
|
|
|
import { ContentContainer, ContentItem } from "@/app-components/dialogs";
|
|
import AutoCompleteEntitySelect from "@/app-components/inputs/AutoCompleteEntitySelect";
|
|
import { useTranslate } from "@/hooks/useTranslate";
|
|
import { EntityType, Format } from "@/services/types";
|
|
import { IBlockAttributes } from "@/types/block.types";
|
|
import { IChannel } from "@/types/channel.types";
|
|
import { ILabelFull } from "@/types/label.types";
|
|
|
|
import { useBlock } from "./BlockFormProvider";
|
|
import PatternsInput from "./inputs/triggers/PatternsInput";
|
|
|
|
export const TriggersForm = () => {
|
|
const block = useBlock();
|
|
const { t } = useTranslate();
|
|
const { control } = useFormContext<IBlockAttributes>();
|
|
|
|
return (
|
|
<ContentContainer>
|
|
<ContentItem>
|
|
<Controller
|
|
name="patterns"
|
|
control={control}
|
|
defaultValue={block?.patterns || []}
|
|
render={({ field }) => (
|
|
<PatternsInput
|
|
value={field?.value || []}
|
|
onChange={field.onChange}
|
|
minInput={1}
|
|
/>
|
|
)}
|
|
/>
|
|
</ContentItem>
|
|
<Divider orientation="horizontal" flexItem />
|
|
<ContentItem>
|
|
<Controller
|
|
name="trigger_labels"
|
|
control={control}
|
|
defaultValue={block?.trigger_labels || []}
|
|
render={({ field }) => {
|
|
const { onChange, ...rest } = field;
|
|
|
|
return (
|
|
<AutoCompleteEntitySelect<ILabelFull, "title">
|
|
searchFields={["title", "name"]}
|
|
entity={EntityType.LABEL}
|
|
format={Format.BASIC}
|
|
labelKey="title"
|
|
label={t("label.labeled_with")}
|
|
multiple={true}
|
|
onChange={(_e, selected, ..._) =>
|
|
onChange(selected.map(({ id }) => id))
|
|
}
|
|
{...rest}
|
|
/>
|
|
);
|
|
}}
|
|
/>
|
|
</ContentItem>
|
|
<ContentItem>
|
|
<Controller
|
|
name="trigger_channels"
|
|
control={control}
|
|
defaultValue={block?.trigger_channels || []}
|
|
render={({ field }) => {
|
|
const { onChange, ...rest } = field;
|
|
|
|
return (
|
|
<AutoCompleteEntitySelect<IChannel, "name">
|
|
searchFields={["name"]}
|
|
entity={EntityType.CHANNEL}
|
|
format={Format.BASIC}
|
|
idKey="name"
|
|
labelKey="name"
|
|
multiple={true}
|
|
onChange={(_e, selected, ..._) => {
|
|
onChange((selected || [])?.map(({ name }) => name));
|
|
}}
|
|
label={t("label.from_channels")}
|
|
{...rest}
|
|
/>
|
|
);
|
|
}}
|
|
/>
|
|
</ContentItem>
|
|
</ContentContainer>
|
|
);
|
|
};
|
|
|
|
TriggersForm.displayName = "TriggersForm";
|