content operations
This commit is contained in:
parent
b6e5153c1f
commit
a61f37ad61
8 changed files with 62 additions and 58 deletions
|
@ -12,15 +12,6 @@ export default {
|
||||||
CMD_OPEN: 'cmd.open',
|
CMD_OPEN: 'cmd.open',
|
||||||
CMD_TABS_OPEN: 'cmd.tabs.open',
|
CMD_TABS_OPEN: 'cmd.tabs.open',
|
||||||
CMD_BUFFER: 'cmd.buffer',
|
CMD_BUFFER: 'cmd.buffer',
|
||||||
SCROLL_LINES: 'scroll.lines',
|
|
||||||
SCROLL_PAGES: 'scroll.pages',
|
|
||||||
SCROLL_TOP: 'scroll.top',
|
|
||||||
SCROLL_BOTTOM: 'scroll.bottom',
|
|
||||||
SCROLL_LEFT: 'scroll.left',
|
|
||||||
SCROLL_RIGHT: 'scroll.right',
|
|
||||||
FOLLOW_START: 'follow.start',
|
|
||||||
HISTORY_PREV: 'history.prev',
|
|
||||||
HISTORY_NEXT: 'history.next',
|
|
||||||
|
|
||||||
// User input
|
// User input
|
||||||
INPUT_KEY_PRESS: 'input.key,press',
|
INPUT_KEY_PRESS: 'input.key,press',
|
||||||
|
|
|
@ -21,7 +21,10 @@ export function exec(operation, sender) {
|
||||||
case operations.ZOOM_NEUTRAL:
|
case operations.ZOOM_NEUTRAL:
|
||||||
return zooms.neutral();
|
return zooms.neutral();
|
||||||
default:
|
default:
|
||||||
return Promise.resolve();
|
return browser.tabs.sendMessage(sender.tab.id, {
|
||||||
|
type: 'require.content.operation',
|
||||||
|
operation
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ import commandReducer from '../reducers/command';
|
||||||
import inputReducers from '../reducers/input';
|
import inputReducers from '../reducers/input';
|
||||||
import * as store from '../store'
|
import * as store from '../store'
|
||||||
|
|
||||||
const emptyReducer = (state, action) => state;
|
const emptyReducer = (state) => state;
|
||||||
const emptyStore = store.createStore(emptyReducer, (e) => {
|
const emptyStore = store.createStore(emptyReducer, (e) => {
|
||||||
console.error('Vim-Vixen:', e);
|
console.error('Vim-Vixen:', e);
|
||||||
});
|
});
|
||||||
|
|
|
@ -6,18 +6,18 @@ const defaultKeymap = {
|
||||||
'o': { type: actions.CMD_TABS_OPEN, alter: false },
|
'o': { type: actions.CMD_TABS_OPEN, alter: false },
|
||||||
'O': { type: actions.CMD_TABS_OPEN, alter: true },
|
'O': { type: actions.CMD_TABS_OPEN, alter: true },
|
||||||
'b': { type: actions.CMD_BUFFER },
|
'b': { type: actions.CMD_BUFFER },
|
||||||
'k': { type: actions.SCROLL_LINES, count: -1 },
|
'k': { type: operations.SCROLL_LINES, count: -1 },
|
||||||
'j': { type: actions.SCROLL_LINES, count: 1 },
|
'j': { type: operations.SCROLL_LINES, count: 1 },
|
||||||
'<C-E>': { type: actions.SCROLL_LINES, count: -1 },
|
'<C-E>': { type: operations.SCROLL_LINES, count: -1 },
|
||||||
'<C-Y>': { type: actions.SCROLL_LINES, count: 1 },
|
'<C-Y>': { type: operations.SCROLL_LINES, count: 1 },
|
||||||
'<C-U>': { type: actions.SCROLL_PAGES, count: -0.5 },
|
'<C-U>': { type: operations.SCROLL_PAGES, count: -0.5 },
|
||||||
'<C-D>': { type: actions.SCROLL_PAGES, count: 0.5 },
|
'<C-D>': { type: operations.SCROLL_PAGES, count: 0.5 },
|
||||||
'<C-B>': { type: actions.SCROLL_PAGES, count: -1 },
|
'<C-B>': { type: operations.SCROLL_PAGES, count: -1 },
|
||||||
'<C-F>': { type: actions.SCROLL_PAGES, count: 1 },
|
'<C-F>': { type: operations.SCROLL_PAGES, count: 1 },
|
||||||
'gg': { type: actions.SCROLL_TOP },
|
'gg': { type: operations.SCROLL_TOP },
|
||||||
'G': { type: actions.SCROLL_BOTTOM },
|
'G': { type: operations.SCROLL_BOTTOM },
|
||||||
'0': { type: actions.SCROLL_LEFT },
|
'0': { type: operations.SCROLL_LEFT },
|
||||||
'$': { type: actions.SCROLL_RIGHT },
|
'$': { type: operations.SCROLL_RIGHT },
|
||||||
'd': { type: operations.TABS_CLOSE },
|
'd': { type: operations.TABS_CLOSE },
|
||||||
'u': { type: operations.TABS_REOPEN },
|
'u': { type: operations.TABS_REOPEN },
|
||||||
'h': { type: operations.TABS_PREV, count: 1 },
|
'h': { type: operations.TABS_PREV, count: 1 },
|
||||||
|
@ -27,10 +27,10 @@ const defaultKeymap = {
|
||||||
'zi': { type: operations.ZOOM_IN },
|
'zi': { type: operations.ZOOM_IN },
|
||||||
'zo': { type: operations.ZOOM_OUT },
|
'zo': { type: operations.ZOOM_OUT },
|
||||||
'zz': { type: operations.ZOOM_NEUTRAL },
|
'zz': { type: operations.ZOOM_NEUTRAL },
|
||||||
'f': { type: actions.FOLLOW_START, newTab: false },
|
'f': { type: operations.FOLLOW_START, newTab: false },
|
||||||
'F': { type: actions.FOLLOW_START, newTab: true },
|
'F': { type: operations.FOLLOW_START, newTab: true },
|
||||||
'H': { type: actions.HISTORY_PREV },
|
'H': { type: operations.HISTORY_PREV },
|
||||||
'L': { type: actions.HISTORY_NEXT },
|
'L': { type: operations.HISTORY_NEXT },
|
||||||
}
|
}
|
||||||
|
|
||||||
const asKeymapChars = (keys) => {
|
const asKeymapChars = (keys) => {
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
import '../console/console-frame.scss';
|
import '../console/console-frame.scss';
|
||||||
import * as inputActions from '../actions/input';
|
import * as inputActions from '../actions/input';
|
||||||
import * as consoleFrames from '../console/frames';
|
import * as consoleFrames from '../console/frames';
|
||||||
|
import * as scrolls from '../content/scrolls';
|
||||||
|
import * as histories from '../content/histories';
|
||||||
import actions from '../actions';
|
import actions from '../actions';
|
||||||
|
import Follow from '../content/follow';
|
||||||
|
import operations from '../operations';
|
||||||
import contentReducer from '../reducers/content';
|
import contentReducer from '../reducers/content';
|
||||||
|
|
||||||
consoleFrames.initialize(window.document);
|
consoleFrames.initialize(window.document);
|
||||||
|
@ -22,11 +26,37 @@ window.addEventListener("keypress", (e) => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const execOperation = (operation) => {
|
||||||
|
switch (operation.type) {
|
||||||
|
case operations.SCROLL_LINES:
|
||||||
|
return scrolls.scrollLines(window, operation.count);
|
||||||
|
case operations.SCROLL_PAGES:
|
||||||
|
return scrolls.scrollPages(window, operation.count);
|
||||||
|
case operations.SCROLL_TOP:
|
||||||
|
return scrolls.scrollTop(window);
|
||||||
|
case operations.SCROLL_BOTTOM:
|
||||||
|
return scrolls.scrollBottom(window);
|
||||||
|
case operations.SCROLL_LEFT:
|
||||||
|
return scrolls.scrollLeft(window);
|
||||||
|
case operations.SCROLL_RIGHT:
|
||||||
|
return scrolls.scrollRight(window);
|
||||||
|
case operations.FOLLOW_START:
|
||||||
|
return new Follow(window.document, operation.newTab);
|
||||||
|
case operations.HISTORY_PREV:
|
||||||
|
return histories.prev(window);
|
||||||
|
case operations.HISTORY_NEXT:
|
||||||
|
return histories.next(window);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
browser.runtime.onMessage.addListener((action) => {
|
browser.runtime.onMessage.addListener((action) => {
|
||||||
switch (action.type) {
|
switch (action.type) {
|
||||||
case actions.CONSOLE_HIDE:
|
case actions.CONSOLE_HIDE:
|
||||||
window.focus();
|
window.focus();
|
||||||
return consoleFrames.blur(window.document);
|
return consoleFrames.blur(window.document);
|
||||||
|
case 'require.content.operation':
|
||||||
|
execOperation(action.operation);
|
||||||
|
return Promise.resolve();
|
||||||
case 'vimvixen.command.enter':
|
case 'vimvixen.command.enter':
|
||||||
return browser.runtime.sendMessage({
|
return browser.runtime.sendMessage({
|
||||||
type: 'event.cmd.enter',
|
type: 'event.cmd.enter',
|
||||||
|
|
|
@ -1,4 +1,15 @@
|
||||||
export default {
|
export default {
|
||||||
|
SCROLL_LINES: 'scroll.lines',
|
||||||
|
SCROLL_PAGES: 'scroll.pages',
|
||||||
|
SCROLL_TOP: 'scroll.top',
|
||||||
|
SCROLL_BOTTOM: 'scroll.bottom',
|
||||||
|
SCROLL_LEFT: 'scroll.left',
|
||||||
|
SCROLL_RIGHT: 'scroll.right',
|
||||||
|
FOLLOW_START: 'follow.start',
|
||||||
|
HISTORY_PREV: 'history.prev',
|
||||||
|
HISTORY_NEXT: 'history.next',
|
||||||
|
|
||||||
|
// background
|
||||||
TABS_CLOSE: 'tabs.close',
|
TABS_CLOSE: 'tabs.close',
|
||||||
TABS_REOPEN: 'tabs.reopen',
|
TABS_REOPEN: 'tabs.reopen',
|
||||||
TABS_PREV: 'tabs.prev',
|
TABS_PREV: 'tabs.prev',
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import * as tabs from '../background/tabs';
|
import * as tabs from '../background/tabs';
|
||||||
import * as zooms from '../background/zooms';
|
|
||||||
import * as consoleActions from '../actions/console';
|
import * as consoleActions from '../actions/console';
|
||||||
import actions from '../actions';
|
import actions from '../actions';
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
import * as consoleFrames from '../console/frames';
|
import * as consoleFrames from '../console/frames';
|
||||||
import * as histories from '../content/histories';
|
|
||||||
import * as scrolls from '../content/scrolls';
|
|
||||||
import Follow from '../content/follow';
|
|
||||||
import actions from '../actions';
|
import actions from '../actions';
|
||||||
|
|
||||||
export default function reducer(state, action = {}) {
|
export default function reducer(state, action = {}) {
|
||||||
|
@ -17,32 +14,5 @@ export default function reducer(state, action = {}) {
|
||||||
}
|
}
|
||||||
case actions.CMD_BUFFER:
|
case actions.CMD_BUFFER:
|
||||||
return consoleFrames.showCommand('buffer ');
|
return consoleFrames.showCommand('buffer ');
|
||||||
case actions.SCROLL_LINES:
|
|
||||||
scrolls.scrollLines(window, action.count);
|
|
||||||
break;
|
|
||||||
case actions.SCROLL_PAGES:
|
|
||||||
scrolls.scrollPages(window, action.count);
|
|
||||||
break;
|
|
||||||
case actions.SCROLL_TOP:
|
|
||||||
scrolls.scrollTop(window);
|
|
||||||
break;
|
|
||||||
case actions.SCROLL_BOTTOM:
|
|
||||||
scrolls.scrollBottom(window);
|
|
||||||
break;
|
|
||||||
case actions.SCROLL_LEFT:
|
|
||||||
scrolls.scrollLeft(window);
|
|
||||||
break;
|
|
||||||
case actions.SCROLL_RIGHT:
|
|
||||||
scrolls.scrollRight(window);
|
|
||||||
break;
|
|
||||||
case actions.FOLLOW_START:
|
|
||||||
new Follow(window.document, action.newTab);
|
|
||||||
break;
|
|
||||||
case actions.HISTORY_PREV:
|
|
||||||
histories.prev(window);
|
|
||||||
break;
|
|
||||||
case actions.HISTORY_NEXT:
|
|
||||||
histories.next(window);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue