refactor: add worker
This commit is contained in:
@@ -0,0 +1,84 @@
|
||||
import CollapsibleContainer from '@/components/collapse-container';
|
||||
import { useIntl } from '@umijs/max';
|
||||
import { Button } from 'antd';
|
||||
import React from 'react';
|
||||
import styled from 'styled-components';
|
||||
import { useAddWorkerContext } from './add-worker-context';
|
||||
|
||||
interface StepItemProps {
|
||||
title: React.ReactNode;
|
||||
children?: React.ReactNode;
|
||||
name: string;
|
||||
beforeNext?: () => Promise<boolean> | void;
|
||||
}
|
||||
|
||||
const Box = styled.div`
|
||||
border: 1px solid var(--ant-color-border);
|
||||
border-radius: 4px;
|
||||
&.step-collapse-open {
|
||||
border-color: var(--ant-color-primary);
|
||||
}
|
||||
`;
|
||||
|
||||
const ButtonWrapper = styled.div`
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 16px;
|
||||
width: 100%;
|
||||
`;
|
||||
|
||||
const StepCollapse: React.FC<StepItemProps> = ({
|
||||
title,
|
||||
children,
|
||||
name = '',
|
||||
beforeNext = async () => true,
|
||||
...rest
|
||||
}) => {
|
||||
const intl = useIntl();
|
||||
const { collapseKey, onToggle, stepList } = useAddWorkerContext();
|
||||
|
||||
const handleOnNext = async () => {
|
||||
const res = await beforeNext?.();
|
||||
if (!res) return;
|
||||
// find the next step and open it
|
||||
const nextName = stepList[stepList.indexOf(name) + 1];
|
||||
onToggle(true, nextName);
|
||||
};
|
||||
|
||||
const isLastStep = stepList.indexOf(name) === stepList.length - 1;
|
||||
|
||||
return (
|
||||
<Box
|
||||
className={
|
||||
collapseKey?.has(name) ? 'step-collapse-open' : 'step-collapse'
|
||||
}
|
||||
>
|
||||
<CollapsibleContainer
|
||||
collapsible={true}
|
||||
open={collapseKey?.has(name)}
|
||||
iconPosition="right"
|
||||
styles={{
|
||||
body: collapseKey?.has(name) ? { padding: 16 } : {},
|
||||
content: { paddingTop: 0 },
|
||||
header: {
|
||||
backgroundColor: 'unset'
|
||||
}
|
||||
}}
|
||||
title={title}
|
||||
onToggle={(open) => onToggle?.(open, name || '')}
|
||||
{...rest}
|
||||
>
|
||||
{children}
|
||||
{!isLastStep && (
|
||||
<ButtonWrapper>
|
||||
<Button type="primary" onClick={handleOnNext}>
|
||||
{intl.formatMessage({ id: 'common.button.next' })}
|
||||
</Button>
|
||||
</ButtonWrapper>
|
||||
)}
|
||||
</CollapsibleContainer>
|
||||
</Box>
|
||||
);
|
||||
};
|
||||
|
||||
export default StepCollapse;
|
||||
Reference in New Issue
Block a user