aboutsummaryrefslogtreecommitdiff
path: root/src/content/components/top-content/index.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-16 21:48:41 +0900
committerGitHub <noreply@github.com>2017-10-16 21:48:41 +0900
commit33a97a0e8c18c099b23cd50a832242985837edca (patch)
tree73a15a1a39b41e0c42ea79a2d521d63865f83f06 /src/content/components/top-content/index.js
parent7ced514f83a69f557c19c1eb24ad792b3f2ace89 (diff)
parentcf3a1eaf16d7dd5c71de57901415fb147793aa56 (diff)
Merge pull request #61 from ueokande/multi-frame-following
Multi frame following
Diffstat (limited to 'src/content/components/top-content/index.js')
-rw-r--r--src/content/components/top-content/index.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/content/components/top-content/index.js b/src/content/components/top-content/index.js
new file mode 100644
index 0000000..a2179da
--- /dev/null
+++ b/src/content/components/top-content/index.js
@@ -0,0 +1,32 @@
+import CommonComponent from '../common';
+import FollowController from './follow-controller';
+import * as consoleFrames from '../../console-frames';
+import messages from 'shared/messages';
+
+export default class TopContent {
+
+ constructor(win, store) {
+ this.win = win;
+ this.children = [
+ new CommonComponent(win, store),
+ new FollowController(win, store),
+ ];
+
+ // TODO make component
+ consoleFrames.initialize(window.document);
+ }
+
+ update() {
+ this.children.forEach(c => c.update());
+ }
+
+ onMessage(message, sender) {
+ switch (message.type) {
+ case messages.CONSOLE_HIDE_COMMAND:
+ this.win.focus();
+ consoleFrames.blur(window.document);
+ return Promise.resolve();
+ }
+ this.children.forEach(c => c.onMessage(message, sender));
+ }
+}