add hotkey to toggle grid view
This commit is contained in:
parent
089fa5ec26
commit
0b93d8d013
|
@ -603,6 +603,7 @@ class RPC extends Handler_Protected {
|
||||||
"feed_catchup" => __("Mark as read"),
|
"feed_catchup" => __("Mark as read"),
|
||||||
"feed_reverse" => __("Reverse headlines"),
|
"feed_reverse" => __("Reverse headlines"),
|
||||||
"feed_toggle_vgroup" => __("Toggle headline grouping"),
|
"feed_toggle_vgroup" => __("Toggle headline grouping"),
|
||||||
|
"feed_toggle_grid" => __("Toggle grid view"),
|
||||||
"feed_debug_update" => __("Debug feed update"),
|
"feed_debug_update" => __("Debug feed update"),
|
||||||
"feed_debug_viewfeed" => __("Debug viewfeed()"),
|
"feed_debug_viewfeed" => __("Debug viewfeed()"),
|
||||||
"catchup_all" => __("Mark all feeds as read"),
|
"catchup_all" => __("Mark all feeds as read"),
|
||||||
|
@ -676,8 +677,9 @@ class RPC extends Handler_Protected {
|
||||||
"f q" => "feed_catchup",
|
"f q" => "feed_catchup",
|
||||||
"f x" => "feed_reverse",
|
"f x" => "feed_reverse",
|
||||||
"f g" => "feed_toggle_vgroup",
|
"f g" => "feed_toggle_vgroup",
|
||||||
|
"f G" => "feed_toggle_grid",
|
||||||
"f D" => "feed_debug_update",
|
"f D" => "feed_debug_update",
|
||||||
"f G" => "feed_debug_viewfeed",
|
"f %" => "feed_debug_viewfeed",
|
||||||
"f C" => "toggle_combined_mode",
|
"f C" => "toggle_combined_mode",
|
||||||
"f c" => "toggle_cdm_expanded",
|
"f c" => "toggle_cdm_expanded",
|
||||||
"Q" => "catchup_all",
|
"Q" => "catchup_all",
|
||||||
|
|
|
@ -1102,6 +1102,12 @@ const App = {
|
||||||
this.hotkey_actions["feed_reverse"] = () => {
|
this.hotkey_actions["feed_reverse"] = () => {
|
||||||
Headlines.reverse();
|
Headlines.reverse();
|
||||||
};
|
};
|
||||||
|
this.hotkey_actions["feed_toggle_grid"] = () => {
|
||||||
|
xhr.json("backend.php", {op: "rpc", method: "togglepref", key: "CDM_ENABLE_GRID"}, (reply) => {
|
||||||
|
App.setInitParam("cdm_enable_grid", reply.value);
|
||||||
|
Headlines.renderAgain();
|
||||||
|
})
|
||||||
|
};
|
||||||
this.hotkey_actions["feed_toggle_vgroup"] = () => {
|
this.hotkey_actions["feed_toggle_vgroup"] = () => {
|
||||||
xhr.post("backend.php", {op: "rpc", method: "togglepref", key: "VFEED_GROUP_BY_FEED"}, () => {
|
xhr.post("backend.php", {op: "rpc", method: "togglepref", key: "VFEED_GROUP_BY_FEED"}, () => {
|
||||||
Feeds.reloadCurrent();
|
Feeds.reloadCurrent();
|
||||||
|
|
|
@ -330,7 +330,6 @@ const Feeds = {
|
||||||
|
|
||||||
container.setAttribute("data-feed-id", id);
|
container.setAttribute("data-feed-id", id);
|
||||||
container.setAttribute("data-is-cat", is_cat ? "true" : "false");
|
container.setAttribute("data-is-cat", is_cat ? "true" : "false");
|
||||||
container.setAttribute("data-enable-grid", App.getInitParam("cdm_enable_grid") ? "true" : "false");
|
|
||||||
|
|
||||||
this.select(id, is_cat);
|
this.select(id, is_cat);
|
||||||
|
|
||||||
|
|
|
@ -383,10 +383,13 @@ const Headlines = {
|
||||||
return this.headlines[id];
|
return this.headlines[id];
|
||||||
},
|
},
|
||||||
setCommonClasses: function () {
|
setCommonClasses: function () {
|
||||||
App.byId("headlines-frame").removeClassName("cdm");
|
const container = App.byId("headlines-frame");
|
||||||
App.byId("headlines-frame").removeClassName("normal");
|
|
||||||
|
|
||||||
App.byId("headlines-frame").addClassName(App.isCombinedMode() ? "cdm" : "normal");
|
container.removeClassName("cdm");
|
||||||
|
container.removeClassName("normal");
|
||||||
|
|
||||||
|
container.addClassName(App.isCombinedMode() ? "cdm" : "normal");
|
||||||
|
container.setAttribute("data-enable-grid", App.getInitParam("cdm_enable_grid") ? "true" : "false");
|
||||||
|
|
||||||
// for floating title because it's placed outside of headlines-frame
|
// for floating title because it's placed outside of headlines-frame
|
||||||
App.byId("main").removeClassName("expandable");
|
App.byId("main").removeClassName("expandable");
|
||||||
|
|
Loading…
Reference in New Issue