| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- /**
- * Loads a grid of modContexts.
- *
- * @class MODx.grid.Context
- * @extends MODx.grid.Grid
- * @param {Object} config An object of configuration properties
- * @xtype modx-grid-contexts
- */
- MODx.grid.Context = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- title: _('contexts')
- ,id: 'modx-grid-context'
- ,url: MODx.config.connector_url
- ,baseParams: {
- action: 'context/getlist'
- }
- ,fields: ['key','name','description','perm', 'rank']
- ,paging: true
- ,autosave: true
- ,save_action: 'context/updatefromgrid'
- ,remoteSort: true
- ,primaryKey: 'key'
- ,columns: [{
- header: _('key')
- ,dataIndex: 'key'
- ,width: 100
- ,sortable: true
- },{
- header: _('name')
- ,dataIndex: 'name'
- ,width: 150
- ,sortable: true
- ,editor: { xtype: 'textfield' }
- ,renderer: Ext.util.Format.htmlEncode
- },{
- header: _('description')
- ,dataIndex: 'description'
- ,width: 575
- ,sortable: false
- ,editor: { xtype: 'textfield' }
- ,renderer: Ext.util.Format.htmlEncode
- },{
- header: _('rank')
- ,dataIndex: 'rank'
- ,width: 100
- ,sortable: true
- ,editor: { xtype: 'numberfield' }
- }]
- ,tbar: [{
- text: _('create_new')
- ,cls:'primary-button'
- ,handler: this.create
- ,scope: this
- },'->',{
- xtype: 'textfield'
- ,name: 'search'
- ,id: 'modx-ctx-search'
- ,cls: 'x-form-filter'
- ,emptyText: _('search_ellipsis')
- ,listeners: {
- 'change': {fn: this.search, scope: this}
- ,'render': {fn: function(cmp) {
- new Ext.KeyMap(cmp.getEl(), {
- key: Ext.EventObject.ENTER
- ,fn: this.blur
- ,scope: cmp
- });
- },scope:this}
- }
- },{
- xtype: 'button'
- ,id: 'modx-filter-clear'
- ,cls: 'x-form-filter-clear'
- ,text: _('filter_clear')
- ,listeners: {
- 'click': {fn: this.clearFilter, scope: this},
- 'mouseout': { fn: function(evt){
- this.removeClass('x-btn-focus');
- }
- }
- }
- }]
- });
- MODx.grid.Context.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.grid.Context,MODx.grid.Grid,{
- updateContext: function(itm,e) {
- MODx.loadPage('context/update', 'key='+this.menu.record.key);
- }
- ,getMenu: function() {
- var r = this.getSelectionModel().getSelected();
- var p = r.data.perm;
- var m = [];
- if (p.indexOf('pnew') != -1) {
- m.push({
- text: _('context_duplicate')
- ,handler: this.duplicateContext
- ,scope: this
- });
- }
- if (p.indexOf('pedit') != -1) {
- m.push({
- text: _('context_update')
- ,handler: this.updateContext
- });
- }
- if (p.indexOf('premove') != -1) {
- m.push('-');
- m.push({
- text: _('context_remove')
- ,handler: this.remove
- ,scope: this
- });
- }
- return m;
- }
- ,duplicateContext: function() {
- var r = {
- key: this.menu.record.key
- ,newkey: ''
- };
- var w = MODx.load({
- xtype: 'modx-window-context-duplicate'
- ,record: r
- ,listeners: {
- 'success': {fn:function() {
- this.refresh();
- var tree = Ext.getCmp('modx-resource-tree');
- if (tree) {
- tree.refresh();
- }
- },scope:this}
- }
- });
- w.show();
- }
- ,search: function(tf,newValue,oldValue) {
- var nv = newValue || tf;
- this.getStore().baseParams.search = Ext.isEmpty(nv) || Ext.isObject(nv) ? '' : nv;
- this.getBottomToolbar().changePage(1);
- //this.refresh();
- return true;
- }
- ,clearFilter: function() {
- this.getStore().baseParams = {
- action: 'context/getList'
- };
- Ext.getCmp('modx-ctx-search').reset();
- this.getBottomToolbar().changePage(1);
- //this.refresh();
- }
-
- ,create: function(btn, e) {
- if (this.createWindow) {
- this.createWindow.destroy();
- }
-
- this.createWindow = MODx.load({
- xtype : 'modx-window-context-create',
- closeAction :'close',
- listeners : {
- 'success' : {
- fn : function() {
- this.afterAction();
- },
- scope : this
- }
- }
- });
-
- this.createWindow.show(e.target);
- }
-
- ,remove: function(btn, e) {
- MODx.msg.confirm({
- title : _('warning'),
- text : _('context_remove_confirm'),
- url : this.config.url,
- params : {
- action : 'context/remove',
- key : this.menu.record.key
- },
- listeners : {
- 'success' : {
- fn : function() {
- this.afterAction();
- },
- scope : this
- }
- }
- });
- }
-
- ,afterAction: function() {
- var cmp = Ext.getCmp('modx-resource-tree');
-
- if (cmp) {
- cmp.refresh();
- }
-
- this.getSelectionModel().clearSelections(true);
-
- this.refresh();
- }
- });
- Ext.reg('modx-grid-contexts',MODx.grid.Context);
- /**
- * Generates the create context window.
- *
- * @class MODx.window.CreateContext
- * @extends MODx.Window
- * @param {Object} config An object of options.
- * @xtype modx-window-context-create
- */
- MODx.window.CreateContext = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- title: _('context_create')
- ,url: MODx.config.connector_url
- ,action: 'context/create'
- ,fields: [{
- xtype: 'textfield'
- ,fieldLabel: _('context_key')
- ,name: 'key'
- ,anchor: '100%'
- ,maxLength: 100
- },{
- xtype: 'textfield'
- ,fieldLabel: _('name')
- ,name: 'name'
- ,anchor: '100%'
- ,maxLength: 100
- ,renderer: Ext.util.Format.htmlEncode
- },{
- xtype: 'textarea'
- ,fieldLabel: _('description')
- ,name: 'description'
- ,anchor: '100%'
- ,grow: true
- ,renderer: Ext.util.Format.htmlEncode
- },{
- xtype: 'numberfield'
- ,fieldLabel: _('rank')
- ,name: 'rank'
- ,allowBlank: true
- ,anchor: '100%'
- }]
- ,keys: []
- });
- MODx.window.CreateContext.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.window.CreateContext,MODx.Window);
- Ext.reg('modx-window-context-create',MODx.window.CreateContext);
- /**
- * Loads the Contexts panel
- *
- * @class MODx.panel.Contexts
- * @extends MODx.FormPanel
- * @param {Object} config An object of configuration options
- * @xtype modx-panel-contexts
- */
- MODx.panel.Contexts = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- id: 'modx-panel-contexts'
- ,cls: 'container'
- ,bodyStyle: ''
- ,defaults: { collapsible: false ,autoHeight: true }
- ,items: [{
- html: _('contexts')
- ,id: 'modx-contexts-header'
- ,xtype: 'modx-header'
- },{
- layout: 'form'
- ,items: [{
- html: '<p>'+_('context_management_message')+'</p>'
- ,xtype: 'modx-description'
- },{
- xtype: 'modx-grid-contexts'
- ,cls:'main-wrapper'
- ,preventRender: true
- }]
- }]
- });
- MODx.panel.Contexts.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.panel.Contexts,MODx.FormPanel);
- Ext.reg('modx-panel-contexts',MODx.panel.Contexts);
|