summaryrefslogtreecommitdiff
path: root/frontend/app/views/page/page.actions.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2021-03-20 18:03:31 +0100
committerJules Laplace <julescarbon@gmail.com>2021-03-20 18:03:31 +0100
commitd9ee2c97882ea5ace9c28ac6560ffa240daf9345 (patch)
treed4d2464597d50f245a3240d8d26f451eeb89e4f0 /frontend/app/views/page/page.actions.js
parentd621365d3632b294c2c47f424786415c01c4cdf5 (diff)
toggle side of sidebar. popup form. wait to appear form.
Diffstat (limited to 'frontend/app/views/page/page.actions.js')
-rw-r--r--frontend/app/views/page/page.actions.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/frontend/app/views/page/page.actions.js b/frontend/app/views/page/page.actions.js
index d2bbbe2..c584848 100644
--- a/frontend/app/views/page/page.actions.js
+++ b/frontend/app/views/page/page.actions.js
@@ -50,6 +50,16 @@ export const toggleTileList = () => dispatch => {
dispatch({ type: types.page.toggle_tile_list })
}
+// Popups
+
+export const togglePopups = () => dispatch => {
+ dispatch({ type: types.page.toggle_popups })
+}
+
+export const toggleSidebarSide = () => dispatch => {
+ dispatch({ type: types.page.toggle_sidebar_side })
+}
+
// Update local page tile state when we change it
export const updatePageTile = tile => dispatch => {