From 5fb3de3263357b3b42a0d1a67a0b9153e4c34260 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Wed, 4 Oct 2017 22:05:29 +0900 Subject: move operations --- src/actions/operation.js | 2 +- src/content/index.js | 2 +- src/operations/index.js | 38 -------------------------------------- src/shared/operations.js | 38 ++++++++++++++++++++++++++++++++++++++ src/shared/validators/setting.js | 2 +- 5 files changed, 41 insertions(+), 41 deletions(-) delete mode 100644 src/operations/index.js create mode 100644 src/shared/operations.js diff --git a/src/actions/operation.js b/src/actions/operation.js index 5b7f127..3ed7f05 100644 --- a/src/actions/operation.js +++ b/src/actions/operation.js @@ -1,4 +1,4 @@ -import operations from '../operations'; +import operations from '../shared/operations'; import messages from '../content/messages'; import * as consoleActions from './console'; import * as tabs from '../background/tabs'; diff --git a/src/content/index.js b/src/content/index.js index 38ad837..a9a50be 100644 --- a/src/content/index.js +++ b/src/content/index.js @@ -7,7 +7,7 @@ import { createStore } from '../store'; import ContentInputComponent from '../components/content-input'; import FollowComponent from '../components/follow'; import reducers from '../reducers'; -import operations from '../operations'; +import operations from '../shared/operations'; import messages from './messages'; const store = createStore(reducers); diff --git a/src/operations/index.js b/src/operations/index.js deleted file mode 100644 index b68f59d..0000000 --- a/src/operations/index.js +++ /dev/null @@ -1,38 +0,0 @@ -export default { - // Command - COMMAND_SHOW: 'command.show', - COMMAND_SHOW_OPEN: 'command.show.open', - COMMAND_SHOW_TABOPEN: 'command.show.tabopen', - COMMAND_SHOW_BUFFER: 'command.show.buffer', - - // Scrolls - SCROLL_LINES: 'scroll.lines', - SCROLL_PAGES: 'scroll.pages', - SCROLL_TOP: 'scroll.top', - SCROLL_BOTTOM: 'scroll.bottom', - SCROLL_HOME: 'scroll.home', - SCROLL_END: 'scroll.end', - - // Follows - FOLLOW_START: 'follow.start', - - // Navigations - NAVIGATE_HISTORY_PREV: 'navigate.history.prev', - NAVIGATE_HISTORY_NEXT: 'navigate.history.next', - NAVIGATE_LINK_PREV: 'navigate.link.prev', - NAVIGATE_LINK_NEXT: 'navigate.link.next', - NAVIGATE_PARENT: 'navigate.parent', - NAVIGATE_ROOT: 'navigate.root', - - // Tabs - TAB_CLOSE: 'tabs.close', - TAB_REOPEN: 'tabs.reopen', - TAB_PREV: 'tabs.prev', - TAB_NEXT: 'tabs.next', - TAB_RELOAD: 'tabs.reload', - - // Zooms - ZOOM_IN: 'zoom.in', - ZOOM_OUT: 'zoom.out', - ZOOM_NEUTRAL: 'zoom.neutral', -}; diff --git a/src/shared/operations.js b/src/shared/operations.js new file mode 100644 index 0000000..b68f59d --- /dev/null +++ b/src/shared/operations.js @@ -0,0 +1,38 @@ +export default { + // Command + COMMAND_SHOW: 'command.show', + COMMAND_SHOW_OPEN: 'command.show.open', + COMMAND_SHOW_TABOPEN: 'command.show.tabopen', + COMMAND_SHOW_BUFFER: 'command.show.buffer', + + // Scrolls + SCROLL_LINES: 'scroll.lines', + SCROLL_PAGES: 'scroll.pages', + SCROLL_TOP: 'scroll.top', + SCROLL_BOTTOM: 'scroll.bottom', + SCROLL_HOME: 'scroll.home', + SCROLL_END: 'scroll.end', + + // Follows + FOLLOW_START: 'follow.start', + + // Navigations + NAVIGATE_HISTORY_PREV: 'navigate.history.prev', + NAVIGATE_HISTORY_NEXT: 'navigate.history.next', + NAVIGATE_LINK_PREV: 'navigate.link.prev', + NAVIGATE_LINK_NEXT: 'navigate.link.next', + NAVIGATE_PARENT: 'navigate.parent', + NAVIGATE_ROOT: 'navigate.root', + + // Tabs + TAB_CLOSE: 'tabs.close', + TAB_REOPEN: 'tabs.reopen', + TAB_PREV: 'tabs.prev', + TAB_NEXT: 'tabs.next', + TAB_RELOAD: 'tabs.reload', + + // Zooms + ZOOM_IN: 'zoom.in', + ZOOM_OUT: 'zoom.out', + ZOOM_NEUTRAL: 'zoom.neutral', +}; diff --git a/src/shared/validators/setting.js b/src/shared/validators/setting.js index caba5cc..4dc35ff 100644 --- a/src/shared/validators/setting.js +++ b/src/shared/validators/setting.js @@ -1,4 +1,4 @@ -import operations from '../../operations'; +import operations from '../operations'; const VALID_TOP_KEYS = ['keymaps', 'search']; const VALID_OPERATION_VALUES = Object.keys(operations).map((key) => { -- cgit v1.2.3