import { observable, action, computed } from "mobx"; import { CirclePicker, ColorResult } from 'react-color' import { InkTool } from "../../fields/InkField"; import { observer } from "mobx-react"; import React = require("react"); import "./InkingCanvas.scss" @observer export class InkingControl extends React.Component { static Instance: InkingControl = new InkingControl({}); @observable private _selectedTool: InkTool = InkTool.None; @observable private _selectedColor: string = "rgb(244, 67, 54)"; @observable private _selectedWidth: string = "25"; @observable private _open: boolean = false; @observable private _colorPickerDisplay: boolean = false; constructor(props: Readonly<{}>) { super(props); InkingControl.Instance = this } @action switchTool = (tool: InkTool): void => { this._selectedTool = tool; } @action switchColor = (color: ColorResult): void => { this._selectedColor = color.hex; } @action switchWidth = (width: string): void => { this._selectedWidth = width; } @computed get selectedTool() { return this._selectedTool; } @computed get selectedColor() { return this._selectedColor; } @computed get selectedWidth() { return this._selectedWidth; } selected = (tool: InkTool) => { if (this._selectedTool === tool) { return { backgroundColor: "#61aaa3", color: "white" } } return {} } @action toggleDisplay = () => { this._open = !this._open; } @action toggleColorPicker = () => { this._colorPickerDisplay = !this._colorPickerDisplay; } render() { return (