add stubs for the files and peers tab
This commit is contained in:
parent
66495f4b06
commit
c212bc35e9
File diff suppressed because one or more lines are too long
|
@ -147,11 +147,13 @@ Deluge.Details.Details = {
|
||||||
text: _('Loading') + '...',
|
text: _('Loading') + '...',
|
||||||
callback: this.onLoaded.bindWithEvent(this)
|
callback: this.onLoaded.bindWithEvent(this)
|
||||||
});
|
});
|
||||||
|
this.doUpdate = false;
|
||||||
this.panel.update = this.update.bind(this);
|
this.panel.update = this.update.bind(this);
|
||||||
},
|
},
|
||||||
|
|
||||||
onLoaded: function() {
|
onLoaded: function() {
|
||||||
this.getFields();
|
this.getFields();
|
||||||
|
this.doUpdate = true;
|
||||||
if (Deluge.Details.Panel.getActiveTab() == this.panel) {
|
if (Deluge.Details.Panel.getActiveTab() == this.panel) {
|
||||||
Deluge.Details.update(this.panel);
|
Deluge.Details.update(this.panel);
|
||||||
}
|
}
|
||||||
|
@ -181,17 +183,40 @@ Deluge.Details.Details = {
|
||||||
},
|
},
|
||||||
|
|
||||||
update: function(torrentId) {
|
update: function(torrentId) {
|
||||||
if (!this.fields) {
|
if (!this.doUpdate) return;
|
||||||
this.getFields();
|
if (!this.fields) this.getFields();
|
||||||
// the pane isn't loaded yet and subsequently needs to pause
|
|
||||||
if (!this.fields) return;
|
|
||||||
}
|
|
||||||
Deluge.Client.core.get_torrent_status(torrentId, Deluge.Keys.Details, {
|
Deluge.Client.core.get_torrent_status(torrentId, Deluge.Keys.Details, {
|
||||||
onSuccess: this.onRequestComplete.bindWithEvent(this, torrentId)
|
onSuccess: this.onRequestComplete.bindWithEvent(this, torrentId)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Deluge.Details.Files = {
|
||||||
|
onRender: function(panel) {
|
||||||
|
this.panel = panel;
|
||||||
|
},
|
||||||
|
|
||||||
|
update: function(torrentId) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Deluge.Details.Peers = {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
Deluge.Details.Peers.Store = new Ext.data.SimpleStore({
|
||||||
|
fields: [
|
||||||
|
{name: 'country'},
|
||||||
|
{name: 'address'},
|
||||||
|
{name: 'client'},
|
||||||
|
{name: 'progress'},
|
||||||
|
{name: 'downspeed'},
|
||||||
|
{name: 'upspeed'}
|
||||||
|
],
|
||||||
|
id: 0
|
||||||
|
});
|
||||||
|
|
||||||
Deluge.Details.Panel = new Ext.TabPanel({
|
Deluge.Details.Panel = new Ext.TabPanel({
|
||||||
region: 'south',
|
region: 'south',
|
||||||
split: true,
|
split: true,
|
||||||
|
@ -203,20 +228,56 @@ Deluge.Details.Panel = new Ext.TabPanel({
|
||||||
items: [{
|
items: [{
|
||||||
id: 'status',
|
id: 'status',
|
||||||
title: _('Status'),
|
title: _('Status'),
|
||||||
cls: 'deluge-status',
|
|
||||||
listeners: {'render': {fn: Deluge.Details.Status.onRender, scope: Deluge.Details.Status}}
|
listeners: {'render': {fn: Deluge.Details.Status.onRender, scope: Deluge.Details.Status}}
|
||||||
},{
|
},{
|
||||||
id: 'details',
|
id: 'details',
|
||||||
title: _('Details'),
|
title: _('Details'),
|
||||||
cls: 'deluge-status',
|
cls: 'deluge-status',
|
||||||
listeners: {'render': {fn: Deluge.Details.Details.onRender, scope: Deluge.Details.Details}}
|
listeners: {'render': {fn: Deluge.Details.Details.onRender, scope: Deluge.Details.Details}}
|
||||||
},{
|
}, new Ext.tree.ColumnTree({
|
||||||
id: 'files',
|
id: 'files',
|
||||||
title: _('Files')
|
title: _('Files'),
|
||||||
},{
|
rootVisible: false,
|
||||||
|
autoScroll: true,
|
||||||
|
|
||||||
|
columns: [{
|
||||||
|
header: _('Filename'),
|
||||||
|
width: 330,
|
||||||
|
dataIndex: 'filename'
|
||||||
|
},{
|
||||||
|
header: _('Size'),
|
||||||
|
width: 150,
|
||||||
|
dataIndex: 'size'
|
||||||
|
},{
|
||||||
|
header: _('Progress'),
|
||||||
|
width: 150,
|
||||||
|
dataIndex: 'progress'
|
||||||
|
},{
|
||||||
|
header: _('Priority'),
|
||||||
|
width: 150,
|
||||||
|
dataIndex: 'priority'
|
||||||
|
}],
|
||||||
|
|
||||||
|
root: new Ext.tree.AsyncTreeNode({
|
||||||
|
text:'Tasks'
|
||||||
|
})
|
||||||
|
}), new Ext.grid.GridPanel({
|
||||||
id: 'peers',
|
id: 'peers',
|
||||||
title: _('Peers')
|
title: _('Peers'),
|
||||||
},{
|
store: Deluge.Details.Peers.Store,
|
||||||
|
columns: [
|
||||||
|
{width: 30, renderer: Deluge.Formatters.plain, dataIndex: 'country'},
|
||||||
|
{header: 'Address', width: 125, sortable: true, renderer: Deluge.Formatters.plain, dataIndex: 'address'},
|
||||||
|
{header: 'Client', width: 125, sortable: true, renderer: renderHost, dataIndex: 'client'},
|
||||||
|
{header: 'Progress', width: 150, sortable: true, renderer: Deluge.Formatters.plain, dataIndex: 'progress'},
|
||||||
|
{header: 'Down Speed', width: 100, sortable: true, renderer: Deluge.Formatters.speed, dataIndex: 'downspeed'},
|
||||||
|
{header: 'Up Speed', width: 100, sortable: true, renderer: Deluge.Formatters.speed, dataIndex: 'upspeed'}
|
||||||
|
],
|
||||||
|
stripeRows: true,
|
||||||
|
deferredRender:false,
|
||||||
|
autoScroll:true,
|
||||||
|
margins: '0 0 0 0'
|
||||||
|
}),{
|
||||||
id: 'options',
|
id: 'options',
|
||||||
title: _('Options')
|
title: _('Options')
|
||||||
}],
|
}],
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue