bricks/bricks/tree.js

466 lines
10 KiB
JavaScript
Raw Normal View History

2024-02-01 17:54:04 +08:00
var bricks = window.bricks || {};
2024-02-22 00:48:58 +08:00
bricks.TreeNode = class extends bricks.VBox {
2023-09-14 10:28:07 +08:00
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];
}
2024-02-01 17:54:04 +08:00
var n = new bricks.HBox({
2024-02-25 12:31:02 +08:00
height:this.tree.row_height,
2023-09-14 10:28:07 +08:00
width:'100%'
})
2024-02-01 16:40:31 +08:00
n.dom_element.style.margin = bricks.app.charsize * 0.2;
2023-09-14 10:28:07 +08:00
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) {
2024-02-25 12:31:02 +08:00
this.container = new bricks.VBox({height:'auto'});
2023-09-14 10:28:07 +08:00
this.add_widget(this.container);
2024-02-01 16:40:31 +08:00
this.container.dom_element.style.marginLeft = bricks.app.charsize + 'px';
2023-09-14 10:28:07 +08:00
if (this.data.children){
this.tree.create_node_children(this, this.data.children);
}
this.container.hide();
}
}
2024-05-20 18:16:38 +08:00
getValue(){
return this.data;
}
get_id(){
return this.data[this.tree.idField];
}
2023-09-14 10:28:07 +08:00
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){
2024-02-01 16:40:31 +08:00
var img_size = bricks.app.charsize;
2023-09-14 10:28:07 +08:00
if (this.is_leaf){
2024-02-01 17:54:04 +08:00
widget.add_widget(new bricks.BlankIcon({}));
2023-09-14 10:28:07 +08:00
} 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'));
2024-02-01 17:54:04 +08:00
this.trigle = new bricks.MultipleStateIcon({
2023-09-14 10:28:07 +08:00
state:'close',
urls:sources,
height:img_size,
width:img_size
});
this.trigle.bind('state_changed', this.toggleExpandCollapse.bind(this));
widget.add_widget(this.trigle);
}
2024-05-20 18:16:38 +08:00
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))
}
2023-09-14 10:28:07 +08:00
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');
}
2024-02-01 17:54:04 +08:00
var img = new bricks.Icon({
2023-09-14 10:28:07 +08:00
url:icon
});
widget.add_widget(img);
var txt = this.data[this.tree.opts.textField];
2024-05-20 18:16:38 +08:00
this.str_w = new bricks.Text({text:txt});
2024-02-01 17:54:04 +08:00
this.input = new bricks.UiStr({name:'text', value:txt});
2023-09-14 10:28:07 +08:00
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;
2024-02-01 17:54:04 +08:00
this.str_w = new bricks.Text({text:v});
2023-09-14 10:28:07 +08:00
this.node_widget.remove_widget(this.input);
this.node_widget.add_widget(this.str_w);
}
async syncdata(mode){
}
}
2024-02-22 00:48:58 +08:00
bricks.Tree = class extends bricks.VScrollPanel {
2023-09-14 10:28:07 +08:00
/*
{
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();
2024-05-20 18:16:38 +08:00
this.checked_nodes = [];
2024-02-25 12:31:02 +08:00
this.container = new bricks.VBox({
"width":"100%",
"height":"auto",
"overflow":"auto"
});
2023-09-14 10:28:07 +08:00
this.add_widget(this.container);
this.data_id = null;
if (this.opts.dataurl){
2024-05-20 18:16:38 +08:00
schedule_once(this.get_children_data.bind(this, this), 0.1);
} else {
this.create_node_children(this, this.opts.data);
2023-09-14 10:28:07 +08:00
}
}
2024-05-20 18:28:57 +08:00
getValue(){
return this.data;
}
get_id(){
return this.data[this.idField];
}
2023-09-14 10:28:07 +08:00
create_toolbar(){
2024-05-14 17:47:24 +08:00
var toolbar = bricks.extend({}, this.toolbar);
var tools = [];
2024-05-20 18:16:38 +08:00
if (toolbar.tools){
toolbar.tools.forEach(f => tools.push(f));
}
2024-05-14 17:47:24 +08:00
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'});
}
2024-05-20 18:16:38 +08:00
if (tools.length == 0){
return;
}
2024-05-14 17:47:24 +08:00
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));
2024-05-20 18:16:38 +08:00
this.toolbar_w.bind('delete', this.delete_node.bind(this));
2024-05-14 17:47:24 +08:00
this.toolbar_w.bind('update', this.update_node.bind(this));
2023-09-14 10:28:07 +08:00
}
2024-05-20 18:16:38 +08:00
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(){
}
2023-09-14 10:28:07 +08:00
async get_children_data(node){
2024-02-01 17:54:04 +08:00
var jcall = bricks.jcall;
2023-09-14 10:28:07 +08:00
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){
2024-05-20 18:16:38 +08:00
if(!data) return;
2023-09-14 10:28:07 +08:00
for (var i=0; i<data.length; i++){
2024-02-01 17:54:04 +08:00
var n = new bricks.TreeNode(this, node, data[i]);
2023-09-14 10:28:07 +08:00
node.container.add_widget(n);
}
}
node_click_handle(node, event){
2024-05-14 17:47:24 +08:00
if (this.selected_node == node){
2024-05-20 18:16:38 +08:00
this.node_selected(false);
2024-05-14 17:47:24 +08:00
} else {
if (this.selected_node){
2024-05-20 18:16:38 +08:00
this.node_selected(this.selected_node, false);
2024-05-14 17:47:24 +08:00
}
this.selected_node = node;
2024-05-20 18:16:38 +08:00
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
2023-09-14 10:28:07 +08:00
}
2024-05-20 18:16:38 +08:00
this.dispatch('check_changed', d);
2023-09-14 10:28:07 +08:00
}
}
2024-05-14 17:47:24 +08:00
/*
在数控件中提供增删改能力
*/
2024-02-01 16:40:31 +08:00
bricks. EditableTree = class extends bricks.Tree {
2023-09-14 10:28:07 +08:00
/*
{
...
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')
}
]
}
2024-02-01 17:54:04 +08:00
this.toolbar = new bricks.Toolbar(desc);
2023-09-14 10:28:07 +08:00
this.toolbar.bind('command', this.command_handle.bind(this));
this.add_widget(this.toolbar, 0);
}
command_handle(e){
2024-03-08 10:54:16 +08:00
bricks.debug('command event fire ...', e);
2023-09-14 10:28:07 +08:00
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';
2024-02-01 17:54:04 +08:00
var n = new bricks.TreeNode(this, node, data);
2023-09-14 10:28:07 +08:00
node.container.add_widget(n);
n.edit();
2024-03-08 10:54:16 +08:00
bricks.debug('add_node() finished ...');
2023-09-14 10:28:07 +08:00
}
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();
}
}
2024-02-01 16:40:31 +08:00
bricks. PolymorphyTree = class extends bricks.Tree {
2023-09-14 10:28:07 +08:00
/*
{
root:[t1],
nodetypes:{
t1:{
idField:
typeField:
textField:
icon:
contextmenu:
subtypes:[]
}
}
data:
dataurl:
}
*/
constructor(opts){
super(opts);
}
}
2024-02-01 16:40:31 +08:00
bricks.Factory.register('Tree', bricks.Tree);
bricks.Factory.register('EditableTree', bricks.EditableTree);