import React = require("react"); import { IconProp } from '@fortawesome/fontawesome-svg-core'; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { action, computed, observable } from "mobx"; import { observer } from "mobx-react"; import { Doc, Field, Opt } from "../../../../fields/Doc"; import { Document } from "../../../../fields/documentSchemas"; import { InkField } from "../../../../fields/InkField"; import { BoolCast, Cast, NumCast } from "../../../../fields/Types"; import { DocumentType } from "../../../documents/DocumentTypes"; import { SelectionManager } from "../../../util/SelectionManager"; import AntimodeMenu from "../../AntimodeMenu"; import "./FormatShapePane.scss"; import { undoBatch } from "../../../util/UndoManager"; @observer export default class FormatShapePane extends AntimodeMenu { static Instance: FormatShapePane; private _lastFill = "#D0021B"; private _lastLine = "#D0021B"; private _lastDash = "2"; private _palette = ["#D0021B", "#F5A623", "#F8E71C", "#8B572A", "#7ED321", "#417505", "#9013FE", "#4A90E2", "#50E3C2", "#B8E986", "#000000", "#4A4A4A", "#9B9B9B", "#FFFFFF"]; private _mode = ["fill-drip", "ruler-combined"]; @observable private _subOpen = [false, false, false, false]; @observable private _currMode = "fill-drip"; @observable private _lock = false; @observable private _fillBtn = false; @observable private _lineBtn = false; getField(key: string) { return this.selectedInk?.reduce((p, i) => (p === undefined || (p && p === i.rootDoc[key])) && i.rootDoc[key] !== "0" ? Field.toString(i.rootDoc[key] as Field) : "", undefined as Opt); } @computed get selectedInk() { const inks = SelectionManager.SelectedDocuments().filter(i => Document(i.rootDoc).type === DocumentType.INK); return inks.length ? inks : undefined; } @computed get unFilled() { return this.selectedInk?.reduce((p, i) => p && !i.rootDoc.fillColor ? true : false, true) || false; } @computed get unStrokd() { return this.selectedInk?.reduce((p, i) => p && !i.rootDoc.color ? true : false, true) || false; } @computed get solidFil() { return this.selectedInk?.reduce((p, i) => p && i.rootDoc.fillColor ? true : false, true) || false; } @computed get solidStk() { return this.selectedInk?.reduce((p, i) => p && i.rootDoc.color && (!i.rootDoc.strokeDash || i.rootDoc.strokeDash === "0") ? true : false, true) || false; } @computed get dashdStk() { return !this.unStrokd && this.getField("strokeDash") || ""; } @computed get colorFil() { const ccol = this.getField("fillColor") || ""; ccol && (this._lastFill = ccol); return ccol; } @computed get colorStk() { const ccol = this.getField("color") || ""; ccol && (this._lastLine = ccol); return ccol; } @computed get widthStk() { return this.getField("strokeWidth") || "1"; } @computed get markHead() { return this.getField("strokeStartMarker") || ""; } @computed get markTail() { return this.getField("strokeEndMarker") || ""; } @computed get shapeHgt() { return this.getField("_height"); } @computed get shapeWid() { return this.getField("_width"); } @computed get shapeXps() { return this.getField("x"); } @computed get shapeYps() { return this.getField("y"); } @computed get shapeRot() { return this.getField("rotation"); } set unFilled(value) { this.colorFil = value ? "" : this._lastFill; } set solidFil(value) { this.unFilled = !value; } set colorFil(value) { value && (this._lastFill = value); this.selectedInk?.forEach(i => i.rootDoc.fillColor = value ? value : undefined); } set colorStk(value) { value && (this._lastLine = value); this.selectedInk?.forEach(i => i.rootDoc.color = value ? value : undefined); } set markHead(value) { this.selectedInk?.forEach(i => i.rootDoc.strokeStartMarker = value); } set markTail(value) { this.selectedInk?.forEach(i => i.rootDoc.strokeEndMarker = value); } set unStrokd(value) { this.colorStk = value ? "" : this._lastLine; } set solidStk(value) { this.dashdStk = ""; this.unStrokd = !value; } set dashdStk(value) { value && (this._lastDash = value) && (this.unStrokd = false); this.selectedInk?.forEach(i => i.rootDoc.strokeDash = value ? this._lastDash : undefined); } set shapeXps(value) { this.selectedInk?.forEach(i => i.rootDoc.x = Number(value)); } set shapeYps(value) { this.selectedInk?.forEach(i => i.rootDoc.y = Number(value)); } set shapeRot(value) { this.selectedInk?.forEach(i => i.rootDoc.rotation = Number(value)); } set widthStk(value) { this.selectedInk?.forEach(i => i.rootDoc.strokeWidth = Number(value)); } set shapeWid(value) { this.selectedInk?.filter(i => i.rootDoc._width && i.rootDoc._height).forEach(i => { const oldWidth = NumCast(i.rootDoc._width); i.rootDoc._width = Number(value); this._lock && (i.rootDoc._height = (i.rootDoc._width * NumCast(i.rootDoc._height)) / oldWidth); }); } set shapeHgt(value) { this.selectedInk?.filter(i => i.rootDoc._width && i.rootDoc._height).forEach(i => { const oldHeight = NumCast(i.rootDoc._height); i.rootDoc._height = Number(value); this._lock && (i.rootDoc._width = (i.rootDoc._height * NumCast(i.rootDoc._width)) / oldHeight); }); } constructor(props: Readonly<{}>) { super(props); FormatShapePane.Instance = this; this._canFade = false; this.Pinned = BoolCast(Doc.UserDoc()["menuFormatShape-pinned"]); } @action closePane = () => { this.fadeOut(false); this.Pinned = false; } @action upDownButtons = (dirs: string, field: string) => { switch (field) { case "rot": this.rotate((dirs === "up" ? .1 : -.1)); break; case "Xps": this.selectedInk?.forEach(i => i.rootDoc.x = NumCast(i.rootDoc.x) + (dirs === "up" ? 10 : -10)); break; case "Yps": this.selectedInk?.forEach(i => i.rootDoc.y = NumCast(i.rootDoc.y) + (dirs === "up" ? 10 : -10)); break; case "stk": this.selectedInk?.forEach(i => i.rootDoc.strokeWidth = NumCast(i.rootDoc.strokeWidth) + (dirs === "up" ? .1 : -.1)); break; case "wid": this.selectedInk?.filter(i => i.rootDoc._width && i.rootDoc._height).forEach(i => { const oldWidth = NumCast(i.rootDoc._width); i.rootDoc._width = oldWidth + (dirs === "up" ? 10 : - 10); this._lock && (i.rootDoc._height = (i.rootDoc._width / oldWidth * NumCast(i.rootDoc._height))); }); break; case "hgt": this.selectedInk?.filter(i => i.rootDoc._width && i.rootDoc._height).forEach(i => { const oldHeight = NumCast(i.rootDoc._height); i.rootDoc._height = oldHeight + (dirs === "up" ? 10 : - 10); this._lock && (i.rootDoc._width = (i.rootDoc._height / oldHeight * NumCast(i.rootDoc._width))); }); break; } } @undoBatch @action rotate = (degrees: number) => { this.selectedInk?.forEach(action(inkView => { const doc = Document(inkView.rootDoc); if (doc.type === DocumentType.INK && doc.x && doc.y && doc._width && doc._height && doc.data) { const angle = Number(degrees) - Number(doc.rotation); doc.rotation = Number(degrees); const ink = Cast(doc.data, InkField)?.inkData; if (ink) { const xs = ink.map(p => p.X); const ys = ink.map(p => p.Y); const left = Math.min(...xs); const top = Math.min(...ys); const right = Math.max(...xs); const bottom = Math.max(...ys); const _centerPoints: { X: number, Y: number }[] = []; _centerPoints.push({ X: left, Y: top }); const newPoints: { X: number, Y: number }[] = []; for (var i = 0; i < ink.length; i++) { const newX = Math.cos(angle) * (ink[i].X - _centerPoints[0].X) - Math.sin(angle) * (ink[i].Y - _centerPoints[0].Y) + _centerPoints[0].X; const newY = Math.sin(angle) * (ink[i].X - _centerPoints[0].X) + Math.cos(angle) * (ink[i].Y - _centerPoints[0].Y) + _centerPoints[0].Y; newPoints.push({ X: newX, Y: newY }); } doc.data = new InkField(newPoints); const xs2 = newPoints.map(p => p.X); const ys2 = newPoints.map(p => p.Y); const left2 = Math.min(...xs2); const top2 = Math.min(...ys2); const right2 = Math.max(...xs2); const bottom2 = Math.max(...ys2); doc._height = (bottom2 - top2) * inkView.props.ScreenToLocalTransform().Scale; doc._width = (right2 - left2) * inkView.props.ScreenToLocalTransform().Scale; } } })); } colorPicker(setter: (color: string) => {}) { return
{this._palette.map(color => )}
; } inputBox = (key: string, value: any, setter: (val: string) => {}) => { return <> setter(e.target.value)} autoFocus />
; } colorButton(value: string, setter: () => {}) { return <>

; } @computed get fillButton() { return this.colorButton(this.colorFil, () => this._fillBtn = !this._fillBtn); } @computed get lineButton() { return this.colorButton(this.colorStk, () => this._lineBtn = !this._lineBtn); } @computed get fillPicker() { return this.colorPicker((color: string) => this.colorFil = color); } @computed get linePicker() { return this.colorPicker((color: string) => this.colorStk = color); } @computed get stkInput() { return this.inputBox("stk", this.widthStk, (val: string) => this.widthStk = val); } @computed get hgtInput() { return this.inputBox("hgt", this.shapeHgt, (val: string) => this.shapeHgt = val); } @computed get widInput() { return this.inputBox("wid", this.shapeWid, (val: string) => this.shapeWid = val); } @computed get rotInput() { return this.inputBox("rot", this.shapeRot, (val: string) => this.shapeRot = val); } @computed get XpsInput() { return this.inputBox("Xps", this.shapeXps, (val: string) => this.shapeXps = val); } @computed get YpsInput() { return this.inputBox("Yps", this.shapeYps, (val: string) => this.shapeYps = val); } @computed get propertyGroupItems() { const fillCheck =
this.unFilled = true))} /> No Fill
this.solidFil = true))} /> Solid Fill

