aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/components/tf-collapsable-pane/tf-collapsable-pane.html
blob: c06d40a2ec2e2bcbadb151de5500bf6ba664f35d (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
<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../bower_components/iron-collapse/iron-collapse.html">

<dom-module id="tf-collapsable-pane">
  <template>
    <button
      class="heading"
      on-tap="togglePane"
      open-button$="[[opened]]"
    >
    <span class="name">[[name]]</span>
    <span class="hackpadding"></span>
    <span class="count">
      (<span>[[count]]</span>)
    </span>
  </button>
    <iron-collapse opened="[[opened]]">
      <div class="content">
        <template is="dom-if" if="[[opened]]" restamp="[[restamp]]">
          <content></content>
        </template>
      </div>
    </iron-collapse>
    <style>
      .heading {
        margin-top: 10px;
        padding-left: 15px;
        background-color: #f3f3f3;
        border: 1px solid #dedede;
        border-radius: 5px;
        font-size: 18px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        width: 100%;
        height: 30px;
        box-sizing: border-box;
        font-size: 16px;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        line-height: 1;
        padding-top: 2px;
        padding-bottom: 2px;
      }

      .content {
        padding: 15px;
        border: 1px solid #dedede;
        border-top: none;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
      }
      [open-button] {
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
      }
      .name {
        flex-grow: 0;
      }
      .count {
        flex-grow: 0;
        float: right;
        font-size: 12px;
      }
      .hackpadding {
        /* An obnoxious hack, but I can't get justify-content: space-between to work */
        flex-grow: 1;
      }
    </style>
  </template>
  <script>
    Polymer({
      is: "tf-collapsable-pane",
      properties: {
        opened: {type: Boolean, value: false},
        restamp: {type: Boolean, value: true},
        name: {type: String, observer: "hide"},
        count: {type: Number},
      },
      hide: function() {
        this.opened = false;
      },
      togglePane: function() {
        this.opened = !this.opened;
      }
    });
  </script>

</dom-module>