aboutsummaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
Diffstat (limited to 'src/content')
-rw-r--r--src/content/actions/index.js6
-rw-r--r--src/content/actions/mark.js25
-rw-r--r--src/content/reducers/mark.js25
3 files changed, 56 insertions, 0 deletions
diff --git a/src/content/actions/index.js b/src/content/actions/index.js
index 6976df7..0a16fdf 100644
--- a/src/content/actions/index.js
+++ b/src/content/actions/index.js
@@ -22,4 +22,10 @@ export default {
// Find
FIND_SET_KEYWORD: 'find.set.keyword',
+
+ // Mark
+ MARK_START_SET: 'mark.start.set',
+ MARK_START_JUMP: 'mark.start.jump',
+ MARK_CANCEL: 'mark.cancel',
+ MARK_SET_LOCAL: 'mark.set.local',
};
diff --git a/src/content/actions/mark.js b/src/content/actions/mark.js
new file mode 100644
index 0000000..baf5825
--- /dev/null
+++ b/src/content/actions/mark.js
@@ -0,0 +1,25 @@
+import actions from 'content/actions';
+
+const startSet = () => {
+ return { type: actions.MARK_START_SET };
+};
+
+const startJump = () => {
+ return { type: actions.MARK_START_JUMP };
+};
+
+const cancel = () => {
+ return { type: actions.MARK_CANCEL };
+};
+
+const setLocal = (key, y) => {
+ return {
+ type: actions.MARK_SET_LOCAL,
+ key,
+ y,
+ };
+};
+
+export {
+ startSet, startJump, cancel, setLocal,
+};
diff --git a/src/content/reducers/mark.js b/src/content/reducers/mark.js
new file mode 100644
index 0000000..b6a071f
--- /dev/null
+++ b/src/content/reducers/mark.js
@@ -0,0 +1,25 @@
+import actions from 'content/actions';
+
+const defaultState = {
+ set: false,
+ jump: false,
+ marks: {},
+};
+
+export default function reducer(state = defaultState, action = {}) {
+ switch (action.type) {
+ case actions.MARK_START_SET:
+ return { ...state, set: true };
+ case actions.MARK_START_JUMP:
+ return { ...state, jump: true };
+ case actions.MARK_CANCEL:
+ return { ...state, set: false, jump: false };
+ case actions.MARK_SET_LOCAL: {
+ let marks = { ...state.marks };
+ marks[action.key] = { y: action.y };
+ return { ...state, marks };
+ }
+ default:
+ return state;
+ }
+}