add addon actions
This commit is contained in:
parent
cd6f7e7788
commit
59f7ef205d
5 changed files with 107 additions and 0 deletions
15
src/content/actions/addon.js
Normal file
15
src/content/actions/addon.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
import actions from 'content/actions';
|
||||
|
||||
const enable = () => {
|
||||
return { type: actions.ADDON_ENABLE };
|
||||
};
|
||||
|
||||
const disable = () => {
|
||||
return { type: actions.ADDON_DISABLE };
|
||||
};
|
||||
|
||||
const toggleEnabled = () => {
|
||||
return { type: actions.ADDON_TOGGLE_ENABLED };
|
||||
};
|
||||
|
||||
export { enable, disable, toggleEnabled };
|
|
@ -1,5 +1,9 @@
|
|||
export default {
|
||||
// User input
|
||||
ADDON_ENABLE: 'addon.enable',
|
||||
ADDON_DISABLE: 'addon.disable',
|
||||
ADDON_TOGGLE_ENABLED: 'addon.toggle.enabled',
|
||||
|
||||
INPUT_KEY_PRESS: 'input.key,press',
|
||||
INPUT_CLEAR_KEYS: 'input.clear.keys',
|
||||
INPUT_SET_KEYMAPS: 'input.set.keymaps',
|
||||
|
|
Reference in a new issue