-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
78 lines (69 loc) · 2.36 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import React from 'react';
import ReactDOM from 'react-dom';
import ExplainerCard from './src/js/Container.jsx';
window.ProtoGraph = window.ProtoGraph || {};
window.ProtoGraph.Card = window.ProtoGraph.Card || {};
ProtoGraph.Card.toExplain = function () {
this.cardType = 'ExplainerCard';
}
ProtoGraph.Card.toExplain.prototype.init = function (options) {
this.options = options;
}
ProtoGraph.Card.toExplain.prototype.getData = function (data) {
return this.containerInstance.exportData();
}
ProtoGraph.Card.toExplain.prototype.renderLaptop = function (data) {
this.mode = 'laptop';
ReactDOM.render(
<ExplainerCard
viewCastId={this.options.viewCastId}
dataURL={this.options.data_url}
schemaURL={this.options.schema_url}
optionalConfigURL={this.options.configuration_url}
optionalConfigSchemaURL={this.options.configuration_schema_url}
mode={this.mode}
readMoreEnabled={data}
clickCallback={this.options.onClickCallback}
ref={(e) => {
this.containerInstance = this.containerInstance || e;
}}
piwikCallback={this.options.piwikCallback}
/>,
this.options.selector);
}
ProtoGraph.Card.toExplain.prototype.renderMobile = function (data) {
this.mode = 'mobile';
ReactDOM.render(
<ExplainerCard
viewCastId={this.options.viewCastId}
dataURL={this.options.data_url}
schemaURL={this.options.schema_url}
optionalConfigURL={this.options.configuration_url}
optionalConfigSchemaURL={this.options.configuration_schema_url}
mode={this.mode}
readMoreEnabled={data}
clickCallback={this.options.onClickCallback}
ref={(e) => {
this.containerInstance = this.containerInstance || e;
}}
piwikCallback={this.options.piwikCallback}
/>,
this.options.selector);
}
ProtoGraph.Card.toExplain.prototype.renderScreenshot = function (data) {
this.mode = 'screenshot';
ReactDOM.render(
<ExplainerCard
viewCastId={this.options.viewCastId}
dataURL={this.options.data_url}
schemaURL={this.options.schema_url}
optionalConfigURL={this.options.configuration_url}
optionalConfigSchemaURL={this.options.configuration_schema_url}
mode={this.mode}
ref={(e) => {
this.containerInstance = this.containerInstance || e;
}}
piwikCallback={this.options.piwikCallback}
/>,
this.options.selector);
}