| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- MODx.grid.DashboardWidgets = function(config) {
- config = config || {};
- this.exp = new Ext.grid.RowExpander({
- tpl : new Ext.Template(
- '<p class="desc">{description_trans}</p>'
- )
- });
- this.sm = new Ext.grid.CheckboxSelectionModel();
- Ext.applyIf(config,{
- url: MODx.config.connector_url
- ,baseParams: {
- action: 'system/dashboard/widget/getlist'
- }
- ,fields: ['id','name','name_trans','description','description_trans','type','content','namespace','lexicon','size','cls']
- ,paging: true
- ,remoteSort: true
- ,sm: this.sm
- ,plugins: [this.exp]
- ,columns: [this.exp,this.sm,{
- header: _('id')
- ,dataIndex: 'id'
- ,width: 50
- ,sortable: true
- },{
- header: _('name')
- ,dataIndex: 'name_trans'
- ,width: 150
- ,sortable: true
- ,editable: false
- },{
- header: _('widget_type')
- ,dataIndex: 'type'
- ,width: 80
- ,sortable: true
- },{
- header: _('widget_namespace')
- ,dataIndex: 'namespace'
- ,width: 120
- ,sortable: true
- }]
- ,tbar: [{
- text: _('widget_create')
- ,cls:'primary-button'
- ,handler: this.createDashboard
- ,scope: this
- },{
- text: _('bulk_actions')
- ,menu: [{
- text: _('selected_remove')
- ,handler: this.removeSelected
- ,scope: this
- }]
- },'->',{
- xtype: 'textfield'
- ,name: 'search'
- ,id: 'modx-dashboard-widget-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'
- ,text: _('filter_clear')
- ,id: 'modx-dashboard-widgets-filter-clear'
- ,cls: 'x-form-filter-clear'
- ,listeners: {
- 'click': {fn: this.clearFilter, scope: this},
- 'mouseout': { fn: function(evt){
- this.removeClass('x-btn-focus');
- }
- }
- }
- }]
- });
- MODx.grid.DashboardWidgets.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.grid.DashboardWidgets,MODx.grid.Grid,{
- getMenu: function() {
- var r = this.getSelectionModel().getSelected();
- var p = r.data.cls;
- var m = [];
- if (this.getSelectionModel().getCount() > 1) {
- m.push({
- text: _('selected_remove')
- ,handler: this.removeSelected
- ,scope: this
- });
- } else {
- if (p.indexOf('pupdate') != -1) {
- m.push({
- text: _('widget_update')
- ,handler: this.updateWidget
- });
- }
- if (p.indexOf('premove') != -1) {
- if (m.length > 0) m.push('-');
- m.push({
- text: _('widget_unplace')
- ,handler: this.removeWidget
- });
- }
- }
- if (m.length > 0) {
- this.addContextMenuItem(m);
- }
- }
- ,createDashboard: function() {
- MODx.loadPage('system/dashboards/widget/create');
- }
- ,removeSelected: function() {
- var cs = this.getSelectedAsList();
- if (cs === false) return false;
- MODx.msg.confirm({
- title: _('widget_remove_multiple')
- ,text: _('widget_remove_multiple_confirm')
- ,url: this.config.url
- ,params: {
- action: 'system/dashboard/widget/removeMultiple'
- ,widgets: cs
- }
- ,listeners: {
- 'success': {fn:function(r) {
- this.getSelectionModel().clearSelections(true);
- this.refresh();
- },scope:this}
- }
- });
- return true;
- }
- ,removeWidget: function() {
- MODx.msg.confirm({
- title: _('widget_remove')
- ,text: _('widget_remove_confirm')
- ,url: this.config.url
- ,params: {
- action: 'system/dashboard/widget/remove'
- ,id: this.menu.record.id
- }
- ,listeners: {
- 'success': {fn:this.refresh,scope:this}
- }
- });
- }
- ,updateWidget: function() {
- MODx.loadPage('system/dashboards/widget/update', 'id='+this.menu.record.id);
- }
- ,search: function(tf,newValue,oldValue) {
- var nv = newValue || tf;
- this.getStore().baseParams.query = Ext.isEmpty(nv) || Ext.isObject(nv) ? '' : nv;
- this.getBottomToolbar().changePage(1);
- //this.refresh();
- return true;
- }
- ,clearFilter: function() {
- this.getStore().baseParams = {
- action: 'system/dashboard/widget/getlist'
- };
- Ext.getCmp('modx-dashboard-widget-search').reset();
- this.getBottomToolbar().changePage(1);
- //this.refresh();
- }
- });
- Ext.reg('modx-grid-dashboard-widgets',MODx.grid.DashboardWidgets);
|