File size: 8,854 Bytes
ec4551b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | import React, { FC, Fragment, useCallback } from 'react';
import { useFetch } from '@gitroom/helpers/utils/custom.fetch';
import useSWR from 'swr';
import { Button } from '@gitroom/react/form/button';
import clsx from 'clsx';
import { useModals } from '@gitroom/frontend/components/layout/new-modal';
import { TopTitle } from '@gitroom/frontend/components/launches/helpers/top.title.component';
import { array, boolean, object, string } from 'yup';
import { FormProvider, useForm } from 'react-hook-form';
import { yupResolver } from '@hookform/resolvers/yup';
import { CopilotTextarea } from '@copilotkit/react-textarea';
import { Select } from '@gitroom/react/form/select';
import { useToaster } from '@gitroom/react/toaster/toaster';
import { useT } from '@gitroom/react/translation/get.transation.service.client';
import { deleteDialog } from '@gitroom/react/helpers/delete.dialog';
export const SignaturesComponent: FC<{
appendSignature?: (value: string) => void;
}> = (props) => {
const { appendSignature } = props;
const fetch = useFetch();
const modal = useModals();
const toaster = useToaster();
const load = useCallback(async () => {
return (await fetch('/signatures')).json();
}, []);
const { data, mutate } = useSWR('signatures', load);
const addSignature = useCallback(
(data?: any) => () => {
modal.openModal({
title: data ? 'Edit Signature' : 'Add Signature',
withCloseButton: true,
children: <AddOrRemoveSignature data={data} reload={mutate} />,
});
},
[mutate]
);
const deleteSignature = useCallback(
(data: any) => async () => {
if (
await deleteDialog(
t(
'are_you_sure_you_want_to_delete',
`Are you sure you want to delete?`,
{ name: data.content.slice(0, 15) + '...' }
)
)
) {
await fetch(`/signatures/${data.id}`, {
method: 'DELETE',
});
mutate();
toaster.show('Signature deleted successfully', 'success');
}
},
[]
);
const t = useT();
return (
<div className="flex flex-col">
<h3 className="text-[20px]">{t('signatures', 'Signatures')}</h3>
<div className="text-customColor18 mt-[4px]">
{t(
'you_can_add_signatures_to_your_account_to_be_used_in_your_posts',
'You can add signatures to your account to be used in your posts.'
)}
</div>
<div className="my-[16px] mt-[16px] bg-sixth border-fifth items-center border rounded-[4px] p-[24px] flex gap-[24px]">
<div className="flex flex-col w-full">
{!!data?.length && (
<div
className={`grid ${
!!appendSignature
? 'grid-cols-[1fr,1fr,1fr,1fr,1fr]'
: 'grid-cols-[1fr,1fr,1fr,1fr]'
} w-full gap-y-[10px]`}
>
<div>{t('content', 'Content')}</div>
<div className="text-center">{t('auto_add', 'Auto Add?')}</div>
{!!appendSignature && (
<div className="text-center">{t('actions', 'Actions')}</div>
)}
<div className="text-center">{t('edit', 'Edit')}</div>
<div className="text-center">{t('delete', 'Delete')}</div>
{data?.map((p: any) => (
<Fragment key={p.id}>
<div className="relative flex-1 me-[20px] overflow-x-hidden">
<div className="absolute start-0 line-clamp-1 top-[50%] -translate-y-[50%] text-ellipsis">
{p.content.slice(0, 15) + '...'}
</div>
</div>
<div className="flex flex-col justify-center relative me-[20px]">
<div className="text-center w-full absolute start-0 line-clamp-1 top-[50%] -translate-y-[50%]">
{p.autoAdd ? 'Yes' : 'No'}
</div>
</div>
{!!appendSignature && (
<div className="flex justify-center">
<Button onClick={() => appendSignature(p.content)}>
{t('use_signature', 'Use Signature')}
</Button>
</div>
)}
<div className="flex justify-center">
<div>
<Button onClick={addSignature(p)}>
{t('edit', 'Edit')}
</Button>
</div>
</div>
<div className="flex justify-center">
<div>
<Button onClick={deleteSignature(p)}>
{t('delete', 'Delete')}
</Button>
</div>
</div>
</Fragment>
))}
</div>
)}
<div>
<Button
onClick={addSignature()}
className={clsx((data?.length || 0) > 0 && 'my-[16px]')}
>
{t('add_a_signature', 'Add a signature')}
</Button>
</div>
</div>
</div>
</div>
);
};
const details = object().shape({
content: string().required(),
autoAdd: boolean().required(),
});
const AddOrRemoveSignature: FC<{
data?: any;
reload: () => void;
}> = (props) => {
const { data, reload } = props;
const toast = useToaster();
const fetch = useFetch();
const form = useForm({
resolver: yupResolver(details),
values: {
content: data?.content || '',
autoAdd: data?.autoAdd || false,
},
});
const text = form.watch('content');
const autoAdd = form.watch('autoAdd');
const modal = useModals();
const callBack = useCallback(
async (values: any) => {
await fetch(data?.id ? `/signatures/${data.id}` : '/signatures', {
method: data?.id ? 'PUT' : 'POST',
body: JSON.stringify(values),
});
toast.show(
data?.id
? 'Signature updated successfully'
: 'Signature added successfully',
'success'
);
modal.closeCurrent();
reload();
},
[data, modal]
);
const t = useT();
return (
<FormProvider {...form}>
<form onSubmit={form.handleSubmit(callBack)}>
<div className="relative flex gap-[20px] flex-col flex-1 rounded-[4px] pt-0">
<button
className="outline-none absolute end-[20px] top-[15px] mantine-UnstyledButton-root mantine-ActionIcon-root hover:bg-tableBorder cursor-pointer mantine-Modal-close mantine-1dcetaa"
type="button"
onClick={() => modal.closeCurrent()}
>
<svg
viewBox="0 0 15 15"
fill="none"
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
>
<path
d="M11.7816 4.03157C12.0062 3.80702 12.0062 3.44295 11.7816 3.2184C11.5571 2.99385 11.193 2.99385 10.9685 3.2184L7.50005 6.68682L4.03164 3.2184C3.80708 2.99385 3.44301 2.99385 3.21846 3.2184C2.99391 3.44295 2.99391 3.80702 3.21846 4.03157L6.68688 7.49999L3.21846 10.9684C2.99391 11.193 2.99391 11.557 3.21846 11.7816C3.44301 12.0061 3.80708 12.0061 4.03164 11.7816L7.50005 8.31316L10.9685 11.7816C11.193 12.0061 11.5571 12.0061 11.7816 11.7816C12.0062 11.557 12.0062 11.193 11.7816 10.9684L8.31322 7.49999L11.7816 4.03157Z"
fill="currentColor"
fillRule="evenodd"
clipRule="evenodd"
></path>
</svg>
</button>
<div className="relative bg-customColor2">
<CopilotTextarea
disableBranding={true}
className={clsx(
'!min-h-40 !max-h-80 p-2 overflow-x-hidden scrollbar scrollbar-thumb-[#612AD5] bg-bigStrip outline-none'
)}
value={text}
onChange={(e) => {
form.setValue('content', e.target.value);
}}
placeholder="Write your signature..."
autosuggestionsConfig={{
textareaPurpose: `Assist me in writing social media signature`,
chatApiConfigs: {},
}}
/>
</div>
<Select
label="Auto add signature?"
translationKey="label_auto_add_signature"
{...form.register('autoAdd', {
setValueAs: (value) => value === 'true',
})}
>
<option value="false">
{t('no', 'No')}
</option>
<option value="true">
{t('yes', 'Yes')}
</option>
</Select>
<Button type="submit">{t('save', 'Save')}</Button>
</div>
</form>
</FormProvider>
);
};
|