aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/components/hydrogen-set/demo/index.html
blob: 6a1735a69921a3923e649d8b6c7a8e2118dab287 (plain)
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
<!doctype html>
<!--
@license
Copyright (c) 2016 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
-->
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
    <title>hydrogen-set demo</title>
    <script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
    <link rel="import" href="../hydrogen-set.html">
    <link rel="import" href="../../../bower_components/paper-checkbox/paper-checkbox.html">
  </head>

  <style>
    body {
      margin: 0;
      font-family: "RobotoDraft","Roboto",sans-serif;
      font-size: 14;
    }
  </style>

  <body unresolved>
    <dom-module id="x-a">
      <template>
        <template is="dom-repeat" items="[[items]]">
          <span>[[item]]</span>
          <paper-checkbox
            name="[[item]]"
            on-iron-change="_onChange"
            checked="[[_isSelected(item, selected.*)]]"
            ></paper-checkbox>
        </template>
      </template>
    </dom-module>
    <script>
    Polymer({
      is: 'x-a',
      properties: {
        selected: {
          type: Array
        },
        items: {
          type: Array,
          value: function() {
            return ["a","b","c","d","e"];
          }
        }
      },
      _onChange: function(e) {
        var name = e.srcElement.name;
        if (name) {
          if (e.srcElement.checked) {
            this.fire('select', name);
          } else {
            this.fire('unselect', name);
          }
        }
      },
      _isSelected: function(item, selected) {
        return selected.base.indexOf(item) >= 0;
      }
    });
    </script>
    <template is="dom-bind">
      <hydrogen-set
        id="set"
        event-add="{{add}}"
        event-delete="{{del}}"
        out-value="{{selected}}"
      ></hydrogen-set>
      <div>
        Mutate the two sets below.
      </div>
      <br/>
      <div>First Set</div>
      <x-a
        id="a"
        on-select="add"
        on-unselect="del"
        selected="[[selected]]"
      ></x-a>
      <br/>
      <br/>
      <div>Second Set</div>
      <x-a
        id="b"
        on-select="add"
        on-unselect="del"
        selected="[[selected]]"
      ></x-a>
      <br/>
      <br/>
      <div>List Selected:</div>
      <template is="dom-repeat" items="[[selected]]">
        <div>[[item]]</div>
      </template>
    </template>
  </body>
</html>