'use client' import { useTranslation } from 'react-i18next' import { Fragment } from 'react' import { useSWRConfig } from 'swr' import { RiDeleteBinLine, RiLoopLeftLine, RiMoreFill, RiStickyNoteAddLine, } from '@remixicon/react' import { Menu, Transition } from '@headlessui/react' import { syncDataSourceNotion, updateDataSourceNotionAction } from '@/service/common' import Toast from '@/app/components/base/toast' type OperateProps = { payload: { id: string total: number } onAuthAgain: () => void } export default function Operate({ payload, onAuthAgain, }: OperateProps) { const itemClassName = ` flex px-3 py-2 hover:bg-gray-50 text-sm text-gray-700 cursor-pointer ` const itemIconClassName = ` mr-2 mt-[2px] w-4 h-4 text-gray-500 ` const { t } = useTranslation() const { mutate } = useSWRConfig() const updateIntegrates = () => { Toast.notify({ type: 'success', message: t('common.api.success'), }) mutate({ url: 'data-source/integrates' }) } const handleSync = async () => { await syncDataSourceNotion({ url: `/oauth/data-source/notion/${payload.id}/sync` }) updateIntegrates() } const handleRemove = async () => { await updateDataSourceNotionAction({ url: `/data-source/integrates/${payload.id}/disable` }) updateIntegrates() } return ( { ({ open }) => ( <>
{t('common.dataSource.notion.changeAuthorizedPages')}
{payload.total} {t('common.dataSource.notion.pagesAuthorized')}
{t('common.dataSource.notion.sync')}
{t('common.dataSource.notion.remove')}
) }
) }