15df8c68
Luigi Serra
search bar contro...
|
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
|
<!--
@license
The MIT License (MIT)
Copyright (c) 2015 Dipartimento di Informatica - Università di Salerno - Italy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<!--
* Developed by :
* ROUTE-TO-PA Project - grant No 645860. - www.routetopa.eu
*
-->
<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../bower_components/paper-styles/color.html">
<link rel="import" href="../../bower_components/paper-input/paper-input.html">
<link rel="import" href="../../bower_components/paper-icon-button/paper-icon-button.html">
<link rel="import" href="../../bower_components/neon-animation/neon-animated-pages.html">
<link rel="import" href="../../bower_components/neon-animation/neon-animatable.html">
<link rel="import" href="../../bower_components/iron-flex-layout/iron-flex-layout.html">
<!--
`text-element-controllet` is a text area with heading. It fires an event when the text value is modified. This event can be useful when you have to monitor many af this elements.
Example:
<text-element-controllet heading="myField"
description="myFieldDescription"
number="1">
</text-element-controllet>
@element text-element-controllet
@status beta
@homepage
@group controllets
-->
<dom-module id="search-panel-controllet">
<template>
<style is="custom-style">
paper-input.search-text{
--paper-input-container-input-color: #ffffff;
--paper-input-container-focus-color: #ffffff;
--paper-input-container-color: #ffffff;
|
a7d52488
Renato De Donato
ln
|
68
|
position: absolute;
|
2ab5559c
Renato De Donato
animated-button-c...
|
69
70
71
|
/*top: -12px;*/
/*width: 20vw;*/
width: 392px;
|
15df8c68
Luigi Serra
search bar contro...
|
72
73
|
}
|
2ab5559c
Renato De Donato
animated-button-c...
|
74
|
paper-icon-button
|
563db87f
isisadmin
bug fix
|
75
|
{
|
15df8c68
Luigi Serra
search bar contro...
|
76
77
78
79
|
}
</style>
<div class="horizontal layout">
|
0a87e7be
Luigi Serra
updates
|
80
81
82
83
|
<template is="dom-if" if="{{leftDirection}}">
<paper-icon-button id="search_button" icon="search" class="dropdown-trigger" on-click="_toggleClick"></paper-icon-button>
</template>
|
15df8c68
Luigi Serra
search bar contro...
|
84
85
|
<neon-animated-pages selected="[[selected]]" entry-animation="[[entryAnimation]]" exit-animation="[[exitAnimation]]">
<neon-animatable></neon-animatable>
|
0a87e7be
Luigi Serra
updates
|
86
|
<neon-animatable>
|
a7d52488
Renato De Donato
ln
|
87
|
<paper-input id="search_text" class="search-text" autofocus autosave="search_text" results="5" transition="fade-in-animation" value="{{searchKey}}" no-label-float>
|
0a87e7be
Luigi Serra
updates
|
88
89
|
</paper-input>
</neon-animatable>
|
15df8c68
Luigi Serra
search bar contro...
|
90
|
</neon-animated-pages>
|
0a87e7be
Luigi Serra
updates
|
91
92
93
94
|
<template is="dom-if" if="{{rightDirection}}">
<paper-icon-button id="search_button" icon="search" class="dropdown-trigger" on-click="_toggleClick"></paper-icon-button>
</template>
|
15df8c68
Luigi Serra
search bar contro...
|
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
|
</div>
</template>
<script>
Polymer({
is: 'search-panel-controllet',
/**
* Fired when the user change the text value
*
* @event search-panel-controllet_content-changed
*/
properties: {
timer :{
type: Number,
value : 0
},
selected : {
type: Number,
value : 0
},
entryAnimation : {
type: String,
value: ""
},
exitAnimation : {
type: String,
value: ""
|
59190a9b
Luigi Serra
update
|
127
128
129
130
131
132
|
},
searchKey:{
type: String,
value: undefined,
observer: "_valueChanged"
|
0a87e7be
Luigi Serra
updates
|
133
134
135
136
137
138
139
140
|
},
leftDirection: {
type: String,
value: undefined
},
rightDirection: {
type: String,
value: undefined
|
15df8c68
Luigi Serra
search bar contro...
|
141
142
|
}
},
|
0a87e7be
Luigi Serra
updates
|
143
144
145
|
ready: function(){
|
563db87f
isisadmin
bug fix
|
146
|
if(this.leftDirection != undefined){
|
0a87e7be
Luigi Serra
updates
|
147
148
149
150
151
152
|
this.$.search_text.style.left = '5px';
}else if(this.rightDirection != undefined){
this.$.search_text.style.right = '5px';
}
},
|
15df8c68
Luigi Serra
search bar contro...
|
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
_toggleClick: function(e){
if(this.selected == 0) {
this.entryAnimation = 'fade-in-animation';//'slide-from-right-animation';
this.exitAnimation = 'fade-out-animation';//'slide-left-animation';
this.selected = 1;
}else{
this.entryAnimation = 'fade-in-animation';//'slide-from-left-animation';
this.exitAnimation = 'fade-out-animation';//'slide-right-animation';
this.selected = 0;
}
},
/**
* Callback related to text change
*
* @method _valueChanged
*
* @param {Event} e
*/
_valueChanged : function(oldvalue, newValue){
|
bcfa69c3
isisadmin
search panel cont...
|
172
173
174
|
var t = this;
clearTimeout(this.timer);
this.timer = setTimeout(function(){t.fire('search-panel-controllet_content-changed', {searchKey: t.searchKey, id : t.id})}, 500);
|
15df8c68
Luigi Serra
search bar contro...
|
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
},
/**
* It returns the value in text area
*
* @method getValue
*/
getValue : function(){
return this.$.text.value;
}
});
</script>
</dom-module>
|