Gui.js 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. //import CoreSystem from 'core-system';
  2. import ToolBox from './ToolBox';
  3. import Keyboard from './keyboard';
  4. import Mouse from './mouse';
  5. import React from 'react';
  6. import {Dimensions, StyleSheet, View, Text} from 'react-native';
  7. import Library from 'trapilib/dist/lib';
  8. import SideBar from './SideBar';
  9. import MainBar from './MainBar';
  10. import ModuleBar from './ModuleBar';
  11. import { ViewNode } from 'trapilib/dist/lib/systems/ViewSystem';
  12. import Environment from './Environment';
  13. import BaseSystem from './System';
  14. let {
  15. CoreSystem,
  16. ViewSystem
  17. } = Library;
  18. export default class Gui extends BaseSystem {
  19. constructor() {
  20. super();
  21. this.phoneRef = React.createRef();
  22. this.phone = this.phoneRef;
  23. this.toolboxRef = React.createRef();
  24. this.toolbox = this.toolboxRef;
  25. this.CoreSystem = new CoreSystem();
  26. this.Keyboard = new Keyboard();
  27. this.ToolBox = new ToolBox(this.CoreSystem);
  28. this.MainBar = new MainBar();
  29. this.ModuleBar = new ModuleBar(this.CoreSystem); // Add CoreSystem deps
  30. this.SideBar = new SideBar(this.CoreSystem, this.ToolBox);
  31. this.Environment = new Environment(this.CoreSystem, this.ToolBox, this.phoneRef);
  32. this.Environment.onUpdate(() => this.forceUpdate())
  33. this.SideBar.onUpdate(() => this.forceUpdate())
  34. this.ToolBox.onUpdate( () => {
  35. this.SideBar.tool = this.ToolBox.activeTool;
  36. this.forceUpdate();
  37. });
  38. this.MainBar.onSave( () => {
  39. this.saveEnv();
  40. this.forceUpdate()
  41. })
  42. this.load();
  43. // Setup mainContainer
  44. let cview = this.CoreSystem.getCurrentView();
  45. let container = cview.getDefaultContainer();
  46. let mainContent = new ViewNode(Math.random(), 'BaseContainer', {width: 1125/3, height: 2436/3 - 10});
  47. cview.setContent(mainContent, container);
  48. }
  49. onMount() {
  50. this.forceUpdate();
  51. if(this.phone){
  52. // thats fine
  53. this.ToolBoxMouse = new Mouse(this.toolbox.current);
  54. this.phoneMouse = new Mouse(this.phone.current).droppable();
  55. }
  56. if(this.ToolBoxMouse !== undefined){
  57. this.ToolBoxMouse.listen()
  58. .on('LeftDown',(e) => this.ToolManagement(e))
  59. this.phoneMouse.listen()
  60. .on('LeftDown',(e) => this.ToolManagement(e))
  61. .on('Drop', (e) => this.dropContent(e))
  62. }
  63. }
  64. saveEnv(){
  65. let env = this.CoreSystem.export();
  66. localStorage.setItem('environment', JSON.stringify(env));
  67. this.forceUpdate();
  68. try{
  69. this.CoreSystem.import(JSON.parse(js));
  70. this.forceUpdate();
  71. } catch(e) {
  72. console.log(e);
  73. }
  74. }
  75. ToolManagement(e){
  76. if(this.ToolBox.activeTool !== null){
  77. this.processElement(e)
  78. }
  79. }
  80. load() {
  81. try{
  82. let env = localStorage.getItem('environment');
  83. if( env === null){
  84. this.CoreSystem.import(JSON.parse(jsLoad));
  85. }else{
  86. this.CoreSystem.import(JSON.parse(env));
  87. }
  88. this.forceUpdate();
  89. } catch(e) {
  90. console.log(e);
  91. }
  92. }
  93. processElement(event){
  94. let Node = this.CoreSystem.ray({event});
  95. let NewNode = this.ToolBox.editNode(Node);
  96. this.forceUpdate();
  97. }
  98. dropContent({event, data}) {
  99. data = JSON.parse(data);
  100. let Node = this.CoreSystem.ray({event});
  101. // Node.content
  102. Node.props.selected = true;
  103. console.log(Node, data);
  104. let node = new ViewNode(Math.random(), data.ctor, {}, data.namespace);
  105. Node.content = node;
  106. console.log(node);
  107. this.forceUpdate();
  108. }
  109. mobileRender(){
  110. return this.Environment.render();
  111. }
  112. renderSideBar(){
  113. return this.SideBar.render();
  114. }
  115. renderMainBar(){
  116. return this.MainBar.render();
  117. }
  118. renderToolBox(){
  119. return (
  120. <div ref = {this.toolboxRef}>
  121. <View style={styles.toolbarView}>
  122. {this.ToolBox.render()}
  123. </View>
  124. </div>)
  125. }
  126. renderModuleBar(){
  127. return (
  128. <View >
  129. {this.ModuleBar.render()}
  130. </View>
  131. )
  132. }
  133. }
  134. //const jsLoad = '{"Routing":{"topology":{"nodes":{"test":{"id":"test","routeName":"test","uri":"test","view":"VS1","defaultLink":null},"sample":{"id":"sample","routeName":"sample","uri":"sample","view":"VS2","defaultLink":null}},"links":{"test":{"out":[],"in":[]},"sample":{"out":[],"in":[]}}},"home":"test"},"Views":{"views":{"VS1":{"tree":{"nodes":{"A":{"id":"A","depth":0,"value":"RootComp","namespace":"default","props":{}},"B":{"id":"B","depth":1,"value":"ViewComp","namespace":"default","props":{"text":"ASD LOOK AT ME LOOK OO O.O (O.O)"}},"C":{"id":"C","depth":1,"value":"ViewComp","namespace":"default","props":{}}},"links":{"A":{"out":[{"to":"B","from":"A"},{"to":"C","from":"A"}],"in":[]},"B":{"out":[],"in":[{"to":"B","from":"A"}]},"C":{"out":[],"in":[{"to":"C","from":"A"}]}},"levels":[["A"],["B","C"]],"rootId":"A"}},"VS2":{"tree":{"nodes":{"P":{"id":"P","depth":0,"value":"RootComp","namespace":"default","props":{}}},"links":{"P":{"out":[],"in":[]}},"levels":[["P"]],"rootId":"P"}}}}}';
  135. //jsLoad Test
  136. const jsLoad = '{"Routing":{"topology":{"nodes":{"test":{"id":"test","routeName":"test","uri":"test","view":"VS1","defaultLink":null}},"links":{"test":{"out":[],"in":[]}}},"home":"test"},"Views":{"views":{"VS1":{"tree":{"nodes":{"0.5907657036474692":{"id":0.5907657036474692,"depth":0,"isRow":true,"isCol":false},"0.51066596548815":{"id":0.51066596548815,"depth":1,"isRow":false,"isCol":true},"0.8855478722619232":{"id":0.8855478722619232,"depth":1,"isRow":false,"isCol":true,"content":{"id":"A","depth":null,"value":"RootComp","namespace":"default","props":{"text":"This is the Starting point!!!Try add on me ","style":{"container":22,"text":23}}}},"0.4630979404426283":{"id":0.4630979404426283,"depth":1,"isRow":false,"isCol":true},"0.7144981784945621":{"id":0.7144981784945621,"depth":2,"isRow":true,"isCol":false},"0.0666081688424911":{"id":0.0666081688424911,"depth":2,"isRow":true,"isCol":false}},"links":{"0.5907657036474692":{"out":[{"to":0.51066596548815,"from":0.5907657036474692},{"to":0.8855478722619232,"from":0.5907657036474692},{"to":0.4630979404426283,"from":0.5907657036474692}],"in":[]},"0.51066596548815":{"out":[],"in":[{"to":0.51066596548815,"from":0.5907657036474692}]},"0.8855478722619232":{"out":[{"to":0.7144981784945621,"from":0.8855478722619232},{"to":0.0666081688424911,"from":0.8855478722619232}],"in":[{"to":0.8855478722619232,"from":0.5907657036474692}]},"0.4630979404426283":{"out":[],"in":[{"to":0.4630979404426283,"from":0.5907657036474692}]},"0.7144981784945621":{"out":[],"in":[{"to":0.7144981784945621,"from":0.8855478722619232}]},"0.0666081688424911":{"out":[],"in":[{"to":0.0666081688424911,"from":0.8855478722619232}]}},"levels":[[0.5907657036474692],[0.51066596548815,0.8855478722619232,0.4630979404426283],[0.7144981784945621,0.0666081688424911]],"rootId":0.5907657036474692}}}}}'
  137. const MudleBarStyle = StyleSheet.create({
  138. container:{
  139. backgroundColor:'red'
  140. }
  141. })
  142. const styles = StyleSheet.create({
  143. container: {
  144. flex: 1,
  145. backgroundColor: '#fff',
  146. alignItems: 'center',
  147. justifyContent: 'space-between',
  148. flexDirection: 'row'
  149. },
  150. toolbarView: {
  151. justifyContent: 'space-around',
  152. alignItems: 'center',
  153. padding: 16
  154. },
  155. mainView: {
  156. backgroundColor: '#065b69',
  157. alignSelf:'stretch',
  158. flex: 1,
  159. justifyContent: 'center',
  160. alignItems: 'center'
  161. },
  162. mobileView: {
  163. backgroundColor: 'white',
  164. borderWidth: 4,
  165. borderColor: 'orange',
  166. flex:1,
  167. alignSelf: 'stretch',
  168. // iphone X
  169. width:1125/3,
  170. height: 2436/3
  171. },
  172. attributesView: {
  173. width:256,
  174. alignSelf: 'stretch',
  175. flexDirection: 'column',
  176. }
  177. });