123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import Tool from '../Systems/Tool';
- import { View , Text , Button , TextInput , StyleSheet} from 'react-native';
- import { Icon } from 'react-native-elements'
- import React from 'react';
- import Library from 'trapilib/dist/lib';
- let {
- CoreSystem,
- ViewSystem,
- ViewNode
- } = Library;
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- borderRadius: 4,
- borderWidth: 1,
- borderColor: '#d6d7da',
- alignItems: 'center',
- justifyContent: 'center',
- },
- text:{
- flex:1,
- backgroundColor:'red'
- }
- });
- export default class InsertForm extends Tool{
- constructor(){
- super()
- }
- editViewNode(CS,node){
- let View = null;
- if(!node ){
- return;
- }
- let Views = CS.ViewSystem.views;
- Object.keys(Views).map((key) => {
-
- if(Views[key].ViewTree.nodes[node.id]){
- View = key;
- }
- })
- let EditNode = new ViewNode(Math.random(),"ViewComp",{text:"Manipulationg the dom",style:styles})
- Views[View].setContent(EditNode,node);
- }
- render(){
- return(
- <View>
- <Button
- title={<Icon name='comment'
- color="#606060"
- />}
- />
-
- </View>
- )
- }
- }
|