Browse Source

[Web UI] Changes in Force Resume icon and menu order

adaptive-webui-19844
ngosang 9 years ago
parent
commit
1f4d01e512
  1. 2
      src/webui/www/private/index.html
  2. 36
      src/webui/www/public/scripts/contextmenu.js
  3. 4
      src/webui/www/public/scripts/mocha-init.js
  4. 6
      src/webui/www/public/transferlist.html

2
src/webui/www/private/index.html

@ -102,8 +102,8 @@
</div> </div>
<ul id="contextmenu"> <ul id="contextmenu">
<li><a href="#Start"><img src="theme/media-playback-start" alt="QBT_TR(Resume)QBT_TR"/> QBT_TR(Resume)QBT_TR</a></li> <li><a href="#Start"><img src="theme/media-playback-start" alt="QBT_TR(Resume)QBT_TR"/> QBT_TR(Resume)QBT_TR</a></li>
<li><a href="#ForceStart"><img src="theme/checked" alt="QBT_TR(Force Resume)QBT_TR"/> QBT_TR(Force Resume)QBT_TR</a></li>
<li><a href="#Pause"><img src="theme/media-playback-pause" alt="QBT_TR(Pause)QBT_TR"/> QBT_TR(Pause)QBT_TR</a></li> <li><a href="#Pause"><img src="theme/media-playback-pause" alt="QBT_TR(Pause)QBT_TR"/> QBT_TR(Pause)QBT_TR</a></li>
<li><a href="#ForceStart"><img src="theme/media-seek-forward" alt="QBT_TR(Force Resume)QBT_TR"/> QBT_TR(Force Resume)QBT_TR</a></li>
<li class="separator"><a href="#Delete"><img src="theme/list-remove" alt="QBT_TR(Delete)QBT_TR"/> QBT_TR(Delete)QBT_TR</a></li> <li class="separator"><a href="#Delete"><img src="theme/list-remove" alt="QBT_TR(Delete)QBT_TR"/> QBT_TR(Delete)QBT_TR</a></li>
<li id="queueingMenuItems" class="separator"> <li id="queueingMenuItems" class="separator">
<a href="#priority" class="arrow-right"><span style="display: inline-block; width:16px"></span> QBT_TR(Priority)QBT_TR</a> <a href="#priority" class="arrow-right"><span style="display: inline-block; width:16px"></span> QBT_TR(Priority)QBT_TR</a>

36
src/webui/www/public/scripts/contextmenu.js

@ -136,8 +136,9 @@ var ContextMenu = new Class({
all_are_downloaded = true; all_are_downloaded = true;
all_are_paused = true; all_are_paused = true;
there_are_paused = false; there_are_paused = false;
all_are_super_seeding = true;
all_are_force_start = true; all_are_force_start = true;
there_are_force_start = false;
all_are_super_seeding = true;
var h = myTable.selectedIds(); var h = myTable.selectedIds();
h.each(function(item, index){ h.each(function(item, index){
@ -153,19 +154,20 @@ var ContextMenu = new Class({
else else
there_are_f_l_piece_prio = true; there_are_f_l_piece_prio = true;
if (data['force_start'] != true)
all_are_force_start = false;
if (data['progress'] != 1.0) // not downloaded if (data['progress'] != 1.0) // not downloaded
all_are_downloaded = false; all_are_downloaded = false;
else if (data['super_seeding'] != true) else if (data['super_seeding'] != true)
all_are_super_seeding = false; all_are_super_seeding = false;
state = data['state']; if (data['state'] != 'pausedUP' && data['state'] != 'pausedDL')
if ((state != 'pausedUP') && (state != 'pausedDL'))
all_are_paused = false; all_are_paused = false;
else else
there_are_paused = true; there_are_paused = true;
if (data['force_start'] != true)
all_are_force_start = false;
else
there_are_force_start = true;
}); });
show_seq_dl = true; show_seq_dl = true;
@ -178,8 +180,6 @@ var ContextMenu = new Class({
if (!all_are_f_l_piece_prio && there_are_f_l_piece_prio) if (!all_are_f_l_piece_prio && there_are_f_l_piece_prio)
show_f_l_piece_prio = false; show_f_l_piece_prio = false;
this.setItemChecked('ForceStart', all_are_force_start);
if (all_are_downloaded) { if (all_are_downloaded) {
this.hideItem('SequentialDownload'); this.hideItem('SequentialDownload');
this.hideItem('FirstLastPiecePrio'); this.hideItem('FirstLastPiecePrio');
@ -207,18 +207,16 @@ var ContextMenu = new Class({
this.hideItem('SuperSeeding'); this.hideItem('SuperSeeding');
} }
if (all_are_paused) { this.showItem('Start');
this.showItem('Start'); this.showItem('Pause');
this.showItem('ForceStart');
if (all_are_paused)
this.hideItem('Pause'); this.hideItem('Pause');
} else { else if (all_are_force_start)
if (there_are_paused) { this.hideItem('ForceStart');
this.showItem('Start'); else if (!there_are_paused && !there_are_force_start)
this.showItem('Pause'); this.hideItem('Start');
} else {
this.hideItem('Start');
this.showItem('Pause');
}
}
}, },
//show menu //show menu

4
src/webui/www/public/scripts/mocha-init.js

@ -181,14 +181,14 @@ initializeWindows = function() {
} }
}; };
setForceStartFN = function(val) { setForceStartFN = function() {
var h = myTable.selectedIds(); var h = myTable.selectedIds();
if (h.length) { if (h.length) {
new Request({ new Request({
url: 'command/setForceStart', url: 'command/setForceStart',
method: 'post', method: 'post',
data: { data: {
value: val, value: 'true',
hashes: h.join("|") hashes: h.join("|")
} }
}).send(); }).send();

6
src/webui/www/public/transferlist.html

@ -25,6 +25,9 @@
Pause : function (element, ref) { Pause : function (element, ref) {
pauseFN(); pauseFN();
}, },
ForceStart : function (element, ref) {
setForceStartFN();
},
prioTop : function (element, ref) { prioTop : function (element, ref) {
setPriorityFN('topPrio'); setPriorityFN('topPrio');
}, },
@ -54,9 +57,6 @@
}, },
SuperSeeding : function (element, ref) { SuperSeeding : function (element, ref) {
setSuperSeedingFN(!ref.getItemChecked('SuperSeeding')); setSuperSeedingFN(!ref.getItemChecked('SuperSeeding'));
},
ForceStart : function (element, ref) {
setForceStartFN(!ref.getItemChecked('ForceStart'));
} }
}, },
offsets : { offsets : {

Loading…
Cancel
Save