* esm * wip * wip * wip * wip * wip * wip * subscription notice * wip * wip * wip * fix envs * fix: update docker build * fix * esm/types * delete dashboard :D * add patches to dockerfiles * update packages + catalogs + ts * wip * remove native libs * ts * improvements * fix redirects and fetching session * try fix favicon * fixes * fix * order and resize reportds within a dashboard * improvements * wip * added userjot to dashboard * fix * add op * wip * different cache key * improve date picker * fix table * event details loading * redo onboarding completely * fix login * fix * fix * extend session, billing and improve bars * fix * reduce price on 10M
353 lines
10 KiB
TypeScript
353 lines
10 KiB
TypeScript
import type { RouterOutputs } from '@/trpc/client';
|
|
|
|
import { SheetContent } from '@/components/ui/sheet';
|
|
import { useQueryClient } from '@tanstack/react-query';
|
|
|
|
import { toast } from 'sonner';
|
|
import { popModal } from '.';
|
|
import { ModalHeader } from './Modal/Container';
|
|
|
|
import { ColorSquare } from '@/components/color-square';
|
|
import { InputWithLabel, WithLabel } from '@/components/forms/input-with-label';
|
|
import { PureFilterItem } from '@/components/report/sidebar/filters/FilterItem';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Combobox } from '@/components/ui/combobox';
|
|
import { ComboboxAdvanced } from '@/components/ui/combobox-advanced';
|
|
import { ComboboxEvents } from '@/components/ui/combobox-events';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
import { useAppParams } from '@/hooks/use-app-params';
|
|
import { useEventNames } from '@/hooks/use-event-names';
|
|
import { useEventProperties } from '@/hooks/use-event-properties';
|
|
import { useTRPC } from '@/integrations/trpc/react';
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { shortId } from '@openpanel/common';
|
|
import { zCreateNotificationRule } from '@openpanel/validation';
|
|
import { useMutation, useQuery } from '@tanstack/react-query';
|
|
import { FilterIcon, PlusIcon, SaveIcon, TrashIcon } from 'lucide-react';
|
|
import {
|
|
Controller,
|
|
type SubmitHandler,
|
|
type UseFormReturn,
|
|
useFieldArray,
|
|
useForm,
|
|
useWatch,
|
|
} from 'react-hook-form';
|
|
import type { z } from 'zod';
|
|
|
|
interface Props {
|
|
rule?: RouterOutputs['notification']['rules'][number];
|
|
}
|
|
|
|
type IForm = z.infer<typeof zCreateNotificationRule>;
|
|
|
|
export default function AddNotificationRule({ rule }: Props) {
|
|
const client = useQueryClient();
|
|
const { organizationId, projectId } = useAppParams();
|
|
const form = useForm<IForm>({
|
|
resolver: zodResolver(zCreateNotificationRule),
|
|
defaultValues: {
|
|
id: rule?.id ?? '',
|
|
name: rule?.name ?? '',
|
|
sendToApp: rule?.sendToApp ?? false,
|
|
sendToEmail: rule?.sendToEmail ?? false,
|
|
integrations:
|
|
rule?.integrations.map((integration) => integration.id) ?? [],
|
|
projectId,
|
|
template: rule?.template ?? '',
|
|
config: rule?.config ?? {
|
|
type: 'events',
|
|
events: [
|
|
{
|
|
name: '',
|
|
segment: 'event',
|
|
filters: [],
|
|
},
|
|
],
|
|
},
|
|
},
|
|
});
|
|
const trpc = useTRPC();
|
|
const mutation = useMutation(
|
|
trpc.notification.createOrUpdateRule.mutationOptions({
|
|
onSuccess() {
|
|
toast.success(
|
|
rule ? 'Notification rule updated' : 'Notification rule created',
|
|
);
|
|
client.refetchQueries(
|
|
trpc.notification.rules.queryFilter({
|
|
projectId,
|
|
}),
|
|
);
|
|
popModal();
|
|
},
|
|
}),
|
|
);
|
|
const integrationsQuery = useQuery(
|
|
trpc.integration.list.queryOptions({
|
|
organizationId: organizationId!,
|
|
}),
|
|
);
|
|
|
|
const eventsArray = useFieldArray({
|
|
control: form.control,
|
|
name: 'config.events',
|
|
});
|
|
|
|
const onSubmit: SubmitHandler<IForm> = (data) => {
|
|
if (!data.config.events[0]?.name) {
|
|
toast.error('At least one event is required');
|
|
return;
|
|
}
|
|
mutation.mutate(data);
|
|
};
|
|
|
|
const integrations = integrationsQuery.data ?? [];
|
|
|
|
return (
|
|
<SheetContent className="[&>button.absolute]:hidden">
|
|
<ModalHeader title={rule ? 'Edit rule' : 'Create rule'} />
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className="col gap-4">
|
|
<InputWithLabel
|
|
label="Rule name"
|
|
placeholder="Eg. Sign ups on android"
|
|
error={form.formState.errors.name?.message}
|
|
{...form.register('name')}
|
|
/>
|
|
|
|
<WithLabel
|
|
label="Type"
|
|
// @ts-expect-error
|
|
error={form.formState.errors.config?.type.message}
|
|
>
|
|
<Controller
|
|
control={form.control}
|
|
name="config.type"
|
|
render={({ field }) => (
|
|
<Combobox
|
|
{...field}
|
|
className="w-full"
|
|
placeholder="Select type"
|
|
// @ts-expect-error
|
|
error={form.formState.errors.config?.type.message}
|
|
items={[
|
|
{
|
|
label: 'Events',
|
|
value: 'events',
|
|
},
|
|
{
|
|
label: 'Funnel',
|
|
value: 'funnel',
|
|
},
|
|
]}
|
|
/>
|
|
)}
|
|
/>
|
|
</WithLabel>
|
|
<WithLabel label="Events">
|
|
<div className="col gap-2">
|
|
{eventsArray.fields.map((field, index) => {
|
|
return (
|
|
<EventField
|
|
key={field.id}
|
|
form={form}
|
|
index={index}
|
|
remove={() => eventsArray.remove(index)}
|
|
/>
|
|
);
|
|
})}
|
|
<Button
|
|
className="self-start"
|
|
variant={'outline'}
|
|
icon={PlusIcon}
|
|
onClick={() =>
|
|
eventsArray.append({
|
|
name: '',
|
|
filters: [],
|
|
segment: 'event',
|
|
})
|
|
}
|
|
>
|
|
Add event
|
|
</Button>
|
|
</div>
|
|
</WithLabel>
|
|
|
|
<WithLabel
|
|
label="Template"
|
|
info={
|
|
<div className="prose dark:prose-invert">
|
|
<p>
|
|
Customize your notification message. You can grab any property
|
|
from your event.
|
|
</p>
|
|
|
|
<ul>
|
|
<li>
|
|
<code>{'{{name}}'}</code> - The name of the event
|
|
</li>
|
|
<li>
|
|
<code>{'{{rule_name}}'}</code> - The name of the rule
|
|
</li>
|
|
<li>
|
|
<code>{'{{properties.your.property}}'}</code> - Get the value
|
|
of a custom property
|
|
</li>
|
|
<li>
|
|
<code>{'{{profile.firstName}}'}</code> - Get the value of a
|
|
profile property
|
|
</li>
|
|
<li>
|
|
<div className="flex gap-x-2 flex-wrap">
|
|
And many more...
|
|
<code>profileId</code>
|
|
<code>createdAt</code>
|
|
<code>country</code>
|
|
<code>city</code>
|
|
<code>os</code>
|
|
<code>osVersion</code>
|
|
<code>browser</code>
|
|
<code>browserVersion</code>
|
|
<code>device</code>
|
|
<code>brand</code>
|
|
<code>model</code>
|
|
<code>path</code>
|
|
<code>origin</code>
|
|
<code>referrer</code>
|
|
<code>referrerName</code>
|
|
<code>referrerType</code>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
}
|
|
>
|
|
<Textarea
|
|
{...form.register('template')}
|
|
placeholder="You received a new '$EVENT_NAME' event"
|
|
/>
|
|
</WithLabel>
|
|
|
|
<Controller
|
|
control={form.control}
|
|
name="integrations"
|
|
render={({ field }) => (
|
|
<WithLabel label="Integrations">
|
|
<ComboboxAdvanced
|
|
{...field}
|
|
value={field.value ?? []}
|
|
className="w-full"
|
|
placeholder="Pick integrations"
|
|
items={integrations.map((integration) => ({
|
|
label: integration.name,
|
|
value: integration.id,
|
|
}))}
|
|
/>
|
|
</WithLabel>
|
|
)}
|
|
/>
|
|
|
|
<Button type="submit" icon={SaveIcon}>
|
|
{rule ? 'Update' : 'Create'}
|
|
</Button>
|
|
</form>
|
|
</SheetContent>
|
|
);
|
|
}
|
|
|
|
function EventField({
|
|
form,
|
|
index,
|
|
remove,
|
|
}: {
|
|
form: UseFormReturn<IForm>;
|
|
index: number;
|
|
remove: () => void;
|
|
}) {
|
|
const { projectId } = useAppParams();
|
|
const eventNames = useEventNames({ projectId });
|
|
const filtersArray = useFieldArray({
|
|
control: form.control,
|
|
name: `config.events.${index}.filters`,
|
|
});
|
|
const eventName = useWatch({
|
|
control: form.control,
|
|
name: `config.events.${index}.name`,
|
|
});
|
|
const properties = useEventProperties({ projectId });
|
|
|
|
return (
|
|
<div className="border bg-def-100 rounded">
|
|
<div className="row gap-2 items-center p-2">
|
|
<ColorSquare>{index + 1}</ColorSquare>
|
|
<Controller
|
|
control={form.control}
|
|
name={`config.events.${index}.name`}
|
|
render={({ field }) => (
|
|
<ComboboxEvents
|
|
searchable
|
|
className="flex-1"
|
|
value={field.value}
|
|
placeholder="Select event"
|
|
onChange={field.onChange}
|
|
items={eventNames}
|
|
/>
|
|
)}
|
|
/>
|
|
<Combobox
|
|
searchable
|
|
placeholder="Select a filter"
|
|
value=""
|
|
items={properties.map((item) => ({
|
|
label: item,
|
|
value: item,
|
|
}))}
|
|
onChange={(value) => {
|
|
filtersArray.append({
|
|
id: shortId(),
|
|
name: value,
|
|
operator: 'is',
|
|
value: [],
|
|
});
|
|
}}
|
|
>
|
|
<Button variant={'outline'} icon={FilterIcon} size={'icon'} />
|
|
</Combobox>
|
|
<Button
|
|
onClick={() => {
|
|
remove();
|
|
}}
|
|
variant={'outline'}
|
|
className="text-destructive"
|
|
icon={TrashIcon}
|
|
size={'icon'}
|
|
/>
|
|
</div>
|
|
{filtersArray.fields.map((filter, index) => {
|
|
return (
|
|
<div key={filter.id} className="p-2 border-t">
|
|
<PureFilterItem
|
|
eventName={eventName}
|
|
filter={filter}
|
|
onRemove={() => {
|
|
filtersArray.remove(index);
|
|
}}
|
|
onChangeValue={(value) => {
|
|
filtersArray.update(index, {
|
|
...filter,
|
|
value,
|
|
});
|
|
}}
|
|
onChangeOperator={(operator) => {
|
|
filtersArray.update(index, {
|
|
...filter,
|
|
operator,
|
|
});
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|