From 58f7d52150456713d3132408668a92d0f6f3d084 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Thu, 15 Apr 2021 23:06:26 +0200 Subject: Port to sveltekit --- src/stores/actions.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/stores/actions.js (limited to 'src/stores/actions.js') diff --git a/src/stores/actions.js b/src/stores/actions.js new file mode 100644 index 0000000..3a6d13f --- /dev/null +++ b/src/stores/actions.js @@ -0,0 +1,25 @@ +import { writable } from 'svelte/store'; + +/* + * This is a store to set the actions in the top header. + */ + +export const actions = writable({}); + +export const enableTopicActions = (id) => { + + actions.update((actionsValue) => { + + actionsValue.topic_id = id; + return actionsValue; + }); +}; + +export const disableTopicActions = () => { + + actions.update((actionsValue) => { + + delete actionsValue.id; + return actionsValue; + }); +}; -- cgit