App.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. import React from 'react';
  2. import { StyleSheet, Text, TextInput, View } from 'react-native';
  3. import GUI from './Systems/Gui';
  4. import Mouse from './Systems/mouse';
  5. import './App.css';
  6. // let m1 = new Mouse();
  7. // m1.on('LeftDown', () => console.log("M1")).listen();
  8. // let m2 = new Mouse();
  9. // m2.on('LeftDown', () => console.log("M2")).listen();
  10. export default class App extends React.Component {
  11. constructor(props){
  12. super(props)
  13. // this.playgroundRef = React.createRef();
  14. // this.toolboxRef = React.createRef();
  15. this.GUI = null;
  16. this.state = {
  17. zoom:1,
  18. scrollPos:0
  19. }
  20. // this.addScrollEvent();
  21. this.GUI = new GUI();
  22. this.GUI.onUpdate( () => this.forceUpdate())
  23. }
  24. componentDidMount() {
  25. this.GUI.onMount();
  26. }
  27. addScrollEvent(){
  28. window.addEventListener('wheel', (e) =>{
  29. if(e.deltaY < 0){
  30. this.zoom(0.2);
  31. }
  32. else if(e.deltaY > 0){
  33. this.zoom(-0.2);
  34. }
  35. });
  36. }
  37. zoom(delta){
  38. let z = this.state.zoom;
  39. z = z + delta;
  40. this.setState({zoom:z});
  41. }
  42. dragPage(e){
  43. //!!!!!Import document.getElementById isnt working on react native
  44. //' let playground = document.getElementById("phone");
  45. /*playground.addEventListener("mousedown",() => {
  46. console.log("mouse down")
  47. playground.onmousemove = function(e){
  48. console.log("moving now while down")
  49. }
  50. })*/
  51. }
  52. render(){
  53. console.log("re render")
  54. let customStyle = {
  55. zoom: this.state.zoom
  56. };
  57. return (
  58. <div className="main" id="some">
  59. <div className="mainbar">
  60. {this.GUI.renderMainBar()}
  61. </div>
  62. <div className="horizontal_bars">
  63. <div ref={this.toolboxRef} className="toolbox">
  64. <div className="tool_icon_bar">{this.GUI.renderToolBox()}</div>
  65. <div className="moduleBar">{this.GUI.renderModuleBar()}</div>
  66. </div>
  67. <div className="sidebar">
  68. {this.GUI.renderSideBar()}
  69. </div>
  70. </div>
  71. {/*This is a comment*/}
  72. <div onClick={(e) => this.dragPage(e)} className="playground" style={{zoom:this.state.zoom}}>
  73. <div className="phone">
  74. {this.GUI.mobileRender()}
  75. </div>
  76. </div>
  77. </div>
  78. );
  79. }
  80. }
  81. /*
  82. const styles = StyleSheet.create({
  83. container: {
  84. flex: 1,
  85. backgroundColor: '#fff',
  86. alignItems: 'center',
  87. justifyContent: 'space-between',
  88. flexDirection: 'row'
  89. },
  90. toolbarView: {
  91. justifyContent: 'space-around',
  92. alignItems: 'center',
  93. width: 64,
  94. borderWidth: 1,
  95. borderColor: 'red',
  96. padding: 16
  97. },
  98. mainView: {
  99. backgroundColor: '#065b69',
  100. alignSelf:'stretch',
  101. flex: 1,
  102. justifyContent: 'center',
  103. alignItems: 'center'
  104. },
  105. mobileView: {
  106. backgroundColor: 'white',
  107. borderWidth: 4,
  108. borderColor: 'orange',
  109. // iphone X
  110. width:1125/3,
  111. height: 2436/3
  112. },
  113. });*/