-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasq-text-input.html
173 lines (140 loc) · 4.43 KB
/
asq-text-input.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
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../asq-base/asq-base.html">
<!--
`asq-text-input` is a styled single-line input field. It can be used for simple
text questions.
##### Example
<asq-text-input label="value">
<asq-stem><h5>What's value of a[3]?</h5></asq-stem>
<pre><code>
char a[27];
char *b = "abc";
strcpy(a, b);</code></pre>
<asq-solution hidden>\0</asq-solution>
</asq-text-input>
@element asq-text-input
@group ASQ Elements
@blurb Element a styled single-line input field. It wraps the `paper-input` element.
@homepage http://github.com/ASQ-USI/asq-text-input
-->
<polymer-element name="asq-text-input">
<template>
<style>
:host {
display: block;
}
</style>
<content select="asq-stem"></content>
<content></content>
<div>
<paper-input label="{{label}}" floatingLabel="{{floatingLabel}}"
value="{{value}}" disabled="{{disabled}}"></paper-input>
</div>
</template>
<script>
(function() {
var p = {
publish: {
/**
* The label for this input. It normally appears as grey text inside
* the text input and disappears once the user enters text.
*
* @attribute label
* @type string
* @default ''
*/
label: '',
/**
* If true, the label will "float" above the text input once the
* user enters text instead of disappearing.
*
* @attribute floatingLabel
* @type boolean
* @default false
*/
floatingLabel: false,
/**
* Set to true to style the element as disabled.
*
* @attribute disabled
* @type boolean
* @default false
*/
disabled: {value: false, reflect: true},
/**
* The current value of the input.
*
* @attribute value
* @type String
* @default ''
*/
value: '',
},
// Overwrite defalut value for all instances of `asq-text-input`, which are question type.
isASQQuestionTypeElement : true,
created: function(){
document.addEventListener('asq-ready', function(evt){
try {
this.subscribeToEvents(evt.detail.asqEventBus)
} catch(err){
console.debug('failed to subscribeToEvents');
}
}.bind(this));
},
onQuestionType: function(evt){
if(!evt || ! evt.questionType) return;
if(evt.questionType == 'asq-text-input'){
if(evt.type == "restorePresenter"){
if(this.role !== this.roles.PRESENTER) return;
this.onRestorePresenter(evt);
}
else if(evt.type == "restoreViewer"){
if(this.role !== this.roles.VIEWER) return;
this.onRestoreViewer(evt);
}
}
},
onRestorePresenter: function(evt){
},
onRestoreViewer: function(evt){
evt.questions.forEach(function(q){
console.log(q)
if(q.uid != this.uid) return;
this.value = q.value;
}.bind(this));
},
subscribeToEvents: function(eventBus){
eventBus.on('asq:question_type', this.onQuestionType.bind(this));
},
/**
* The `submit` method returns an object called *detail* that respresents the submission of this question. The *detail* object has the following structure:
{
questionUid: this.uid,
timestamp: new Date(),
submission: submission
}
* Only enabled when the `role` of the element is <b>viewer</b>.
*
* @method submit
*/
submit: function() {
if ( this.role !== this.roles.VIEWER ) {
return;
}
if ( ! this.value ) {
this.value = "";
}
submission = this.value.replace(/[\s]+/g, " ").trim();
return {
questionUid: this.uid,
timestamp: new Date(),
submission: submission
};
}
}
ASQ.asqify(p, true);
Polymer('asq-text-input', p);
})();
</script>
</polymer-element>