Blame view

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

  

e619a3b0   Luigi Serra   Controllet cross ...
15
    <title>Selection</title>

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

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

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

  

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

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

  

73bcce88   luigser   COMPONENTS
31
32
33
    <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 ...
34
35
36
    <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">

73bcce88   luigser   COMPONENTS
37
38
39
40
41
42
43
44
  

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

  

      <style>

  

        :host {

          @apply(--layout-fit);

          @apply(--layout-vertical);

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

73bcce88   luigser   COMPONENTS
46
47
48
49
50
51
  

          display: block;

          font-family: sans-serif;

        }

  

        .toolbar {

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

73bcce88   luigser   COMPONENTS
53
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);

e619a3b0   Luigi Serra   Controllet cross ...
54
          font-weight: bold;

73bcce88   luigser   COMPONENTS
55
56
        }

  

e619a3b0   Luigi Serra   Controllet cross ...
57
58
59
60
61
62
        .toolbar paper-icon-button {

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

        }

  

        #itemsList, 

        #selectedItemsList {

73bcce88   luigser   COMPONENTS
63
64
65
66
          @apply(--layout-flex);

        }

  

        .item {

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

e619a3b0   Luigi Serra   Controllet cross ...
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
          cursor: pointer;

          padding: 16px 22px;

          border-bottom: 1px solid #DDD;

        }

  

        .item:focus {

          outline: 0;

          background-color: #ddd;

        }

  

        .item.selected .star {

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

        }

  

        .item.selected {

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

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

  

        .avatar {

          height: 40px;

          width: 40px;

          border-radius: 20px;

          box-sizing: border-box;

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

        }

  

        .pad {

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

          @apply(--layout-vertical);

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

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

  

        .primary {

          font-size: 16px;

        }

  

        .secondary {

          font-size: 14px;

        }

  

        .dim {

          color: gray;

        }

  

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

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

          height: 24px;

        }

  

e619a3b0   Luigi Serra   Controllet cross ...
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
        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;

        }

  

        paper-item:hover:after {

          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
168
169
170
      </style>

  

      <template>

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

  

        <paper-toolbar class="toolbar">

e619a3b0   Luigi Serra   Controllet cross ...
174
175
176
177
178
          <div class="flex">Inbox</div>

          <div style="position: relative;">

            <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
179
        </paper-toolbar>

e619a3b0   Luigi Serra   Controllet cross ...
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
        <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>

                    </div>

                    <iron-icon icon$="[[iconForItem(selected)]]" class="star"></iron-icon>

73bcce88   luigser   COMPONENTS
196
                  </div>

e619a3b0   Luigi Serra   Controllet cross ...
197
                  <div class="border"></div>

73bcce88   luigser   COMPONENTS
198
                </div>

e619a3b0   Luigi Serra   Controllet cross ...
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
              </template>

            </iron-list>

          </div>

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

            <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
214
215
216
217
218
219
220
221
222
223
224
      </template>

    </dom-module>

  

    <script>

  

      HTMLImports.whenReady(function() {

  

        Polymer({

  

          is: 'x-app',

  

e619a3b0   Luigi Serra   Controllet cross ...
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
262
          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
263
          }

73bcce88   luigser   COMPONENTS
264
265
266
267
268
269
270
271
272
273
274
275
276
        });

  

     });

  

    </script>

  

  </head>

  <body unresolved>

  

    <x-app></x-app>

  

  </body>

  </html>