466 lines
10 KiB
JavaScript
Executable File
466 lines
10 KiB
JavaScript
Executable File
var bricks = window.bricks || {};
|
|
bricks.TreeNode = class extends bricks.VBox {
|
|
constructor(tree, parent, data){
|
|
var opts = {
|
|
width:'100%',
|
|
height:'auto',
|
|
}
|
|
super(opts);
|
|
this.tree = tree;
|
|
this.parent = parent;
|
|
this.children_loaded = false;
|
|
this.data = data;
|
|
this.is_leaf = this.data.is_leaf;
|
|
this.params = {id:this.data[this.tree.opts.idField]};
|
|
if (this.tree.multitype_tree){
|
|
this.params['type'] = this.data[this.tree.opts.typeField];
|
|
}
|
|
var n = new bricks.HBox({
|
|
height:this.tree.row_height,
|
|
width:'100%'
|
|
})
|
|
n.dom_element.style.margin = bricks.app.charsize * 0.2;
|
|
this.add_widget(n);
|
|
n.bind('click', this.tree.node_click_handle.bind(this.tree, this));
|
|
this.node_widget = n;
|
|
this.create_node_content(n);
|
|
if (! this.data.is_leaf) {
|
|
this.container = new bricks.VBox({height:'auto'});
|
|
this.add_widget(this.container);
|
|
this.container.dom_element.style.marginLeft = bricks.app.charsize + 'px';
|
|
if (this.data.children){
|
|
this.tree.create_node_children(this, this.data.children);
|
|
}
|
|
this.container.hide();
|
|
}
|
|
}
|
|
getValue(){
|
|
return this.data;
|
|
}
|
|
get_id(){
|
|
return this.data[this.tree.idField];
|
|
}
|
|
selected(flg){
|
|
if (flg){
|
|
this.str_w.set_css('selected');
|
|
} else {
|
|
this.str_w.set_css('selected',true);
|
|
}
|
|
}
|
|
async toggleExpandCollapse(event){
|
|
if (event.params == 'open') {
|
|
await this.expand();
|
|
} else {
|
|
this.collapse()
|
|
}
|
|
}
|
|
async expand(){
|
|
if (this.is_leaf){
|
|
return;
|
|
}
|
|
if (this.tree.opts.dataurl && !this.is_leaf && !this.children_loaded){
|
|
await this.tree.get_children_data(this)
|
|
this.children_loaded = true;
|
|
}
|
|
this.container.show();
|
|
}
|
|
collapse(){
|
|
if (this.is_leaf){
|
|
return;
|
|
}
|
|
this.container.hide();
|
|
}
|
|
create_node_content(widget){
|
|
var img_size = bricks.app.charsize;
|
|
if (this.is_leaf){
|
|
widget.add_widget(new bricks.BlankIcon({}));
|
|
} else {
|
|
var srcs = this.tree.opts.node_state_imgs || {};
|
|
var sources = {};
|
|
sources['open'] = objget(srcs, 'open', bricks_resource('imgs/down_arrow.png'));
|
|
sources['close'] = objget(srcs, 'close', bricks_resource('imgs/right_arrow.png'));
|
|
this.trigle = new bricks.MultipleStateIcon({
|
|
state:'close',
|
|
urls:sources,
|
|
height:img_size,
|
|
width:img_size
|
|
});
|
|
this.trigle.bind('state_changed', this.toggleExpandCollapse.bind(this));
|
|
widget.add_widget(this.trigle);
|
|
}
|
|
if (this.tree.checkable){
|
|
this.check_w = new bricks.Check({name:'check'});
|
|
widget.add_widget(this.check_w);
|
|
this.check_w.bind('changed', this.tree.node_checked.bind(this.tree, this))
|
|
}
|
|
var dtype = this.data[this.tree.opts.typeField];
|
|
var icon = objget(TypeIcons, dtype);
|
|
if (!icon && this.tree.opts.default_type){
|
|
icon = objget(TypeIcons, his.tree.opts.default_type);
|
|
}
|
|
if (!icon){
|
|
icon = bricks_resource('imgs/folder.png');
|
|
}
|
|
var img = new bricks.Icon({
|
|
url:icon
|
|
});
|
|
widget.add_widget(img);
|
|
var txt = this.data[this.tree.opts.textField];
|
|
this.str_w = new bricks.Text({text:txt});
|
|
this.input = new bricks.UiStr({name:'text', value:txt});
|
|
this.input.bind('blur', this.edit_handle.bind(this));
|
|
widget.add_widget(this.str_w);
|
|
}
|
|
edit(){
|
|
this.node_widget.remove_widget(this.str_w);
|
|
this.input.setValue(this.str_w.text);
|
|
this.node_widget.add_widget(this.input);
|
|
}
|
|
async edit_handle(){
|
|
if (this.input.value==this.str_w.text)
|
|
return;
|
|
var v = this.input.value;
|
|
r = await this.syncdata('edit');
|
|
this.data[this.tree.opts.textField] = v;
|
|
this.str_w = new bricks.Text({text:v});
|
|
this.node_widget.remove_widget(this.input);
|
|
this.node_widget.add_widget(this.str_w);
|
|
}
|
|
async syncdata(mode){
|
|
}
|
|
}
|
|
|
|
bricks.Tree = class extends bricks.VScrollPanel {
|
|
/*
|
|
{
|
|
row_height:
|
|
multitype_tree:false,
|
|
idField:
|
|
textField:
|
|
type_icons:
|
|
typeField:
|
|
default_type:
|
|
data:
|
|
dataurl:
|
|
node_state_imgs:{
|
|
open:url,
|
|
close:url
|
|
},
|
|
admin:{
|
|
{
|
|
addurl:
|
|
deleteurl:
|
|
updateurl:
|
|
othertools:[
|
|
]
|
|
}
|
|
}
|
|
}
|
|
*/
|
|
constructor(options){
|
|
super(options);
|
|
this.row_height = this.opts.row_height || '35px';
|
|
this.multitype_tree = this.opts.multitype_tree||false;
|
|
this.selected_node = null;
|
|
this.create_toolbar();
|
|
this.checked_nodes = [];
|
|
this.container = new bricks.VBox({
|
|
"width":"100%",
|
|
"height":"auto",
|
|
"overflow":"auto"
|
|
});
|
|
this.add_widget(this.container);
|
|
this.data_id = null;
|
|
if (this.opts.dataurl){
|
|
schedule_once(this.get_children_data.bind(this, this), 0.1);
|
|
} else {
|
|
this.create_node_children(this, this.opts.data);
|
|
}
|
|
}
|
|
getValue(){
|
|
return this.data;
|
|
}
|
|
get_id(){
|
|
return this.data[this.idField];
|
|
}
|
|
create_toolbar(){
|
|
var toolbar = bricks.extend({}, this.toolbar);
|
|
var tools = [];
|
|
if (toolbar.tools){
|
|
toolbar.tools.forEach(f => tools.push(f));
|
|
}
|
|
if (this.editable){
|
|
tools.push({icon:bricks_resource('imgs/add.png'), name:'add'});
|
|
tools.push({icon:bricks_resource('imgs/update.png'), name:'update'});
|
|
tools.push({icon:bricks_resource('imgs/delete.png'), name:'delete'});
|
|
}
|
|
if (tools.length == 0){
|
|
return;
|
|
}
|
|
toolbar.tools = tools;
|
|
this.toolbar_w = new bricks.IconBar(toolbar);
|
|
this.add_widget(this.toolbar_w);
|
|
this.toolbar_w.bind('add', this.add_new_node.bind(this));
|
|
this.toolbar_w.bind('delete', this.delete_node.bind(this));
|
|
this.toolbar_w.bind('update', this.update_node.bind(this));
|
|
}
|
|
async add_new_node(){
|
|
var w = new bricks.ModalForm({
|
|
target:this,
|
|
"width":"80%",
|
|
"height":"80%",
|
|
title:'add new node',
|
|
fields:this.editable.fields
|
|
});
|
|
w.bind('submit', this.new_node_inputed.bind(this))
|
|
}
|
|
|
|
async new_node_inputed(event){
|
|
var d = event.params;
|
|
var node = this;
|
|
if (this.selected_node){
|
|
d[this.parentField] = this.selected+node.get_id();
|
|
node = this.selected_node;
|
|
}
|
|
var jc = new bricks.HttpJson()
|
|
var desc = jc.post(this.editable.add_url, {params:d});
|
|
if (desc.widgettype == 'Message'){
|
|
var data = desc.options.user_data;
|
|
this.build_subnode(node, data);
|
|
}
|
|
var w = await bricks.widgetBuild(desc, this);
|
|
}
|
|
async create_tree_nodes(node, records){
|
|
for (var i=0;i<records.length;i++){
|
|
this.build_subnode(node, records[i]);
|
|
}
|
|
}
|
|
build_subnode(node, data){
|
|
var n = new bricks.TreeNode(this, node, data);
|
|
node.container.add_widget(n);
|
|
}
|
|
|
|
async delete_node(){
|
|
}
|
|
|
|
async update_node(){
|
|
}
|
|
|
|
async get_children_data(node){
|
|
var jcall = bricks.jcall;
|
|
var d = await jcall(this.opts.dataurl,{
|
|
method : this.opts.method || 'GET',
|
|
params : node.params
|
|
})
|
|
if (d.length == 0){
|
|
node.is_leaf = true;
|
|
} else {
|
|
this.create_tree_nodes(node, d);
|
|
}
|
|
}
|
|
create_node_children(node, data){
|
|
if(!data) return;
|
|
for (var i=0; i<data.length; i++){
|
|
var n = new bricks.TreeNode(this, node, data[i]);
|
|
node.container.add_widget(n);
|
|
}
|
|
}
|
|
node_click_handle(node, event){
|
|
if (this.selected_node == node){
|
|
this.node_selected(false);
|
|
} else {
|
|
if (this.selected_node){
|
|
this.node_selected(this.selected_node, false);
|
|
}
|
|
this.selected_node = node;
|
|
this.node_selected(node, true);
|
|
}
|
|
}
|
|
node_selected(node, flag){
|
|
node.selected(flag);
|
|
var d = {
|
|
node:node,
|
|
data:node.getValue(),
|
|
id:node.get_id(),
|
|
selected:flag
|
|
}
|
|
this.dispatch('node_selected', node);
|
|
}
|
|
async node_checked(node, event){
|
|
var cb = event.target.bricks_widget;
|
|
var stat = cb.getValue().check;
|
|
var d = {
|
|
node:node,
|
|
data:node.getValue(),
|
|
id: node.get_id(),
|
|
check_stat:stat
|
|
}
|
|
this.dispatch('check_changed', d);
|
|
}
|
|
}
|
|
/*
|
|
在数控件中提供增删改能力
|
|
*/
|
|
bricks. EditableTree = class extends bricks.Tree {
|
|
/*
|
|
{
|
|
...
|
|
admin:{
|
|
url:
|
|
add:{
|
|
icon:
|
|
}
|
|
delete_node:{
|
|
icon:
|
|
}
|
|
move_up:
|
|
move_down:
|
|
move_top:
|
|
move_bottom:
|
|
}
|
|
}
|
|
*/
|
|
constructor(opts){
|
|
super(opts);
|
|
}
|
|
create_toolbar(){
|
|
if (!this.opts.admin){
|
|
return
|
|
}
|
|
var desc = {
|
|
height:'auto',
|
|
tools:[
|
|
{
|
|
name:'add',
|
|
icon:bricks_resource('imgs/add.png')
|
|
},
|
|
{
|
|
name:'edit',
|
|
icon:bricks_resource('imgs/edit.png')
|
|
},
|
|
{
|
|
name:'move_top',
|
|
icon:bricks_resource('imgs/move_top.png')
|
|
},
|
|
{
|
|
name:'move_up',
|
|
icon:bricks_resource('imgs/move_up.png')
|
|
},
|
|
{
|
|
name:'move_down',
|
|
icon:bricks_resource('imgs/move_down.png')
|
|
},
|
|
{
|
|
name:'move_button',
|
|
icon:bricks_resource('imgs/move_bottom.png')
|
|
},
|
|
{
|
|
name:'delete',
|
|
icon:bricks_resource('imgs/delete_node.png')
|
|
}
|
|
]
|
|
}
|
|
this.toolbar = new bricks.Toolbar(desc);
|
|
this.toolbar.bind('command', this.command_handle.bind(this));
|
|
this.add_widget(this.toolbar, 0);
|
|
}
|
|
command_handle(e){
|
|
bricks.debug('command event fire ...', e);
|
|
var name = e.params.name;
|
|
switch (name) {
|
|
case 'add':
|
|
this.add_node();
|
|
break;
|
|
case 'delete':
|
|
this.delete_node();
|
|
break;
|
|
case 'edit':
|
|
this.edit_node();
|
|
break;
|
|
case 'move_top':
|
|
this.move_top();
|
|
break;
|
|
case 'move_up':
|
|
this.move_up();
|
|
break;
|
|
case 'move_down':
|
|
this.move_down();
|
|
break;
|
|
case 'move_bottom':
|
|
this.move_bottom();
|
|
break;
|
|
}
|
|
}
|
|
add_node(){
|
|
var node = this;
|
|
if (this.selected_node) node = this.selected_node;
|
|
var data = { };
|
|
data[this.opts.idField] = 'undefined';
|
|
data[this.opts.textField] = 'new node';
|
|
var n = new bricks.TreeNode(this, node, data);
|
|
node.container.add_widget(n);
|
|
n.edit();
|
|
bricks.debug('add_node() finished ...');
|
|
}
|
|
edit_node(){
|
|
if (! this.selected_node){
|
|
return;
|
|
}
|
|
this.selected_node.edit();
|
|
}
|
|
delete_node(){
|
|
if (! this.selected_node){
|
|
return;
|
|
}
|
|
this.selected_node.delete();
|
|
}
|
|
move_top(){
|
|
if (! this.selected_node){
|
|
return;
|
|
}
|
|
this.selected_node.move_top();
|
|
}
|
|
move_up(){
|
|
if (! this.selected_node){
|
|
return;
|
|
}
|
|
this.selected_node.move_up();
|
|
}
|
|
move_down(){
|
|
if (! this.selected_node){
|
|
return;
|
|
}
|
|
this.selected_node.move_down();
|
|
}
|
|
move_botton(){
|
|
if (! this.selected_node){
|
|
return;
|
|
}
|
|
this.selected_node.move_botton();
|
|
}
|
|
}
|
|
bricks. PolymorphyTree = class extends bricks.Tree {
|
|
/*
|
|
{
|
|
root:[t1],
|
|
nodetypes:{
|
|
t1:{
|
|
idField:
|
|
typeField:
|
|
textField:
|
|
icon:
|
|
contextmenu:
|
|
subtypes:[]
|
|
}
|
|
}
|
|
data:
|
|
dataurl:
|
|
}
|
|
*/
|
|
constructor(opts){
|
|
super(opts);
|
|
}
|
|
}
|
|
bricks.Factory.register('Tree', bricks.Tree);
|
|
bricks.Factory.register('EditableTree', bricks.EditableTree);
|