feat: manually mirror opencoze's code from bytedance

Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
fanlv
2025-07-20 17:36:12 +08:00
commit 890153324f
14811 changed files with 1923430 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
.tooltip {
overflow: hidden;
width: 300px;
font-size: 14px;
border-radius: 12px;
box-shadow: 0 16px 48px 0 #00000014, 0 8px 24px 0 #00000029;
&-footer {
display: flex;
justify-content: space-between;
}
}
.action-btn {
display: flex;
gap: 4px;
&-index {
font-size: 14px;
font-weight: 400;
line-height: 32px;
color: var(--Fg-COZ-fg-secondary, rgba(6, 7, 9, 50%));
text-align: left;
}
}

View File

@@ -0,0 +1,133 @@
/*
* Copyright 2025 coze-dev Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { type TooltipRenderProps, type StepMerged } from 'react-joyride';
import { type FC, type MouseEvent, useCallback } from 'react';
import { I18n } from '@coze-arch/i18n';
import { Button } from '@coze-arch/coze-design';
import { Container } from '../container';
import s from './index.module.less';
export interface IExtraAction {
content: string;
onClick: (step: StepMerged) => void;
}
export const Tooltip: FC<
TooltipRenderProps & {
showProgress?: boolean;
extraAction?: IExtraAction;
onClose?: () => void;
}
> = props => {
const {
index,
isLastStep,
primaryProps,
skipProps,
closeProps,
step,
showProgress,
size,
extraAction,
onClose,
} = props;
const handleClose = useCallback(
(e: MouseEvent<HTMLElement, globalThis.MouseEvent>) => {
onClose?.();
closeProps.onClick(e);
},
[closeProps, onClose],
);
return (
<div className={s.tooltip} data-testid="coachmark_tooltip">
<Container>
{step.content}
<Container>
<div className={s['tooltip-footer']}>
<div className={s['action-btn-index']}>
{showProgress ? `${index + 1}/${size}` : ''}
</div>
<div className={s['action-btn']}>
{isLastStep ? (
extraAction ? (
<>
<Button
size="default"
color="secondary"
{...closeProps}
onClick={handleClose}
data-testid="coachmark_tooltip_got_it"
>
{I18n.t('upgrade_guide_got_it')}
</Button>
<Button
size="default"
color="highlight"
onClick={() => {
extraAction.onClick(step);
onClose?.();
}}
>
{extraAction.content}
</Button>
</>
) : (
<Button
size="default"
color="highlight"
{...closeProps}
onClick={handleClose}
data-testid="coachmark_tooltip_got_it"
>
{I18n.t('upgrade_guide_got_it')}
</Button>
)
) : (
<>
<Button
size="default"
color={'secondary'}
{...skipProps}
onClick={handleClose}
data-testid="coachmark_tooltip_got_it"
>
{I18n.t('upgrade_guide_got_it')}
</Button>
<Button
size="default"
color={'highlight'}
onClick={e => {
step.data?.nextAction?.();
primaryProps.onClick(e);
}}
>
{I18n.t('upgrade_guide_next')}
</Button>
</>
)}
</div>
</div>
</Container>
</Container>
</div>
);
};