You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
import './console-frame.scss';
|
|
|
|
import messages from 'shared/messages';
|
|
|
|
|
|
|
|
const initialize = (doc) => {
|
|
|
|
let iframe = doc.createElement('iframe');
|
|
|
|
iframe.src = browser.runtime.getURL('build/console.html');
|
|
|
|
iframe.id = 'vimvixen-console-frame';
|
|
|
|
iframe.className = 'vimvixen-console-frame';
|
|
|
|
doc.body.append(iframe);
|
|
|
|
|
|
|
|
return iframe;
|
|
|
|
};
|
|
|
|
|
|
|
|
const blur = (doc) => {
|
|
|
|
let iframe = doc.getElementById('vimvixen-console-frame');
|
|
|
|
iframe.blur();
|
|
|
|
};
|
|
|
|
|
|
|
|
const postMessage = (doc, message) => {
|
|
|
|
let iframe = doc.getElementById('vimvixen-console-frame');
|
|
|
|
iframe.contentWindow.postMessage(JSON.stringify(message), '*');
|
|
|
|
};
|
|
|
|
|
|
|
|
const postError = (doc, message) => {
|
|
|
|
return postMessage(doc, {
|
|
|
|
type: messages.CONSOLE_SHOW_ERROR,
|
|
|
|
text: message,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
export { initialize, blur, postMessage, postError };
|