make enabling the plugin more robust

This commit is contained in:
Damien Churchill 2010-04-26 00:51:17 +01:00
parent 466b245fdf
commit a47f9bc8dd
1 changed files with 52 additions and 32 deletions

View File

@ -177,36 +177,14 @@ Deluge.plugins.LabelPlugin = Ext.extend(Deluge.Plugin, {
}); });
}, },
onDisable: function() { setFilter: function(filter) {
filter.show_zero = true;
filter.list.on('contextmenu', this.onLabelContextMenu, this);
filter.header.on('contextmenu', this.onLabelHeaderContextMenu, this);
this.filter = filter;
}, },
onEnable: function() { updateTorrentMenu: function(filter) {
deluge.sidebar.on('filtercreate', this.onFilterCreate, this);
deluge.sidebar.on('afterfiltercreate', this.onAfterFilterCreate, this);
Deluge.FilterPanel.templates.label = '<div class="x-deluge-filter x-deluge-{filter:lowercase}"><tpl if="filter">{filter}</tpl><tpl if="!filter">no label</tpl> ({count})</div>';
deluge.menus.torrent.add({
xtype: 'menuseparator'
});
this.torrentMenu = new Ext.menu.Menu({
items: [{
text: _('No Label'),
label: '',
handler: this.onTorrentMenuClick,
scope: this
}]
});
deluge.menus.torrent.add({
text: _('Label'),
menu: this.torrentMenu
})
},
onAfterFilterCreate: function(sidebar, filter) {
if (filter.filter != 'label') return;
Ext.each(filter.getStates(), function(state) { Ext.each(filter.getStates(), function(state) {
if (!state) return; if (!state) return;
this.torrentMenu.addMenuItem({ this.torrentMenu.addMenuItem({
@ -218,12 +196,54 @@ Deluge.plugins.LabelPlugin = Ext.extend(Deluge.Plugin, {
}, this); }, this);
}, },
onDisable: function() {
deluge.sidebar.un('filtercreate', this.onFilterCreate);
deluge.sidebar.un('afterfiltercreate', this.onAfterFilterCreate);
delete Deluge.FilterPanel.templates.label;
this.deregisterTorrentStatus('label');
deluge.menus.torrent.remove(this.tmSep);
deluge.menus.torrent.remove(this.tm);
},
onEnable: function() {
if (deluge.sidebar.hasFilter('label')) {
var filter = deluge.sidebar.getFilter('label');
this.setFilter(filter);
this.updateTorrentMenu(filter);
} else {
deluge.sidebar.on('filtercreate', this.onFilterCreate, this);
deluge.sidebar.on('afterfiltercreate', this.onAfterFilterCreate, this);
Deluge.FilterPanel.templates.label = '<div class="x-deluge-filter x-deluge-{filter:lowercase}"><tpl if="filter">{filter}</tpl><tpl if="!filter">no label</tpl> ({count})</div>';
}
this.registerTorrentStatus('label', _('Label'));
this.torrentMenu = new Ext.menu.Menu({
items: [{
text: _('No Label'),
label: '',
handler: this.onTorrentMenuClick,
scope: this
}]
});
this.tmSep = deluge.menus.torrent.add({
xtype: 'menuseparator'
});
this.tm = deluge.menus.torrent.add({
text: _('Label'),
menu: this.torrentMenu
})
},
onAfterFilterCreate: function(sidebar, filter) {
if (filter.filter != 'label') return;
this.updateTorrentMenu(filter);
},
onFilterCreate: function(sidebar, filter) { onFilterCreate: function(sidebar, filter) {
if (filter.filter != 'label') return; if (filter.filter != 'label') return;
filter.show_zero = true; this.setFilter(filter);
filter.list.on('contextmenu', this.onLabelContextMenu, this);
filter.header.on('contextmenu', this.onLabelHeaderContextMenu, this);
this.filter = filter;
}, },
onLabelAddClick: function() { onLabelAddClick: function() {