Blame view

bower_components/iron-list/demo/selection.html 7.43 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>

  

c5169e0e   Renato De Donato   a new hope
15
    <title>Selection</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>

c5169e0e   Renato De Donato   a new hope
39
  

73bcce88   luigser   COMPONENTS
40
41
42
        :host {

          @apply(--layout-fit);

          @apply(--layout-vertical);

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

73bcce88   luigser   COMPONENTS
44
45
46
47
48
49
  

          display: block;

          font-family: sans-serif;

        }

  

        .toolbar {

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

c5169e0e   Renato De Donato   a new hope
51
52
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);

          font-weight: bold;

73bcce88   luigser   COMPONENTS
53
54
        }

  

e619a3b0   Luigi Serra   Controllet cross ...
55
56
57
58
        .toolbar paper-icon-button {

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

        }

  

c5169e0e   Renato De Donato   a new hope
59
        #itemsList, 

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

73bcce88   luigser   COMPONENTS
61
62
63
64
          @apply(--layout-flex);

        }

  

        .item {

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

e619a3b0   Luigi Serra   Controllet cross ...
66
67
68
69
70
          cursor: pointer;

          padding: 16px 22px;

          border-bottom: 1px solid #DDD;

        }

  

eb240478   Luigi Serra   public room cards...
71
72
        .item:focus,

        .item.selected:focus {

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

c5169e0e   Renato De Donato   a new hope
74
          background-color: #ddd;

e619a3b0   Luigi Serra   Controllet cross ...
75
76
77
78
79
80
        }

  

        .item.selected .star {

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

        }

  

c5169e0e   Renato De Donato   a new hope
81
        .item.selected:not(:focus) {

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

73bcce88   luigser   COMPONENTS
83
84
85
86
87
88
89
        }

  

        .avatar {

          height: 40px;

          width: 40px;

          border-radius: 20px;

          box-sizing: border-box;

73bcce88   luigser   COMPONENTS
90
91
92
93
          background-color: #DDD;

        }

  

        .pad {

73bcce88   luigser   COMPONENTS
94
95
          @apply(--layout-flex);

          @apply(--layout-vertical);

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

73bcce88   luigser   COMPONENTS
97
98
99
100
101
102
103
104
105
106
107
108
109
110
        }

  

        .primary {

          font-size: 16px;

        }

  

        .secondary {

          font-size: 14px;

        }

  

        .dim {

          color: gray;

        }

  

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

73bcce88   luigser   COMPONENTS
112
113
114
115
          width: 24px;

          height: 24px;

        }

  

e619a3b0   Luigi Serra   Controllet cross ...
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
        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...
143
        paper-item:hover::after {

e619a3b0   Luigi Serra   Controllet cross ...
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
          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;

        }

  

73bcce88   luigser   COMPONENTS
167
168
169
      </style>

  

      <template>

73bcce88   luigser   COMPONENTS
170
171
172
        <iron-ajax url="data/contacts.json" last-response="{{data}}" auto></iron-ajax>

  

        <paper-toolbar class="toolbar">

c5169e0e   Renato De Donato   a new hope
173
174
          <div class="flex">Inbox</div>

          <div style="position: relative;">

e619a3b0   Luigi Serra   Controllet cross ...
175
176
177
            <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
178
        </paper-toolbar>

c5169e0e   Renato De Donato   a new hope
179
180
181
182
183
184
185
186
187
188
189
190
191
192
        <div class="flex horizontal layout">

          <div class="flex vertical layout">

            <!-- 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">

                        <span>[[index]]</span>

                        <span>[[item.name]]</span>

                      </div>

                      <div class="secondary dim">[[item.shortText]]</div>

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

c5169e0e   Renato De Donato   a new hope
194
                    <iron-icon icon$="[[iconForItem(selected)]]" class="star"></iron-icon>

73bcce88   luigser   COMPONENTS
195
                  </div>

c5169e0e   Renato De Donato   a new hope
196
                  <div class="border"></div>

73bcce88   luigser   COMPONENTS
197
                </div>

c5169e0e   Renato De Donato   a new hope
198
199
200
201
              </template>

            </iron-list>

          </div>

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

e619a3b0   Luigi Serra   Controllet cross ...
202
203
204
205
206
207
208
209
210
211
212
            <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
213
214
215
216
217
218
219
220
221
222
223
      </template>

    </dom-module>

  

    <script>

  

      HTMLImports.whenReady(function() {

  

        Polymer({

  

          is: 'x-app',

  

e619a3b0   Luigi Serra   Controllet cross ...
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
          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
262
          }

73bcce88   luigser   COMPONENTS
263
264
265
266
267
268
269
        });

  

     });

  

    </script>

  

  </head>

73bcce88   luigser   COMPONENTS
270
271
272
273
274
275
  <body unresolved>

  

    <x-app></x-app>

  

  </body>

  </html>