import React from 'react';
import {StyleSheet, View, Text , Button} from 'react-native';
import { TextInput } from 'react-native';
import BaseSystem from './System'
export default class ModuleBar extends BaseSystem {
constructor(CS){
super();
this.CoreSystem = CS;
}
selectModule(mod, namespace) {
this.selectedModule = mod;
this.selectedModuleNamespace = namespace;
}
dragStart(ev, data) {
ev.nativeEvent.dataTransfer.setData("MyObject", JSON.stringify(data));
}
render(){
let list = this.CoreSystem.ModuleSystem.list();
let Render = Object.keys(list).map((key, index) => {
let items = Object.keys(list[key]).map((name,ind) => {
let prop = {
style:ModPrev,
text:"sdasdasd"
}
return (
{name}
Modern
this.selectModule(list[key][name], key)}>
this.dragStart(ev, {
namespace: key,
ctor: name
})}>
{/*this.CoreSystem.ModuleSystem.createElementCtor(list[key][name])*/}
)
});
return
{
this.visibleNamespace ?
this.visibleNamespace = null :
this.visibleNamespace = key;
this.forceUpdate();
}}>
{key}
{this.visibleNamespace === key ? items : null}
;
})
return Render;
}
}
const ModPrev = StyleSheet.create({
container:{
paddingTop: 15,
marginBottom:34,
width:219
},
previewContainer: {
minWidth: 50,
minHeight:40,
backgroundColor: 'rgba(255,255,255,0.1)',
borderWidth: 1,
borderColor: 'rgba(0,0,0,0.1)',
shadowColor: "rgba(0,0,0,0.81)",
shadowOffset: {
width: 0,
height: 1
},
shadowOpacity: 0.30,
shadowRadius: 4.65,
elevation: 3,
cursor: 'pointer'
},
NameCont:{
flex:1,
flexDirection:'row',
justifyContent:"space-between"
},
Namespace: {
cursor: 'pointer'
},
NamespaceName: {
fontWeight: 'bold'
},
name:{
textAlign:'left',
fontSize:12,
color:'#707070',
opacity:0.8,
marginBottom:8,
letterSpacing:0,
fontFamily: 'thin'
},
modern:{
color:'#707070',
fontSize:7,
letterSpacing:0.6,
opacity:0.5,
marginTop:5,
textTransform: 'uppercase',
fontFamily: 'thin'
},
ContentCont:{
backgroundColor:'#F8F8F8',
width:216,
padding: 10
},
content:{
flex:1,
alignItems: 'center',
justifyContent:'center'
}
})