-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent-adder.html
235 lines (211 loc) · 7.9 KB
/
component-adder.html
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../iron-icons/iron-icons.html">
<link rel="import" href="../paper-dialog/paper-dialog.html">
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../juicy-jsoneditor/juicy-jsoneditor.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../polymerfire/firebase-document.html">
<!-- josdejong/jsoneditor#104 workaround-->
<link rel="stylesheet" type="text/css" href="../jsoneditor/dist/jsoneditor.min.css">
<dom-module id="component-adder">
<template>
<style>
#editor {
width: 90%;
}
paper-dialog-scrollable {
display: block;
}
#editor paper-dialog-scrollable {
height: 300px;
}
juicy-jsoneditor {
display: inline-block;
height: calc(100% - 60px);
width: calc(100% - 10px);
}
#bowernamedialog {
width: 400px;
}
#bowernamedialog paper-input {
display: inline-block;
margin: 0 20px;
}
.divider {
@apply(--layout-horizontal)
}
.divider > div {
@apply(--layout-flex);
}
.note {
font-size: 12px;
line-height: 1;
font-style: italic;
}
</style>
<firebase-document
id="componenteditor">
</firebase-document>
<paper-fab icon="icons:add" title="add" on-click="openPropertyAdder"></paper-fab>
<paper-dialog id="editor">
<h2>Component Editor</h2>
<paper-dialog-scrollable>
<div class="divider">
<div>
<p>Enter the contents of <span>bower.json</span> file.</p>
<juicy-jsoneditor
json="{{bower_json}}"
mode="code"
modes="[[modes]]"
search="false"></juicy-jsoneditor>
</div>
<div>
<p>Enter the contents of <span>properties.json</span> file.</p>
<juicy-jsoneditor
json="{{property_json}}"
mode="code"
modes="[[modes]]"
search="false"></juicy-jsoneditor>
</div>
</div>
</paper-dialog-scrollable>
<div class="buttons">
<paper-button dialog-dismiss>Cancel</paper-button>
<paper-button on-click="handleAdd">Accept</paper-button>
</div>
</paper-dialog>
<paper-dialog id="bowernamedialog">
<h2>How did you install it using bower?</h2>
<paper-dialog-scrollable>
<p>bower install
<paper-input label="Bower Package Name" value="{{bowerName}}">
</paper-input>
</p>
<p class="note">Why is this important? This package name is stored and will be used by other devs while installing components in their dev machines.</p>
</paper-dialog-scrollable>
<div class="buttons">
<paper-button on-click="handleBowerNameAdd">Accept</paper-button>
</div>
</paper-dialog>
</template>
<script>
Polymer({
is: 'component-adder',
properties: {
modes: {
type: Array,
value: [
'form',
'code',
'tree',
'view'
],
reflectToAttribute: false
},
bower_json: {
type: Object,
value: {},
notify: true
},
property_json: {
type: Array,
value: [
{
"description" : "",
"name" : "",
"type" : "",
"value" : ""
}
],
notify: true
},
display_property: {
type: Array,
value: [
{
description : "The start column location of this component",
name : "gridColumnStart",
type : "text",
value : "1"
}, {
description : "The end column location of this component",
name : "gridColumnEnd",
type : "text",
value : "12"
}, {
description : "The start row location of this component",
name : "gridRowStart",
type : "text",
value : ""
}, {
description : "The end row location of this component",
name : "gridRowEnd",
type : "text",
value : ""
}
]
},
bowerName: {
type: String,
value: '',
notify: true
},
jsonToStore: {
type: Object,
value: {},
notify: true
},
nextIndex: {
type: Number,
notify: true,
value: 0,
reflectToAttribute: true
}
},
observers: [
'generateJson(bower_json, property_json, display_property)'
],
openPropertyAdder: function() {
this.jsonToStore = null;
this.$.editor.open();
},
generateJson: function(bower_json, property_json, display_property) {
var data = {
name: bower_json.name,
properties: [
{
name: "componentProperties",
value: property_json
},
{
name : "display",
value : display_property
}
],
homepage: bower_json.homepage,
version: bower_json.version || '0.0'
};
this.set('jsonToStore', data);
},
handleAdd: function() {
this.generateJson(this.bower_json, this.property_json, this.display_property);
this.$.editor.close();
if(typeof this.jsonToStore.bower === "undefined") {
this.$.bowernamedialog.open();
return;
}
this.triggerFirebaseAdd();
},
handleBowerNameAdd: function() {
this.jsonToStore.bower = this.bowerName;
this.$.bowernamedialog.close();
this.triggerFirebaseAdd();
},
triggerFirebaseAdd: function() {
this.nextIndex = this.nextIndex || 0;
this.$$('#componenteditor').setStoredValue('/components/' + this.nextIndex, this.jsonToStore);
}
});
</script>
</dom-module>