-
Notifications
You must be signed in to change notification settings - Fork 0
45495229: Board background layout #157
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
packages/pkg.module.board/Board.tsx
Outdated
| export const Board: React.FC = () => { | ||
| // Выбранный инструмент | ||
| const [selectedTool, setSelectedTool] = useState<ToolType>('pen'); | ||
| const [stagePos, setStagePos] = useState<StagePositionT>({ x: 0, y: 0 }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Не стоит ли вынести в стор? (Я сам не уверен)
packages/pkg.module.board/Board.tsx
Outdated
|
|
||
| const handleWheel = useWheelZoom(stageRef); | ||
|
|
||
| const debouncedSetStagePos = useDebounce((x, y) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Вообще у нас где-то был этот хук, может стоит поискать, или вынести в общий пакет
| }; | ||
|
|
||
| export const BackgroundLayer = ({ stagePos, scaleValue }: BackgroundLayerPropsT) => { | ||
| const gridStep = 40; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Выглядит как константа, которую надо вынести вне компонента
|
|
||
| export const BackgroundLayer = ({ stagePos, scaleValue }: BackgroundLayerPropsT) => { | ||
| const gridStep = 40; | ||
| const [viewport, setViewport] = useState({ width: 0, height: 0 }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тоже насчёт стора
apps/xi.front/package.json
Outdated
| "private": true, | ||
| "scripts": { | ||
| "dev": "next dev --turbopack --port 3000", | ||
| "dev": "next dev --port 3000", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А почему тут исчез turbopack?
No description provided.