mirror of
https://github.com/idrawjs/idraw
synced 2026-05-24 10:08:34 +00:00
feat: rename dashboard for idraw design
This commit is contained in:
parent
f643cd7d7b
commit
05ef32667a
7 changed files with 23 additions and 21 deletions
|
|
@ -4,7 +4,7 @@
|
|||
@import './icons/index.less';
|
||||
|
||||
@import './modules/header.less';
|
||||
@import './modules/sketch.less';
|
||||
@import './modules/dashboard.less';
|
||||
@import './modules/toolbar.less';
|
||||
@import './modules/panel-layer.less';
|
||||
@import './modules/split-pane.less';
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
@import '../variable.less';
|
||||
|
||||
@mod-sketch: ~'@{prefix}-mod-sketch';
|
||||
@mod-dashboard: ~'@{prefix}-mod-dashboard';
|
||||
|
||||
// @mod-sketch-header-height: 36px;
|
||||
// @mod-dashboard-header-height: 36px;
|
||||
|
||||
.@{mod-sketch} {
|
||||
.@{mod-dashboard} {
|
||||
color: ~'var(--@{prefix}-text-color)';
|
||||
background: ~'var(--@{prefix}-bg-color)';
|
||||
display: flex;
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
background-size: 10px 10px, 10px 10px, 50px 50px, 50px 50px;
|
||||
}
|
||||
|
||||
.@{mod-sketch}-toolbar-position {
|
||||
.@{mod-dashboard}-toolbar-position {
|
||||
position: absolute;
|
||||
bottom: 50px;
|
||||
left: 50%;
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.@{mod-sketch}-header {
|
||||
.@{mod-dashboard}-header {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
|
@ -37,29 +37,29 @@
|
|||
box-sizing: border-box;
|
||||
border-bottom: 1px solid;
|
||||
border-color: ~'var(--@{prefix}-border-color)';
|
||||
// height: @mod-sketch-header-height;
|
||||
// height: @mod-dashboard-header-height;
|
||||
}
|
||||
|
||||
.@{mod-sketch}-content {
|
||||
.@{mod-dashboard}-content {
|
||||
position: absolute;
|
||||
// top: @mod-sketch-header-height;
|
||||
// top: @mod-dashboard-header-height;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
.@{mod-sketch}-left {
|
||||
.@{mod-dashboard}-left {
|
||||
border-right: 1px solid;
|
||||
border-color: ~'var(--@{prefix}-border-color)';
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.@{mod-sketch}-right {
|
||||
.@{mod-dashboard}-right {
|
||||
border-left: 1px solid;
|
||||
border-color: ~'var(--@{prefix}-border-color)';
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.@{mod-sketch}-center {
|
||||
.@{mod-dashboard}-center {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
|
@ -2,17 +2,17 @@ import React, { useEffect, useReducer } from 'react';
|
|||
import ConfigProvider from 'antd/es/config-provider';
|
||||
import theme from 'antd/es/theme';
|
||||
import classnames from 'classnames';
|
||||
import { Sketch } from './modules';
|
||||
import { Dashboard } from './modules';
|
||||
import { createPrefixName } from './css';
|
||||
import { Provider, createDesignContextState, createDesignReducer } from './context';
|
||||
import type { DesignData } from './types';
|
||||
import type { SketchProps } from './modules';
|
||||
import type { DashboardProps } from './modules';
|
||||
import './css/index.less';
|
||||
|
||||
const themeName = 'theme';
|
||||
const themePrefixName = createPrefixName(themeName);
|
||||
|
||||
export type DesignProps = SketchProps & {
|
||||
export type DesignProps = DashboardProps & {
|
||||
designData?: DesignData;
|
||||
locale?: string; // TODO
|
||||
themeMode?: 'light' | 'dark';
|
||||
|
|
@ -35,7 +35,7 @@ export const Design = (props: DesignProps) => {
|
|||
return (
|
||||
<Provider value={{ state, dispatch }}>
|
||||
<ConfigProvider theme={{ algorithm: state.themeMode === 'dark' ? theme.darkAlgorithm : theme.defaultAlgorithm }}>
|
||||
<Sketch
|
||||
<Dashboard
|
||||
width={width}
|
||||
height={height}
|
||||
style={style}
|
||||
|
|
|
|||
|
|
@ -11,20 +11,20 @@ import { createPrefixName } from '../../css';
|
|||
import { HEADER_HEIGHT } from './layout';
|
||||
import SplitPane from '../split-pane';
|
||||
|
||||
const modName = 'mod-sketch';
|
||||
const modName = 'mod-dashboard';
|
||||
const leftSiderDefaultWidth = 240;
|
||||
const rightSiderDefaultWidth = 200;
|
||||
|
||||
const prefixName = createPrefixName(modName);
|
||||
|
||||
export interface SketchProps {
|
||||
export interface DashboardProps {
|
||||
className?: string;
|
||||
style?: CSSProperties;
|
||||
width: number;
|
||||
height: number;
|
||||
}
|
||||
|
||||
export const Sketch = (props: SketchProps) => {
|
||||
export const Dashboard = (props: DashboardProps) => {
|
||||
const ref = useRef<HTMLDivElement>(null);
|
||||
const refCore = useRef<Core | null>(null);
|
||||
const { className, style, width, height } = props;
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
export { Toolbar } from './toolbar/index';
|
||||
export type { ToolbarProps } from './toolbar/index';
|
||||
|
||||
export { Sketch } from './sketch/index';
|
||||
export type { SketchProps } from './sketch/index';
|
||||
export { Dashboard } from './dashboard/index';
|
||||
export type { DashboardProps } from './dashboard/index';
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@ import type { Element, ElementType, ElementSize, ElementBaseDesc } from '@idraw/
|
|||
|
||||
export type DesignItemType = 'component' | 'component-item' | 'module' | 'page';
|
||||
|
||||
export type DesignDrawDataType = 'component' | 'module' | 'page';
|
||||
|
||||
export type DesignComponentItem = Omit<ElementSize, 'angle'> & {
|
||||
uuid: string;
|
||||
type: 'component-item';
|
||||
|
|
|
|||
Loading…
Reference in a new issue