Gui.js 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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 {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. let {
  14. CoreSystem,
  15. ViewSystem
  16. } = Library;
  17. export default class Gui {
  18. constructor() {
  19. this.CoreSystem = new CoreSystem();
  20. this.ModuleBar = new ModuleBar(this.CoreSystem); // Add CoreSystem deps
  21. this.Keyboard = new Keyboard();
  22. this.phoneRef = React.createRef();
  23. this.phone = this.phoneRef;
  24. this.toolboxRef = React.createRef();
  25. this.toolbox = this.toolboxRef;
  26. this.Environment = new Environment(this.CoreSystem, this.phoneRef);
  27. this.Environment.onUpdate(() => this.forceUpdate())
  28. this.ToolBox = new ToolBox();
  29. this.MainBar = new MainBar();
  30. this.load();
  31. this.__onUpdate = null;
  32. this.SideBar = new SideBar(this.CoreSystem);
  33. this.SideBar.tool = this.ToolBox.activeTool;
  34. this.SideBar.onUpdate(() => {
  35. this.forceUpdate();
  36. })
  37. this.ToolBox.onUpdate( () =>{
  38. this.SideBar.tool = this.ToolBox.activeTool;
  39. this.forceUpdate();
  40. });
  41. this.MainBar.onSave( () => {
  42. this.saveEnv();
  43. this.forceUpdate()
  44. })
  45. }
  46. onMount() {
  47. debugger;
  48. if(this.phone){
  49. // thats fine
  50. this.ToolBoxMouse = new Mouse(this.toolbox.current);
  51. this.phoneMouse = new Mouse(this.phone.current).droppable();
  52. }
  53. if(this.ToolBoxMouse !== undefined){
  54. this.ToolBoxMouse.listen()
  55. .on('LeftDown',(e) => this.ToolManagement(e))
  56. this.phoneMouse.listen()
  57. .on('LeftDown',(e) => this.ToolManagement(e))
  58. .on('Drop', (e) => this.dropContent(e))
  59. }
  60. }
  61. saveEnv(){
  62. let env = this.CoreSystem.export();
  63. localStorage.setItem('environment', JSON.stringify(env));
  64. this.forceUpdate();
  65. try{
  66. this.CoreSystem.import(JSON.parse(js));
  67. this.forceUpdate();
  68. } catch(e) {
  69. console.log(e);
  70. }
  71. }
  72. ToolManagement(e){
  73. if(this.ToolBox.activeTool !== null){
  74. this.processElement(e)
  75. }
  76. }
  77. onUpdate(fn){
  78. // check toolbox is fine
  79. this.__onUpdate = fn
  80. }
  81. forceUpdate(){
  82. this.__onUpdate && this.__onUpdate();
  83. }
  84. load() {
  85. this.ToolBox = new ToolBox(this.CoreSystem);
  86. try{
  87. let env = localStorage.getItem('environment');
  88. if( env === null){
  89. this.CoreSystem.import(JSON.parse(jsLoad));
  90. }else{
  91. this.CoreSystem.import(JSON.parse(env));
  92. }
  93. this.forceUpdate();
  94. } catch(e) {
  95. console.log(e);
  96. }
  97. }
  98. processElement(event){
  99. let Node = this.CoreSystem.ray({event});
  100. let NewNode = this.ToolBox.editNode(Node);
  101. this.forceUpdate();
  102. }
  103. dropContent({event, data}) {
  104. data = JSON.parse(data);
  105. let Node = this.CoreSystem.ray({event});
  106. // Node.content
  107. Node.props.selected = true;
  108. console.log(Node, data);
  109. let node = new ViewNode(Math.random(), data.ctor, {}, data.namespace);
  110. Node.content = node;
  111. console.log(node);
  112. this.forceUpdate();
  113. }
  114. mobileRender(){
  115. return this.Environment.render();
  116. }
  117. renderSideBar(){
  118. return this.SideBar.render();
  119. }
  120. renderMainBar(){
  121. return this.MainBar.render();
  122. }
  123. renderToolBox(){
  124. return (
  125. <div ref = {this.toolboxRef}>
  126. <View style={styles.toolbarView}>
  127. {this.ToolBox.render()}
  128. </View>
  129. </div>)
  130. }
  131. renderModuleBar(){
  132. return (
  133. <View >
  134. {this.ModuleBar.render()}
  135. </View>
  136. )
  137. }
  138. }
  139. //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"}}}}}';
  140. //jsLoad Test
  141. 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}}}}}'
  142. const MudleBarStyle = StyleSheet.create({
  143. container:{
  144. backgroundColor:'red'
  145. }
  146. })
  147. const styles = StyleSheet.create({
  148. container: {
  149. flex: 1,
  150. backgroundColor: '#fff',
  151. alignItems: 'center',
  152. justifyContent: 'space-between',
  153. flexDirection: 'row'
  154. },
  155. toolbarView: {
  156. justifyContent: 'space-around',
  157. alignItems: 'center',
  158. padding: 16
  159. },
  160. mainView: {
  161. backgroundColor: '#065b69',
  162. alignSelf:'stretch',
  163. flex: 1,
  164. justifyContent: 'center',
  165. alignItems: 'center'
  166. },
  167. mobileView: {
  168. backgroundColor: 'white',
  169. borderWidth: 4,
  170. borderColor: 'orange',
  171. flex:1,
  172. alignSelf: 'stretch',
  173. // iphone X
  174. width:1125/3,
  175. height: 2436/3
  176. },
  177. attributesView: {
  178. width:256,
  179. alignSelf: 'stretch',
  180. flexDirection: 'column',
  181. }
  182. });