summaryrefslogtreecommitdiff
path: root/client/applet.js
diff options
context:
space:
mode:
authorAdam Harvey <adam@ahprojects.com>2018-12-23 01:37:03 +0100
committerAdam Harvey <adam@ahprojects.com>2018-12-23 01:37:03 +0100
commit4452e02e8b04f3476273574a875bb60cfbb4568b (patch)
tree3ffa44f9621b736250a8b94da14a187dc785c2fe /client/applet.js
parent2a65f7a157bd4bace970cef73529867b0e0a374d (diff)
parent5340bee951c18910fd764241945f1f136b5a22b4 (diff)
.
Diffstat (limited to 'client/applet.js')
-rw-r--r--client/applet.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/client/applet.js b/client/applet.js
new file mode 100644
index 00000000..80d40657
--- /dev/null
+++ b/client/applet.js
@@ -0,0 +1,18 @@
+import React, { Component } from 'react'
+
+import { Container as FaceSearchContainer } from './faceSearch'
+import { Container as NameSearchContainer } from './nameSearch'
+
+export default class Applet extends Component {
+ render() {
+ // console.log(this.props)
+ switch (this.props.payload.cmd) {
+ case 'face_search':
+ return <FaceSearchContainer {...this.props} />
+ case 'name_search':
+ return <NameSearchContainer {...this.props} />
+ default:
+ return <pre style={{ color: '#0f0' }}>{'Megapixels'}</pre>
+ }
+ }
+}