bricks/bricks/popup.js
2024-10-29 14:29:02 +08:00

203 lines
4.8 KiB
JavaScript

var bricks = window.bricks || {};
bricks.Popup = class extends bricks.VBox {
/*
{
timeout:0
auto_open:
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_dismiss:
auto_destroy:
movable:
*/
constructor(opts){
super(opts);
this.auto_task = null;
this.issub = false;
this.opened = false;
this.set_css('popup');
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));
}
if (this.movable){
this.setup_movable();
}
}
setup_movable(){
this.moving_w.bind('mousedown', this.rec_start_pos.bind(this));
}
rec_start_pos(e){
if (e.tsarget != this.moving_w.dom_element)
{
return;
}
this.offsetX = e.clientX - this.showRectage().left;
this.offsetY = e.clientY - this.showRectage().top;
this.moving_w.bind('mouseup', this.stop_moving.bind(this));
this.moving_w.bind('mousemove', this.moving.bind(this));
e.preventDefault();
}
moving(e){
if (e.target != this.moving_w.dom_element){
this.stop_moving();
}
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){
this.moving_w.unbind('mousemove', this.moving.bind(this));
this.moving_w.unbind('mouseup', this.stop_moving.bind(this));
}
click_outside(event){
if (event.target != this.dom_element){
this.dismiss();
}
}
add_widget(w, index){
super.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'
}
}
var _add_widget = super.add_widget;
open(){
var rect;
if (this.opened) {
return;
}
this.opened = true;
if (this.widget instanceof bricks.JsWidget){
rect = this.widget.showRectage()
this.issub = true;
} else {
var w = bricks.getWidgetById(this.widget, bricks.Body);
if (w){
this.issub = true
rect = w.showRectage();
} else {
rect = bricks.Body.showRectage();
}
}
var lt = archor_at(this.archor);
if (this.issub){
lt = this.transform2screen_at(rect, lt);
if (this.width && this.width.endsWith('%')){
this.set_style('width', parseFloat(rect.width) * parseFloat(this.width) + 'px');
}
if (this.height && this.height.endsWith('%')){
this.set_style('height', parseFloat(rect.height) * parseFloat(this.height) + 'px');
}
}
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)
}
}
dismiss(){
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.parent){
this.parent.remove_widget(this);
this.parent = null;
}
}
}
bricks.PopupWindow = class extends bricks.Popup {
constructor(opts){
super(opts);
this.title_bar = new bricks.HBox({cheight:1.5, width:100%});
this.title_bar.set_css('titlebar')
this.content_w = new bricks.Filler({});
this.auto_destroy = false;
this.moving_w = this.title_bar;
super._add_widget(this.title_bar);
super._add_widget(this.content_w);
this.build_title_bar();
}
build_title_bar(){
this.tb_w = new bricks.IconBar( {
margin:'5px',
rate:1
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_w.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));
}
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.Factory.register('Popup', bricks.Popup);
bricks.Factory.register('PopupWindow', bricks.PopupWindow);