Blame view

bower_components/iron-list/demo/selection.html 7.7 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <!--

  @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

  -->

  

  <!doctype html>

  <html>

  <head>

  

a1a3bc73   Luigi Serra   graphs updates
15
    <title>Select contacts</title>

73bcce88   luigser   COMPONENTS
16
17
18
19
20
21
22
23
24
25
  

    <meta charset="utf-8">

    <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">

    <meta name="mobile-web-app-capable" content="yes">

    <meta name="apple-mobile-web-app-capable" content="yes">

  

    <script src="../../webcomponentsjs/webcomponents-lite.js"></script>

  

    <link rel="import" href="../../polymer/polymer.html">

    <link rel="import" href="../../iron-flex-layout/iron-flex-layout.html">

73bcce88   luigser   COMPONENTS
26
    <link rel="import" href="../../iron-ajax/iron-ajax.html">

e619a3b0   Luigi Serra   Controllet cross ...
27
    <link rel="import" href="../../paper-icon-button/paper-icon-button.html">

73bcce88   luigser   COMPONENTS
28
29
30
    <link rel="import" href="../../iron-icon/iron-icon.html">

    <link rel="import" href="../../iron-icons/iron-icons.html">

    <link rel="import" href="../../paper-toolbar/paper-toolbar.html">

e619a3b0   Luigi Serra   Controllet cross ...
31
32
33
    <link rel="import" href="../../paper-menu/paper-menu.html">

    <link rel="import" href="../../paper-item/paper-item.html">

    <link rel="import" href="../../paper-badge/paper-badge.html">

eb240478   Luigi Serra   public room cards...
34
    <link rel="import" href="../iron-list.html">

73bcce88   luigser   COMPONENTS
35
36
37
38
  

    <dom-module id="x-app">

  

      <style>

73bcce88   luigser   COMPONENTS
39
40
41
        :host {

          @apply(--layout-fit);

          @apply(--layout-vertical);

e619a3b0   Luigi Serra   Controllet cross ...
42
          @apply(--paper-font-common-base);

73bcce88   luigser   COMPONENTS
43
44
45
46
47
48
  

          display: block;

          font-family: sans-serif;

        }

  

        .toolbar {

e619a3b0   Luigi Serra   Controllet cross ...
49
          background: var(--paper-pink-500);

a1a3bc73   Luigi Serra   graphs updates
50
51
52
53
54
55
56
57
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);

          z-index: 1;

          --paper-toolbar-title: {

            font-size: 16px;

            line-height: 16px;

            font-weight: bold;

            margin-left: 0;

          };

73bcce88   luigser   COMPONENTS
58
59
        }

  

e619a3b0   Luigi Serra   Controllet cross ...
60
61
62
63
        .toolbar paper-icon-button {

          --paper-icon-button-ink-color: white;

        }

  

a1a3bc73   Luigi Serra   graphs updates
64
        #itemsList,

e619a3b0   Luigi Serra   Controllet cross ...
65
        #selectedItemsList {

73bcce88   luigser   COMPONENTS
66
67
68
69
          @apply(--layout-flex);

        }

  

        .item {

73bcce88   luigser   COMPONENTS
70
          @apply(--layout-horizontal);

e619a3b0   Luigi Serra   Controllet cross ...
71
72
73
74
75
          cursor: pointer;

          padding: 16px 22px;

          border-bottom: 1px solid #DDD;

        }

  

a1a3bc73   Luigi Serra   graphs updates
76
77
78
79
        .item:hover {

          background-color: var(--google-grey-100);

        }

  

eb240478   Luigi Serra   public room cards...
80
81
        .item:focus,

        .item.selected:focus {

e619a3b0   Luigi Serra   Controllet cross ...
82
          outline: 0;

e619a3b0   Luigi Serra   Controllet cross ...
83
84
85
86
87
88
        }

  

        .item.selected .star {

          color: var(--paper-blue-600);

        }

  

a1a3bc73   Luigi Serra   graphs updates
89
        .item.selected {

e619a3b0   Luigi Serra   Controllet cross ...
90
          background-color: var(--google-grey-100);

73bcce88   luigser   COMPONENTS
91
92
93
94
95
96
97
        }

  

        .avatar {

          height: 40px;

          width: 40px;

          border-radius: 20px;

          box-sizing: border-box;

73bcce88   luigser   COMPONENTS
98
99
100
101
          background-color: #DDD;

        }

  

        .pad {

73bcce88   luigser   COMPONENTS
102
103
          @apply(--layout-flex);

          @apply(--layout-vertical);

e619a3b0   Luigi Serra   Controllet cross ...
104
          padding: 0 16px;

73bcce88   luigser   COMPONENTS
105
106
107
108
109
110
111
112
113
114
115
116
117
118
        }

  

        .primary {

          font-size: 16px;

        }

  

        .secondary {

          font-size: 14px;

        }

  

        .dim {

          color: gray;

        }

  

e619a3b0   Luigi Serra   Controllet cross ...
119
        .star {

73bcce88   luigser   COMPONENTS
120
121
122
123
          width: 24px;

          height: 24px;

        }

  

e619a3b0   Luigi Serra   Controllet cross ...
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
        paper-badge {

          -webkit-transition: all 0.1s;

          transition: all 0.1s;

          opacity: 1;

          margin-top: 5px;

        }

  

        paper-badge[label="0"] {

          opacity: 0;

        }

  

        #starredView {

          width: 200px;

          border-left: 1px solid #ddd;

        }

  

        paper-item {

          white-space: nowrap;

          cursor: pointer;

          position: relative;

        }

  

        paper-item:focus {

          outline: 0;

          background-color: #ddd;

        }

  

