forked from cheonhyangzhang/paper-tags-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag-item.html
178 lines (163 loc) · 4.42 KB
/
tag-item.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
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../iron-icon/iron-icon.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../iron-icons/iron-icons.html">
<!--
tag-item is a tag element used by tags-input to show tags with a closed button.
<tag-item></tag-item>
@demo
-->
<dom-module id="tag-item">
<style>
:host {
display: block;
box-sizing: border-box;
font-family: 'Roboto', 'Noto', sans-serif;
}
/*.tag-value{
margin-top: 11px;
}*/
.tag-item-container{
/*background-color: var(--light-primary-color);*/
background-color: #4d97eb;
/*opacity: 0.95;*/
color: white;
text-shadow: 0 0 0 #ffffff;
border-radius: 20px;
float:left;
margin-left:1px;
margin-right:1px;
margin-bottom:1px;
padding-left:10px;
}
.large{
font-size:18px;
}
.large paper-icon-button::shadow #icon{
width: 22px;
height: 22px;
}
.medium{
font-size:14px;
/* font-weight:400 !important; */
}
.medium paper-icon-button::shadow #icon{
width: 16px;
height: 16px;
}
.small{
font-size:12px;
}
.small paper-icon-button::shadow #icon{
width: 14px;
height: 14px;
}
.paper-icon-button-0 {
width: auto !important;
height: auto !important;
padding: 2px !important;
margin-left: -2px;
}
</style>
<template>
<div style$="[[_containerColor(tagColor, fontColor)]]" class$="[[_containerClass(size)]]">
<span class="tag-value" style="vertical-align: middle;">[[tagvalue]]</span>
<template is="dom-if" if="[[enableRemove]]">
<paper-icon-button on-tap="_removeItem" icon="icons:cancel"></paper-icon-button>
</template>
<template is="dom-if" if="[[!enableRemove]]">
<paper-icon-button style="width:16px;height:16px;visibility:hidden;" on-tap="remove" icon="icons:cancel"></paper-icon-button>
</template>
</div>
</template>
</dom-module>
<script>
Polymer({
is: 'tag-item',
properties: {
/**
* index of the tag
*/
index:Number,
/**
* size of the tags, possible values: small, medium, large
*/
size:{
type:String,
value:'medium'
},
/**
* CSS color of tag
*/
tagColor:String,
/**
* CSS color of text and remove button
*/
fontColor:String,
/**
* Boolean flag to indicate if enable remove operation
*/
enableRemove:{
type:Boolean,
value:true
}
,
/**
* value of the tag
*/
tagvalue:String,
/**
* value of the tags
*/
tags:{
type:Array,
notify: true
},
},
/**
* _containerColor is the internal method to compute background style
*
*/
_containerColor:function(tagColor, fontColor){
var styles = []
if (typeof(tagColor) != "undefined"){
styles.push("background-color:" + tagColor);
}
if (typeof(fontColor) != "undefined"){
styles.push("color:" + fontColor);
}
return styles.join(";");
},
/**
* _containerClass is the internal method to compute size css name
*
*/
_containerClass:function(size){
return size + " tag-item-container";
},
/**
* _removeItem is the internal method to remove a tag from the tags list
*
* @param {object} event object
*/
_removeItem: function(e){
if (this.enableRemove == false){
return;
}
var parent = e.target.parentElement.parentElement.parentElement;
var index = parent.index;
this.tags.splice(index,1);
this.tags = this.tags.slice();
}
});
</script>