tachybase_todo/packages/plugins/@tachybase/plugin-workflow/src/client/ExecutionLink.tsx
2024-06-11 21:17:42 +08:00

19 lines
512 B
TypeScript

import React from 'react';
import { useActionContext, useRecord } from '@tachybase/client';
import { useTranslation } from 'react-i18next';
import { Link } from 'react-router-dom';
import { getWorkflowExecutionsPath } from './utils';
export const ExecutionLink = () => {
const { t } = useTranslation();
const { id } = useRecord();
const { setVisible } = useActionContext();
return (
<Link to={getWorkflowExecutionsPath(id)} onClick={() => setVisible(false)}>
{t('View')}
</Link>
);
};