eb240478   Luigi Serra   public room cards...
151
        paper-item:hover::after {

e619a3b0   Luigi Serra   Controllet cross ...
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
          content: "-";

          width: 16px;

          height: 16px;

          display: block;

          border-radius: 50% 50%;

          background-color: var(--google-red-300);

          margin-left: 10px;

          line-height: 16px;

          text-align: center;

          color: white;

          font-weight: bold;

          text-decoration: none;

          position: absolute;

          right: 15px;

          top: calc(50% - 8px);

        }

  

        .noSelection {

          color: #999;

          margin-left: 10px;

          line-height: 50px;

        }

  

a1a3bc73   Luigi Serra   graphs updates
175
176
177
178
179
180
181
182
183
        .twoColumns {

          @apply(--layout-flex);

          @apply(--layout-horizontal);

          overflow: hidden;

        }

  

        #starredView {

          @apply(--layout-vertical);

        }

73bcce88   luigser   COMPONENTS
184
185
186
      </style>

  

      <template>

73bcce88   luigser   COMPONENTS
187
188
189
        <iron-ajax url="data/contacts.json" last-response="{{data}}" auto></iron-ajax>

  

        <paper-toolbar class="toolbar">

a1a3bc73   Luigi Serra   graphs updates
190
191
          <div class="title">Selection using iron-list</div>

          <div>

e619a3b0   Luigi Serra   Controllet cross ...
192
193
194
            <paper-icon-button icon="icons:star" alt="Starred" on-tap="_toggleStarredView"></paper-icon-button>

            <paper-badge label$="[[selectedItems.length]]"></paper-badge>

          </div>

73bcce88   luigser   COMPONENTS
195
        </paper-toolbar>

a1a3bc73   Luigi Serra   graphs updates
196
197
198
199
200
201
202
203
204
205
        <div class="twoColumns">

          <!-- Main List for the items -->

          <iron-list id="itemsList" items="[[data]]" selected-items="{{selectedItems}}" selection-enabled multi-selection>

            <template>

              <div>

                <div tabindex="0" aria-label$="[[_getAriaLabel(item, selected)]]" class$="[[_computedClass(selected)]]">

                  <img class="avatar" src="[[item.image]]">

                  <div class="pad">

                    <div class="primary">

                      [[item.name]]

e619a3b0   Luigi Serra   Controllet cross ...
206
                    </div>

a1a3bc73   Luigi Serra   graphs updates
207
                    <div class="secondary dim">[[item.shortText]]</div>

73bcce88   luigser   COMPONENTS
208
                  </div>

a1a3bc73   Luigi Serra   graphs updates
209
                  <iron-icon icon$="[[iconForItem(selected)]]" class="star"></iron-icon>

73bcce88   luigser   COMPONENTS
210
                </div>

a1a3bc73   Luigi Serra   graphs updates
211
212
213
214
215
                <div class="border"></div>

              </div>

            </template>

          </iron-list>

          <div id="starredView" hidden$="[[!showSelection]]">

e619a3b0   Luigi Serra   Controllet cross ...
216
217
218
219
220
221
222
223
224
225
226
            <template is="dom-if" if="[[!selectedItems.length]]">

              <div class="noSelection">Select a contact</div>

            </template>

            <!-- List for the selected items -->

            <iron-list id="selectedItemsList" items="[[selectedItems]]" hidden$="[[!selectedItems.length]]">

              <template>

                <paper-item on-tap="_unselect" tabindex="0">[[item.name]]</paper-item>

              </template>

            </iron-list>

          </div>

        </div>

73bcce88   luigser   COMPONENTS
227
228
229
230
231
232
233
234
235
236
237
      </template>

    </dom-module>

  

    <script>

  

      HTMLImports.whenReady(function() {

  

        Polymer({

  

          is: 'x-app',

  

e619a3b0   Luigi Serra   Controllet cross ...
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
          properties: {

            selectedItems: {

              type: Object

            },

  

            showSelection: {

              type: Boolean,

              value: true,

              observer: '_showSelectionChanged'

            }

          },

  

          iconForItem: function(isSelected) {

            return isSelected ? 'star' : 'star-border';

          },

  

          _computedClass: function(isSelected) {

            var classes = 'item';

            if (isSelected) {

              classes += ' selected';

            }

            return classes;

          },

  

          _unselect: function(e) {

            this.$.itemsList.deselectItem(e.model.item);

          },

  

          _toggleStarredView: function() {

            this.showSelection = !this.showSelection;

          },

  

          _showSelectionChanged: function() {

            this.$.selectedItemsList.fire('resize');

          },

  

          _getAriaLabel: function(item, selected) {

            return selected ? 'Deselect ' + item.name : 'Select ' + item.name;

73bcce88   luigser   COMPONENTS
276
          }

73bcce88   luigser   COMPONENTS
277
278
279
280
281
282
283
        });

  

     });

  

    </script>

  

  </head>

a1a3bc73   Luigi Serra   graphs updates
284
285
286
287
288
  <style is="custom-style">

    body {

      @apply(--layout-fullbleed);

    }

  </style>

73bcce88   luigser   COMPONENTS
289
290
291
292
293
294
  <body unresolved>

  

    <x-app></x-app>

  

  </body>

  </html>