mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 14:56:00 +00:00
feat(client): tooltip for designable button
This commit is contained in:
parent
3fe80cf370
commit
1408de55d2
@ -50,10 +50,49 @@ import { MenuSelectedKeysContext } from '../../schemas/menu';
|
||||
|
||||
function DesignableToggle() {
|
||||
const { designable, setDesignable } = useDesignableSwitchContext();
|
||||
const [visible, setVisible] = useState(false);
|
||||
useEffect(() => {
|
||||
if (designable) {
|
||||
return;
|
||||
}
|
||||
if (localStorage.getItem('hide-tip')) {
|
||||
return;
|
||||
}
|
||||
setTimeout(() => {
|
||||
setVisible(true);
|
||||
}, 2000);
|
||||
}, []);
|
||||
return (
|
||||
<div>
|
||||
<Tooltip
|
||||
// color={'volcano'}
|
||||
placement={'bottom'}
|
||||
title={
|
||||
<span>
|
||||
点此进入界面配置{' '}
|
||||
<a
|
||||
onClick={() => {
|
||||
localStorage.setItem('hide-tip', 'true');
|
||||
setVisible(false);
|
||||
}}
|
||||
>
|
||||
关闭
|
||||
</a>
|
||||
</span>
|
||||
}
|
||||
visible={visible}
|
||||
onVisibleChange={(visible) => {
|
||||
setVisible(visible);
|
||||
}}
|
||||
>
|
||||
<span style={{ height: 45, width: 45, position: 'absolute' }}></span>
|
||||
</Tooltip>
|
||||
<Tooltip title={'界面配置'}>
|
||||
<Button
|
||||
className={cls('nb-designable-toggle', { active: designable })}
|
||||
className={cls('nb-designable-toggle', {
|
||||
'has-tip': visible,
|
||||
active: designable,
|
||||
})}
|
||||
type={'primary'}
|
||||
style={{ height: 46, border: 0 }}
|
||||
onClick={() => {
|
||||
@ -63,6 +102,7 @@ function DesignableToggle() {
|
||||
<HighlightOutlined />
|
||||
</Button>
|
||||
</Tooltip>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -70,6 +70,9 @@
|
||||
&.active {
|
||||
// background: #faad14 !important;
|
||||
}
|
||||
&.has-tip {
|
||||
background: #f18b62 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.user-info {
|
||||
|
Loading…
Reference in New Issue
Block a user