1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- import Tool from './Tool';
- import {Tools} from '../Tools/index'
- import React from 'react';
- import {StyleSheet,View , Text} from 'react-native';
- import Mouse from './mouse';
- function log(args){
- console.log(args)
- }
- export default class ToolBox {
- constructor(CoreSystem, defaultTool = 'Select'){
- this.CoreSystem = CoreSystem;
- this.tools = {};
- this.activeTool = null;
- this.loadTools(defaultTool);
- this.__onUpdate = null;
-
- }
- on(e) { return this.activeTool.on(e) }
- editNode(View){
- return this.activeTool.editViewNode(this.CoreSystem,View);
- }
- onUpdate(fn){
- this.__onUpdate = fn;
- }
- update(){
- this.__onUpdate && this.__onUpdate();
- }
- selectTool(key){
- Object.keys(this.tools).forEach((key) => this.tools[key].active = false)
- let tool = this.tools[key];
- this.activeTool = tool;
- tool.active = true;
- this.update()
- }
- loadTools(defaultTool){
- log("Loading Tools")
- Object.keys(Tools).map((key) => {
- if( Tools[key].prototype instanceof Tool === false ){
- throw new Error("This is not a Tool")
- }
- if(this.tools[key]){
- log("Tool already Exists: ",key);
- }
- this.tools[key] = new Tools[key]();
- })
- if(defaultTool && this.tools[defaultTool]) {
- this.activeTool = this.tools[defaultTool];
- }
- }
- render(){
- let tools = Object.keys(this.tools).map((key) => {
- let toolStyle = styles.tool;
- if(this.activeTool !== null){
- if(this.activeTool.constructor.name === key){
- toolStyle = styles.activeTool;
- }
- }
- return(<View onClick={() => this.selectTool(key) } style={toolStyle} >{this.tools[key].render()}</View>)
- });
- return tools;
- }
- }
- /** Must be remove from here**/
- const styles = StyleSheet.create({
- tool:{
- },
- activeTool:{
-
- }
- })
|