File size: 6,858 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 | 'use client';
import 'reflect-metadata';
import React, { FC, Fragment, useCallback, useMemo, useState } from 'react';
import { useFetch } from '@gitroom/helpers/utils/custom.fetch';
import useSWR from 'swr';
import { useUser } from '@gitroom/frontend/components/layout/user.context';
import { Button } from '@gitroom/react/form/button';
import { Input } from '@gitroom/react/form/input';
import { useToaster } from '@gitroom/react/toaster/toaster';
import clsx from 'clsx';
import { deleteDialog } from '@gitroom/react/helpers/delete.dialog';
import { useT } from '@gitroom/react/translation/get.transation.service.client';
import { AddEditModal } from '@gitroom/frontend/components/new-launch/add.edit.modal';
import { newDayjs } from '@gitroom/frontend/components/layout/set.timezone';
import { useModals } from '@gitroom/frontend/components/layout/new-modal';
const SaveSetModal: FC<{
postData: any;
initialValue?: string;
onSave: (name: string) => void;
onCancel: () => void;
}> = ({ postData, onSave, onCancel, initialValue }) => {
const [name, setName] = useState(initialValue);
const t = useT();
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
if (name.trim()) {
onSave(name.trim());
}
};
return (
<form onSubmit={handleSubmit} className="flex flex-col gap-4">
<div>
<Input
label="Set Name"
translationKey="label_set_name"
name="setName"
value={name}
disableForm={true}
onChange={(e) => setName(e.target.value)}
placeholder="Enter a name for this set"
autoFocus
/>
</div>
<div className="flex gap-2 justify-end">
<Button type="button" secondary onClick={onCancel}>
{t('cancel', 'Cancel')}
</Button>
<Button type="submit" disabled={!name.trim()}>
{t('save', 'Save')}
</Button>
</div>
</form>
);
};
export const Sets: FC = () => {
const fetch = useFetch();
const user = useUser();
const modal = useModals();
const toaster = useToaster();
const load = useCallback(async (path: string) => {
return (await (await fetch(path)).json()).integrations;
}, []);
const { isLoading, data: integrations } = useSWR('/integrations/list', load, {
revalidateOnFocus: false,
revalidateOnReconnect: false,
revalidateIfStale: false,
revalidateOnMount: true,
refreshWhenHidden: false,
refreshWhenOffline: false,
fallbackData: [],
});
const list = useCallback(async () => {
return (await fetch('/sets')).json();
}, []);
const { data, mutate } = useSWR('sets', list, {
revalidateOnFocus: false,
revalidateOnReconnect: false,
revalidateIfStale: false,
revalidateOnMount: true,
refreshWhenHidden: false,
refreshWhenOffline: false,
});
const addSet = useCallback(
(params?: { id?: string; name?: string; content?: string }) => () => {
modal.openModal({
id: 'add-edit-modal',
closeOnClickOutside: false,
removeLayout: true,
closeOnEscape: false,
withCloseButton: false,
askClose: true,
fullScreen: true,
classNames: {
modal: 'w-[100%] max-w-[1400px] text-textColor',
},
children: (
<AddEditModal
allIntegrations={integrations.map((p: any) => ({
...p,
}))}
{...(params?.id ? { set: JSON.parse(params.content) } : {})}
addEditSets={(data) => {
modal.openModal({
title: 'Save as Set',
children: (
<SaveSetModal
initialValue={params?.name || ''}
postData={data}
onSave={async (name: string) => {
try {
await fetch('/sets', {
method: 'POST',
body: JSON.stringify({
...(params?.id ? { id: params.id } : {}),
name,
content: JSON.stringify(data),
}),
});
modal.closeAll();
mutate();
toaster.show('Set saved successfully', 'success');
} catch (error) {
toaster.show('Failed to save set', 'warning');
}
}}
onCancel={() => modal.closeAll()}
/>
),
});
}}
reopenModal={() => {}}
mutate={() => {}}
integrations={integrations}
date={newDayjs()}
/>
),
title: ``,
});
},
[integrations]
);
const deleteSet = useCallback(
(data: any) => async () => {
if (await deleteDialog(`Are you sure you want to delete ${data.name}?`)) {
await fetch(`/sets/${data.id}`, {
method: 'DELETE',
});
mutate();
toaster.show('Set deleted successfully', 'success');
}
},
[]
);
const t = useT();
return (
<div className="flex flex-col">
<h3 className="text-[20px]">Sets ({data?.length || 0})</h3>
<div className="text-customColor18 mt-[4px]">
Manage your content sets for easy reuse across 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 grid-cols-[2fr,1fr,1fr] w-full gap-y-[10px]">
<div>{t('name', 'Name')}</div>
<div>{t('edit', 'Edit')}</div>
<div>{t('delete', 'Delete')}</div>
{data?.map((p: any) => (
<Fragment key={p.id}>
<div className="flex flex-col justify-center">{p.name}</div>
<div className="flex flex-col justify-center">
<div>
<Button onClick={addSet(p)}>{t('edit', 'Edit')}</Button>
</div>
</div>
<div className="flex flex-col justify-center">
<div>
<Button onClick={deleteSet(p)}>
{t('delete', 'Delete')}
</Button>
</div>
</div>
</Fragment>
))}
</div>
)}
<div>
<Button
onClick={addSet()}
className={clsx((data?.length || 0) > 0 && 'my-[16px]')}
>
Add a set
</Button>
</div>
</div>
</div>
</div>
);
};
|