mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-27 16:57:00 -06:00
142 lines
4.3 KiB
JavaScript
142 lines
4.3 KiB
JavaScript
define(
|
|
['underscore', 'pgadmin', 'wcdocker'],
|
|
function(_, pgAdmin) {
|
|
|
|
var pgBrowser = pgAdmin.Browser = pgAdmin.Browser || {};
|
|
|
|
pgAdmin.Browser.Panel = function(options) {
|
|
var defaults = [
|
|
'name', 'title', 'width', 'height', 'showTitle', 'isCloseable',
|
|
'isPrivate', 'content', 'icon', 'events', 'onCreate', 'elContainer'
|
|
];
|
|
_.extend(this, _.pick(options, defaults));
|
|
}
|
|
|
|
_.extend(pgAdmin.Browser.Panel.prototype, {
|
|
name:'',
|
|
title: '',
|
|
width: 300,
|
|
height: 600,
|
|
showTitle: true,
|
|
isCloseable: true,
|
|
isPrivate: false,
|
|
content: '',
|
|
icon: '',
|
|
panel: null,
|
|
onCreate: null,
|
|
elContainer: false,
|
|
load: function(docker, title) {
|
|
var that = this;
|
|
if (!that.panel) {
|
|
docker.registerPanelType(that.name, {
|
|
title: that.title,
|
|
isPrivate: that.isPrivate,
|
|
onCreate: function(myPanel) {
|
|
$(myPanel).data('pgAdminName', that.name);
|
|
myPanel.initSize(that.width, that.height);
|
|
|
|
if (!that.showTitle)
|
|
myPanel.title(false);
|
|
else {
|
|
myPanel.title(title || that.title);
|
|
if (that.icon != '')
|
|
myPanel.icon(that.icon)
|
|
}
|
|
|
|
var $container = $('<div>', {
|
|
'class': 'pg-panel-content'
|
|
}).append($(that.content));
|
|
|
|
myPanel.closeable(!!that.isCloseable);
|
|
myPanel.layout().addItem($container);
|
|
that.panel = myPanel;
|
|
if (that.events && _.isObject(that.events)) {
|
|
_.each(that.events, function(v, k) {
|
|
if (v && _.isFunction(v)) {
|
|
myPanel.on(k, v);
|
|
}
|
|
});
|
|
}
|
|
_.each([
|
|
wcDocker.EVENT.UPDATED, wcDocker.EVENT.VISIBILITY_CHANGED,
|
|
wcDocker.EVENT.BEGIN_DOCK, wcDocker.EVENT.END_DOCK,
|
|
wcDocker.EVENT.GAIN_FOCUS, wcDocker.EVENT.LOST_FOCUS,
|
|
wcDocker.EVENT.CLOSED, wcDocker.EVENT.BUTTON,
|
|
wcDocker.EVENT.ATTACHED, wcDocker.EVENT.DETACHED,
|
|
wcDocker.EVENT.MOVE_STARTED, wcDocker.EVENT.MOVE_ENDED,
|
|
wcDocker.EVENT.MOVED, wcDocker.EVENT.RESIZE_STARTED,
|
|
wcDocker.EVENT.RESIZE_ENDED, wcDocker.EVENT.RESIZED,
|
|
wcDocker.EVENT.SCROLLED], function(ev) {
|
|
myPanel.on(ev, that.eventFunc.bind(myPanel, ev));
|
|
});
|
|
|
|
if (that.onCreate && _.isFunction(that.onCreate)) {
|
|
that.onCreate.apply(that, [myPanel, $container]);
|
|
}
|
|
|
|
if (that.elContainer) {
|
|
myPanel.pgElContainer = $container;
|
|
$container.addClass('pg-el-container');
|
|
_.each([
|
|
wcDocker.EVENT.RESIZED, wcDocker.EVENT.ATTACHED,
|
|
wcDocker.EVENT.DETACHED, wcDocker.EVENT.VISIBILITY_CHANGED
|
|
], function(ev) {
|
|
myPanel.on(ev, that.resizedContainer.bind(myPanel));
|
|
});
|
|
that.resizedContainer.apply(myPanel);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
},
|
|
eventFunc: function(eventName) {
|
|
var name = $(this).data('pgAdminName');
|
|
|
|
try {
|
|
pgBrowser.Events.trigger('pgadmin-browser:panel', eventName, this, arguments);
|
|
pgBrowser.Events.trigger('pgadmin-browser:panel:' + eventName, this, arguments);
|
|
|
|
if (name) {
|
|
pgBrowser.Events.trigger('pgadmin-browser:panel-' + name, eventName, this, arguments);
|
|
pgBrowser.Events.trigger('pgadmin-browser:panel-' + name + ':' + eventName, this, arguments);
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
}
|
|
},
|
|
resizedContainer: function() {
|
|
var p = this;
|
|
|
|
if (p.pgElContainer && !p.pgResizeTimeout) {
|
|
if (!p.isVisible()) {
|
|
clearTimeout(p.pgResizeTimeout);
|
|
p.pgResizeTimeout = null;
|
|
|
|
return;
|
|
}
|
|
p.pgResizeTimeout = setTimeout(
|
|
function() {
|
|
var w = p.width();
|
|
p.pgResizeTimeout = null;
|
|
|
|
if (w <= 480) {
|
|
w = 'xs';
|
|
} else if (w < 600) {
|
|
w = 'sm';
|
|
} else if (w < 768) {
|
|
w = 'md';
|
|
} else {
|
|
w = 'lg';
|
|
}
|
|
|
|
p.pgElContainer.attr('el', w);
|
|
},
|
|
100
|
|
);
|
|
}
|
|
}
|
|
});
|
|
|
|
return pgAdmin.Browser.Panel;
|
|
});
|