Files
huly-platform/packages/presentation/src/drawingCommand.ts
T
Denis 'GeneralGDA' GladkiyandGitHub 70a4ea2b93 Drawing board rect, ellipse and line shape drawing. (#10142)
* Tools selection merged into a popup.

Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>

* Popup availability indicator.

Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>

* Rectangle tool.

Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>

* Ellipse tool.

Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>

* Line tool.

Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>

* Refactoring: code generalization.
Stroke width tool visibility fix.
Panning cursor position fix.

Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>

* Drawing board toolbar overflow fix.

Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>

* Refactoring: code generalization.

Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>

* Formatting.

Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>

* Svelte check fix.

Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>

---------

Signed-off-by: Denis Gladkiy <denis.gladkiy@hardcoreeng.com>
2025-10-24 18:47:50 +06:00

65 lines
1.7 KiB
TypeScript

//
// Copyright © 2025 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public 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 https://www.eclipse.org/legal/epl-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 { generateId } from '@hcengineering/core'
import { type ColorMetaNameOrHex, type CanvasPoint } from './drawingUtils'
export type CommandUid = string & { readonly __brand: 'CommandUid' }
export interface DrawingCmd {
id: CommandUid
type: 'line' | 'text' | 'rectangle' | 'ellipse' | 'straight-line'
}
export interface DrawTextCmd extends DrawingCmd {
text: string
pos: CanvasPoint
fontSize: number
fontFace: string
color: ColorMetaNameOrHex
}
export interface DrawLineCmd extends DrawingCmd {
lineWidth: number
erasing: boolean
penColor: ColorMetaNameOrHex
points: CanvasPoint[]
}
export interface DrawRectCmd extends DrawingCmd {
lineWidth: number
penColor: ColorMetaNameOrHex
start: CanvasPoint
end: CanvasPoint
}
export interface DrawEllipseCmd extends DrawingCmd {
lineWidth: number
penColor: ColorMetaNameOrHex
start: CanvasPoint
end: CanvasPoint
}
export interface DrawStraightLineCmd extends DrawingCmd {
lineWidth: number
penColor: ColorMetaNameOrHex
start: CanvasPoint
end: CanvasPoint
}
export const makeCommandUid = (): CommandUid => {
return (crypto?.randomUUID?.() ?? generateId()) as CommandUid
}