aboutsummaryrefslogtreecommitdiff
path: root/src/content/actions/find.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/actions/find.js')
-rw-r--r--src/content/actions/find.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/content/actions/find.js b/src/content/actions/find.js
new file mode 100644
index 0000000..90c9de9
--- /dev/null
+++ b/src/content/actions/find.js
@@ -0,0 +1,36 @@
+//
+// window.find(aString, aCaseSensitive, aBackwards, aWrapAround,
+// aWholeWord, aSearchInFrames, aShowDialog);
+//
+// NOTE: window.find is not standard API
+// https://developer.mozilla.org/en-US/docs/Web/API/Window/find
+
+import actions from 'content/actions';
+
+const show = () => {
+ return { type: actions.FIND_SHOW };
+};
+
+const hide = () => {
+ return { type: actions.FIND_HIDE };
+};
+
+const next = (keyword) => {
+ // TODO Error on no matched
+ window.find(keyword, false, false, true, false, true, false);
+ return {
+ type: actions.FIND_SET_KEYWORD,
+ keyword,
+ };
+};
+
+const prev = (keyword) => {
+ // TODO Error on no matched
+ window.find(keyword, false, true, true, false, true, false);
+ return {
+ type: actions.FIND_SET_KEYWORD,
+ keyword,
+ };
+};
+
+export { show, hide, next, prev };