{this.solidFil ? "Color" : ""} {this.solidFil ? this.fillButton : ""} {this._fillBtn && this.solidFil ? this.fillPicker : ""}
; const markers = <> this.markHead = this.markHead ? "" : "arrow"))} /> Arrow Head
this.markTail = this.markTail ? "" : "arrow"))} /> Arrow End
; const lineCheck =
this.unStrokd = true))} /> No Line
this.solidStk = true))} /> Solid Line
this.dashdStk = "2"))} /> Dash Line

{(this.solidStk || this.dashdStk) ? "Color" : ""} {(this.solidStk || this.dashdStk) ? this.lineButton : ""} {(this.solidStk || this.dashdStk) && this._lineBtn ? this.linePicker : ""}
{(this.solidStk || this.dashdStk) ? "Width" : ""} {(this.solidStk || this.dashdStk) ? this.stkInput : ""} {(this.solidStk || this.dashdStk) ? this.widthStk = e.target.value} /> : (null)}

{(this.solidStk || this.dashdStk) ? markers : ""}
; const sizeCheck =
Height {this.hgtInput}

Width {this.widInput}

this._lock = !this._lock))} /> Lock Ratio

Rotation {this.rotInput}

; const positionCheck =
Horizontal {this.XpsInput}

Vertical {this.YpsInput}

; const subMenus = this._currMode === "fill-drip" ? [`fill`, `line`] : [`size`, `position`]; const menuItems = this._currMode === "fill-drip" ? [fillCheck, lineCheck] : [sizeCheck, positionCheck]; const indexOffset = this._currMode === "fill-drip" ? 0 : 2; return
{subMenus.map((subMenu, i) =>
{menuItems[i]}
)}
; } @computed get closeBtn() { return ; } @computed get propertyGroupBtn() { return
{this._mode.map(mode => )}
; } render() { return this.getElementVert([this.closeBtn, this.propertyGroupBtn, this.propertyGroupItems]); } }