Blame view

controllets/paper-card-controllet/paper-card-controllet__.html 6.18 KB
7383b38e   Luigi Serra   paper-card-contro...
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
107
108
109
110
111
112
113
114
115
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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
  <link rel="import" href="../../bower_components/polymer/polymer.html"/>

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

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

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

  

  <dom-module id="paper-card-controllet">

  

      <template>

          <link rel="stylesheet" href="../shared_js/perfect-scrollbar/css/perfect-scrollbar.min.css">

          <link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>

          <style>

              :host {

                  display: inline-block;

                  margin: 0 8px 8px ;

                  font-size: 14px;

                  line-height: 10px;

                  --paper-fab-background: var(--accent-color);

                  font-family: 'Roboto', sans-serif;

              }

  

              paper-material {

                  background-color: white;

                  border-width: 1em;

              }

  

              .header {

                  position: relative;

                  /*margin-bottom: 24px;*/

              }

  

  

              .title

              {

                  position: relative;

                  margin-left: 40px;

              }

  

              .big

              {

                  font-size: 1em;

                  padding: 8px;

              }

  

              .small

              {

                  font-size: 0.8em;

                  padding-top: 10px;

                  font-weight: bold;

              }

  

              .legend {

                  position: relative;

                  float: left;

                  width: 100%;

                  background: rgba(0,0,0,0.2);

                  bottom: 0;

                  color: white;

                  height: 50px;

                  padding: 0 16px;

                  left: 0; right: 0;

              }

              paper-fab {

                  position: absolute;

                  left: 10px;

                  margin-top: 24px;

                  z-index: 10;

                  --paper-fab-background:#2196F3;

              }

  

              #content ::content {

                  /*padding: 0 16px 8px;*/

                  padding: 0 16px 8px;

                  font-weight: 300;

                  color: var(--secondary-text-color);

                  line-height: 24px;

                  max-height: 400px;

                  position:relative;

                  overflow: auto;

              }

              ::content.buttons {

                  margin-top: 8px;

              }

              ::content paper-button, ::content paper-icon-button {

                  font-weight: 500;

                  color: var(--accent-color);

              }

  

              #text{

                  position:relative;

                  height: auto;

                  padding: 8px 8px 8px 8px;

                  font-size: 10px;

                  color: rgba(0,0,0,0.4);

                  font-family: 'Roboto', sans-serif;

              }

          </style>

  

  

          <paper-material animated elevation="{{elevation}}" flex>

  

              <div class="vertical layout">

  

                  <div class="header">

  

                      <template is="dom-if" if="{{legend}}">

  

                          <div class="legend horizontal layout center">

                              <div class="title flex">

                                  <div class="big">{{legend}}</div>

                                  <!--<div class="small">Copy and paste/drag and drop in the textarea the url of datasource</div>-->

                              </div>

                              <!-- Adding icon based on card type -->

  

                              <template is="dom-if" if="{{checkType(type, 'text')}}">

  

                                 <paper-fab mini icon="create"></paper-fab>

  

                               </template>

  

                              <template is="dom-if" if="{{checkType(type, 'image')}}">

  

                                  <paper-fab mini icon="perm-media"></paper-fab>

  

                              </template>

  

                              <template is="dom-if" if="{{checkType(type, 'datalet')}}">

  

                                  <paper-fab mini icon="assessment"></paper-fab>

  

                              </template>

  

                              <template is="dom-if" if="{{checkType(type, 'link')}}">

  

                                  <paper-fab mini icon="link"></paper-fab>

  

                              </template>

  

                              <!--<div id="text">

                                  Lorem Ipsum è un testo segnaposto utilizzato nel settore della tipografia e

                                  della stampa. Lorem Ipsum è considerato il testo segnaposto standard sin dal

                                  sedicesimo secolo.

                              </div>-->

  

                          </div>

  

                      </template>

  

                      <div id="content">

                          <content></content>

                      </div>

                  </div>

  

              </div>

          </paper-material>

  

      </template>

  

      <script src="../shared_js/perfect-scrollbar/js/min/perfect-scrollbar.jquery.min.js"></script>

  

      <script>

          Polymer({

              is: "paper-card-controllet",

              properties: {

                  width: {

                      type: Number,

                      observer: "_changeWidth",

                  },

                  height: {

                      type: Number,

                      observer: "_changeHeight",

                  },

                  type:{

                      type: String,

                      value: "text"

                  }

              },

  

              _changeWidth: function(data){

                  this.style.width = data + "px";

                  //this.$.content.style.width = data + "px";

                  //$(this.$.content).perfectScrollbar();

              },

  

              _changeHeight: function(data){

                  this.style.height = (data + 20) + "px";

                  this.$.content.style.height = data + "px";

                 //$(this.$.content).perfectScrollbar();

              },

  

              checkType: function(type, check){

                  return (type == check);

              }

          })

      </script>

  

  </dom-module>