mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
104 lines
3.4 KiB
JavaScript
104 lines
3.4 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2020, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
define('pgadmin.node.server_group', [
|
|
'sources/gettext', 'sources/url_for', 'jquery', 'underscore',
|
|
'sources/pgadmin', 'pgadmin.user_management.current_user', 'pgadmin.browser', 'pgadmin.browser.node',
|
|
], function(gettext, url_for, $, _, pgAdmin, current_user) {
|
|
|
|
if (!pgAdmin.Browser.Nodes['server_group']) {
|
|
pgAdmin.Browser.Nodes['server_group'] = pgAdmin.Browser.Node.extend({
|
|
parent_type: null,
|
|
type: 'server_group',
|
|
dialogHelp: url_for('help.static', {'filename': 'server_group_dialog.html'}),
|
|
label: gettext('Server Group'),
|
|
width: '250px',
|
|
height: '150px',
|
|
is_collection: true,
|
|
Init: function() {
|
|
/* Avoid multiple registration of menus */
|
|
if (this.initialized)
|
|
return;
|
|
|
|
this.initialized = true;
|
|
|
|
pgAdmin.Browser.add_menus([{
|
|
name: 'create_server_group', node: 'server_group', module: this,
|
|
applies: ['object', 'context'], callback: 'show_obj_properties',
|
|
category: 'create', priority: 1, label: gettext('Server Group...'),
|
|
data: {'action': 'create'}, icon: 'wcTabIcon icon-server_group',
|
|
}]);
|
|
},
|
|
model: pgAdmin.Browser.Node.Model.extend({
|
|
defaults: {
|
|
id: undefined,
|
|
name: null,
|
|
user_id: undefined,
|
|
},
|
|
schema: [
|
|
{
|
|
id: 'id', label: gettext('ID'), type: 'int', group: null,
|
|
mode: ['properties'],
|
|
visible: function(model){
|
|
if (model.attributes.user_id != current_user.id && !current_user.is_admin)
|
|
return false;
|
|
return true;
|
|
},
|
|
},{
|
|
id: 'name', label: gettext('Name'), type: 'text', group: null,
|
|
mode: ['properties', 'edit', 'create'],
|
|
disabled: function(model){
|
|
if (model.attributes.user_id != current_user.id && !_.isUndefined(model.attributes.user_id))
|
|
return true;
|
|
return false;
|
|
},
|
|
},
|
|
],
|
|
validate: function() {
|
|
var errmsg = null;
|
|
|
|
this.errorModel.clear();
|
|
|
|
if (!this.isNew() && 'id' in this.changed) {
|
|
errmsg = gettext('The ID cannot be changed.');
|
|
this.errorModel.set('id', errmsg);
|
|
return errmsg;
|
|
}
|
|
if (_.isUndefined(this.get('name')) ||
|
|
_.isNull(this.get('name')) ||
|
|
String(this.get('name')).replace(/^\s+|\s+$/g, '') == '') {
|
|
errmsg = gettext('Name cannot be empty.');
|
|
this.errorModel.set('name', errmsg);
|
|
return errmsg;
|
|
}
|
|
return null;
|
|
},
|
|
}),
|
|
|
|
canDrop: function(itemData) {
|
|
var serverOwner = itemData.user_id;
|
|
if (serverOwner != current_user.id)
|
|
return false;
|
|
return true; },
|
|
dropAsRemove: true,
|
|
canDelete: function(i) {
|
|
var s = pgAdmin.Browser.tree.siblings(i, true);
|
|
|
|
/* This is the only server group - we can't remove it*/
|
|
if (!s || s.length == 0) {
|
|
return false;
|
|
}
|
|
return true;
|
|
},
|
|
});
|
|
}
|
|
|
|
return pgAdmin.Browser.Nodes['server_group'];
|
|
});
|