bricks/bricks/popup.js
2024-10-30 17:56:50 +08:00

340 lines
8.7 KiB
JavaScript

var bricks = window.bricks || {};
bricks.Popup = class extends bricks.VBox {
/*
{
timeout:0
archor:one of ['tl', 'tc', 'tr', 'cl', 'cc', 'cr', 'bl','bc', 'br']
widget:null for bricks.Body, string value for widget's id or a widget object;
auto_open:boolean
auto_dismiss:boolean
auto_destroy:boolean
movable:boolean
resizable:boolean
modal:boolean
*/
constructor(opts){
super(opts);
this.auto_task = null;
this.issub = false;
this.opened = false;
this.set_css('popup');
this.old_add_widget = super.add_widget.bind(this);
const zindex = bricks.app.new_zindex();
this.set_style('zIndex', zindex);
this.moving_w = this;
if (this.auto_dismiss){
bricks.Body.bind('click', this.click_outside.bind(this));
}
this.target_w = bricks.Body;
this.moving_status = false;
if (this.movable){
this.setup_movable();
// console.log('movable ...');
}
if (this.resizable){
this.setup_resizable();
}
this.set_style('display', 'none');
bricks.Body.add_widget(this);
}
setup_resizable(){
this.resizable_w = new bricks.Icon({rate:1.5, url:bricks_resource('imgs/right-bottom-triangle.png')});
this.old_add_widget(this.resizable_w);
this.resizable_w.set_css('resizebox');
this.resizable_w.bind('mousedown', this.resize_start_pos.bind(this));
bricks.Body.bind('mousemove', this.resizing.bind(this));
bricks.Body.bind('mouseup', this.stop_resizing.bind(this));
}
resize_start_pos(e){
if (e.target != this.resizable_w.dom_element)
{
// console.log('not event target');
return;
}
var rect = this.showRectage();
this.resize_status = true;
this.s_offsetX = e.clientX;
this.s_offsetY = e.clientY;
this.s_width = rect.width;
this.s_height = rect.height;
e.preventDefault();
// console.log('resize_start_pos():', this.s_width, this.s_height, this.s_offsetX, this.s_offsetY);
}
resizing(e){
if (e.target != this.resizable_w.dom_element){
this.stop_resizing();
// console.log('resizing(): not event target');
return;
}
if (!this.resize_status){
// console.log('resizing(): not in resize status');
return;
}
var cx, cy;
cx = this.s_width + e.clientX - this.s_offsetX;
cy = this.s_height + e.clientY - this.s_offsetY;
this.set_style('width', cx + 'px');
this.set_style('height', cy + 'px');
// console.log('resizing():', this.resize_status, cx, cy);
e.preventDefault();
}
stop_resizing(e){
this.resize_status = false;
bricks.Body.unbind('mousemove', this.resizing.bind(this));
bricks.Body.unbind('mouseup', this.stop_resizing.bind(this));
// console.log('stop_resizing():', this.resize_status);
}
setup_movable(){
this.moving_w.bind('mousedown', this.rec_start_pos.bind(this));
this.moving_w.bind('touchstart', this.rec_start_pos.bind(this));
}
rec_start_pos(e){
if (e.target != this.moving_w.dom_element)
{
// console.log('moving star failed', e.target, this.moving_w.dom_element, 'difference ...');
return;
}
this.moving_status = true;
this.offsetX = e.clientX - this.showRectage().left;
this.offsetY = e.clientY - this.showRectage().top;
bricks.Body.bind('mouseup', this.stop_moving.bind(this));
bricks.Body.bind('touchend', this.stop_moving.bind(this));
this.moving_w.bind('mousemove', this.moving.bind(this));
this.moving_w.bind('touchmove', this.moving.bind(this));
e.preventDefault();
// console.log('moving started ...');
}
moving(e){
if (e.target != this.moving_w.dom_element){
// console.log('moving failed', e.target, this.moving_w.dom_element, 'difference ...');
this.stop_moving();
}
if (!this.moving_status){
// console.log('moving failed', 'not started ...');
return;
}
var cx, cy;
cx = e.clientX - this.offsetX;
cy = e.clientY - this.offsetY;
this.set_style('left', cx + 'px');
this.set_style('top', cy + 'px');
}
stop_moving(e){
// console.log('stop moving ....');
this.moving_status = false;
this.moving_w.unbind('mousemove', this.moving.bind(this));
this.moving_w.unbind('touchmove', this.moving.bind(this));
bricks.Body.unbind('mouseup', this.stop_moving.bind(this));
bricks.Body.unbind('touchend', this.stop_moving.bind(this));
}
click_outside(event){
if (event.target != this.dom_element){
this.dismiss();
}
}
add_widget(w, index){
this.old_add_widget(w, index);
if (this.auto_open){
this.open();
}
}
transform2screen_at(rect, lt){
var screen_rect = bricks.Body.showRectage();
var t, l;
t = rect.top + parseInt(lt.y) / 100 * (rect.bottom - rect.top);
l = rect.left + parseInt(lt.x) / 100 * (rect.right - rect.left);
return {
top:t + 'px',
left:l + 'px'
}
}
open(){
var rect, w, h;
if (this.opened) {
return;
}
this.opened = true;
if (this.widget instanceof bricks.JsWidget){
this.target_w = this.widget;
this.issub = true;
} else {
var w = bricks.getWidgetById(this.widget, bricks.Body);
if (w){
this.issub = true
this.target_w = w;
}
}
rect = this.target_w.showRectage();
var lt = archor_at(this.archor);
if (this.issub){
lt = this.transform2screen_at(rect, lt);
if (typeof(this.width) == 'string' && this.width.endsWith('%')){
w = parseFloat(rect.width) * parseFloat(this.width) / 100;
this.set_style('width', w + 'px');
console.log('rect=', rect, 'w=', w);
}
if (typeof(this.height) == 'string' && this.height.endsWith('%')){
h = parseFloat(rect.height) * parseFloat(this.height) / 100;
this.set_style('height', h + 'px');
console.log('rect=', rect, 'h=', h);
}
}
this.set_style('top',lt.top);
this.set_style('left',lt.left);
this.set_style('display', 'block');
if (this.timeout > 0){
this.auto_task = schedule_once(this.auto_dismiss.bind(this), this.timeout)
}
if (this.opts.modal){
this.target_w.disabled(true);
}
}
dismiss(){
if (this.opts.modal){
this.target_w.disabled(false);
}
this.opened = false;
if (this.auto_task){
this.auto_task.cancel();
this.auto_task = null;
}
this.set_style('display','none');
if (this.auto_destroy){
this.destroy();
}
}
destroy(){
if (this.opened){
this.dismiss();
}
if (this.parent){
this.parent.remove_widget(this);
this.parent = null;
}
}
}
bricks.PopupWindow = class extends bricks.Popup {
/*
{
title:
icon:
params:
url:
}
*/
constructor(opts){
super(opts);
this.title_bar = new bricks.HBox({cheight:1, width:'100%'});
this.title_bar.set_css('titlebar')
this.auto_destroy = false;
this.moving_w = this.title_bar;
this.old_add_widget = bricks.Layout.prototype.add_widget.bind(this);
this.old_add_widget(this.title_bar);
this.build_title_bar();
var filler = new bricks.Filler({});
this.old_add_widget(filler)
this.content_w = new bricks.VScrollPanel({width:"100%"});
filler.add_widget(this.content_w);
}
async load_content(){
var dic = {
"widgettype":"urlwidget",
"options":{
"params":this.params,
"url":this.url
}
}
var w = bricks.widgetBuild(dic, bricks.Body);
this.add_widget(w);
}
build_title_bar(){
var icon = new bricks.Icon({
rate:this.opts.rate,
url:this.opts.icon || bricks_resource('imgs/app.png')
});
this.title_bar.add_widget(icon);
this.tb_w = new bricks.IconBar( {
cheight:1,
margin:'5px',
rate:0.8,
tools:[
{
name:'delete',
icon:bricks_resource('imgs/app_delete.png'),
dynsize:true,
tip:'Destroy this window'
},
{
name:'minimax',
icon:bricks_resource('imgs/app_minimax.png'),
dynsize:true,
tip:'minimax this window'
},
{
name:'fullscreen',
icon:bricks_resource('imgs/app_fullscreen.png'),
dynsize:true,
tip:'fullscreen this window'
}
]
});
this.title_bar.add_widget(this.tb_w);
this.tb_w.bind('delete', this.destroy.bind(this));
this.tb_w.bind('minimax', this.dismiss.bind(this));
this.tb_w.bind('fullscreen', this.enter_fullscreen.bind(this));
if (this.title){
this.title_w = new bricks.Text({text:this.title});
this.title_bar.add_widget(this.title_w);
}
}
set_title(txt){
if (this.title_w){
this.title_w.set_text(txt);
}
}
add_widget(w, index){
this.content_w.add_widget(w, index);
if (this.auto_open){
this.open();
}
}
open(){
var f = bricks.app.docks.find(o => {
if (o == this){
}
});
if (! f){
bricks.app.docks.push(this);
}
super.open();
}
dismiss(){
var f = bricks.app.docks.find(o=> o===this);
if (!f){
bricks.app.docks.push(this);
}
super.dismiss()
}
}
bricks.Dock = class extends bricks.HBox {
constructor(opts){
opts.cheight = opts.cheight || 2;
opts.width = opts.width || "80%";
super(opts);
this.set_css('scroll');
this.pw = [];
}
add_popupwindow(pw){
var info = pw.get_window_info();
}
del_popupwindow(pw){
}
}
bricks.Factory.register('Popup', bricks.Popup);
bricks.Factory.register('PopupWindow', bricks.PopupWindow);