mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 20:45:55 +00:00
headline menu: add ability to toggle unread/published/starred
This commit is contained in:
@@ -726,9 +726,9 @@ function selectionAssignLabel(id, ids) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectionToggleUnread(set_state, callback, no_error) {
|
function selectionToggleUnread(set_state, callback, no_error, ids) {
|
||||||
try {
|
try {
|
||||||
var rows = getSelectedArticleIds2();
|
var rows = ids ? ids : getSelectedArticleIds2();
|
||||||
|
|
||||||
if (rows.length == 0 && !no_error) {
|
if (rows.length == 0 && !no_error) {
|
||||||
alert(__("No articles are selected."));
|
alert(__("No articles are selected."));
|
||||||
@@ -787,12 +787,13 @@ function selectionToggleUnread(set_state, callback, no_error) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectionToggleMarked() {
|
// sel_state ignored
|
||||||
|
function selectionToggleMarked(sel_state, callback, no_error, ids) {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
var rows = getSelectedArticleIds2();
|
var rows = ids ? ids : getSelectedArticleIds2();
|
||||||
|
|
||||||
if (rows.length == 0) {
|
if (rows.length == 0 && !no_error) {
|
||||||
alert(__("No articles are selected."));
|
alert(__("No articles are selected."));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -810,6 +811,7 @@ function selectionToggleMarked() {
|
|||||||
parameters: query,
|
parameters: query,
|
||||||
onComplete: function(transport) {
|
onComplete: function(transport) {
|
||||||
handle_rpc_json(transport);
|
handle_rpc_json(transport);
|
||||||
|
if (callback) callback(transport);
|
||||||
} });
|
} });
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -819,12 +821,13 @@ function selectionToggleMarked() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectionTogglePublished() {
|
// sel_state ignored
|
||||||
|
function selectionTogglePublished(sel_state, callback, no_error, ids) {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
var rows = getSelectedArticleIds2();
|
var rows = ids ? ids : getSelectedArticleIds2();
|
||||||
|
|
||||||
if (rows.length == 0) {
|
if (rows.length == 0 && !no_error) {
|
||||||
alert(__("No articles are selected."));
|
alert(__("No articles are selected."));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1888,6 +1891,41 @@ function initHeadlinesMenu() {
|
|||||||
|
|
||||||
menu.addChild(new dijit.MenuSeparator());
|
menu.addChild(new dijit.MenuSeparator());
|
||||||
|
|
||||||
|
menu.addChild(new dijit.MenuItem({
|
||||||
|
label: __("Toggle unread"),
|
||||||
|
onClick: function(event) {
|
||||||
|
var ids = getSelectedArticleIds2();
|
||||||
|
// cast to string
|
||||||
|
var id = this.getParent().callerRowId + "";
|
||||||
|
ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
||||||
|
|
||||||
|
selectionToggleUnread(undefined, false, true, ids);
|
||||||
|
}}));
|
||||||
|
|
||||||
|
menu.addChild(new dijit.MenuItem({
|
||||||
|
label: __("Toggle marked"),
|
||||||
|
onClick: function(event) {
|
||||||
|
var ids = getSelectedArticleIds2();
|
||||||
|
// cast to string
|
||||||
|
var id = this.getParent().callerRowId + "";
|
||||||
|
ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
||||||
|
|
||||||
|
selectionToggleMarked(undefined, false, true, ids);
|
||||||
|
}}));
|
||||||
|
|
||||||
|
menu.addChild(new dijit.MenuItem({
|
||||||
|
label: __("Toggle published"),
|
||||||
|
onClick: function(event) {
|
||||||
|
var ids = getSelectedArticleIds2();
|
||||||
|
// cast to string
|
||||||
|
var id = this.getParent().callerRowId + "";
|
||||||
|
ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
||||||
|
|
||||||
|
selectionTogglePublished(undefined, false, true, ids);
|
||||||
|
}}));
|
||||||
|
|
||||||
|
menu.addChild(new dijit.MenuSeparator());
|
||||||
|
|
||||||
menu.addChild(new dijit.MenuItem({
|
menu.addChild(new dijit.MenuItem({
|
||||||
label: __("Mark above as read"),
|
label: __("Mark above as read"),
|
||||||
onClick: function(event) {
|
onClick: function(event) {
|
||||||
|
|||||||
Reference in New Issue
Block a user