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