aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/actions
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/actions')
-rw-r--r--src/client/react/actions/search.js14
-rw-r--r--src/client/react/actions/search.ts24
2 files changed, 14 insertions, 24 deletions
diff --git a/src/client/react/actions/search.js b/src/client/react/actions/search.js
new file mode 100644
index 0000000..1b6847d
--- /dev/null
+++ b/src/client/react/actions/search.js
@@ -0,0 +1,14 @@
+export const inputChange = typedValue => ({
+ type: 'SEARCH/INPUT_CHANGE',
+ typedValue,
+});
+
+/**
+ * Change the selected result.
+ * @param {+1/-1} relativeChange usually +1 or -1, the change relative to the
+ * current result.
+ */
+export const changeSelectedResult = relativeChange => ({
+ type: 'SEARCH/CHANGE_SELECTED_RESULT',
+ relativeChange,
+});
diff --git a/src/client/react/actions/search.ts b/src/client/react/actions/search.ts
deleted file mode 100644
index 45c31fb..0000000
--- a/src/client/react/actions/search.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-export interface InputChangeAction {
- type: 'SEARCH/INPUT_CHANGE',
- typedValue: string,
-}
-
-export const inputChange = (typedValue: string): InputChangeAction => ({
- type: 'SEARCH/INPUT_CHANGE',
- typedValue,
-});
-
-export interface ChangeSelectedResultAction {
- type: 'SEARCH/CHANGE_SELECTED_RESULT',
- relativeChange: 1 | -1,
-}
-
-/**
- * Change the selected result.
- * @param {+1/-1} relativeChange usually +1 or -1, the change relative to the
- * current result.
- */
-export const changeSelectedResult = (relativeChange: 1 | -1): ChangeSelectedResultAction => ({
- type: 'SEARCH/CHANGE_SELECTED_RESULT',
- relativeChange,
-});