forked from googlearchive/paper-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paper-calculator-key.html
100 lines (82 loc) · 2.35 KB
/
paper-calculator-key.html
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
<!--
Copyright (c) 2014 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
-->
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../paper-ripple/paper-ripple.html">
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../iron-flex-layout/iron-flex-layout-classes.html">
<dom-module id="paper-calculator-key">
<style include="iron-flex iron-flex-alignment"></style>
<style>
:host {
display: block;
position: relative;
}
#keyLabel, .ink-container {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
#keyLabel {
pointer-events: none;
}
#ink {
--paper-button-ink-color: rgb(241, 250, 65);
text-transform: none;
pointer-events: none;
min-width: 100%;
width: 100%;
height: 100%;
}
.small {
font-size: smaller;
}
</style>
<template>
<div id="keyLabel" class="horizontal center-justified center layout">
<paper-button id="ink">{{label}}</paper-button>
</div>
</template>
<script>
Polymer({
is:"paper-calculator-key",
properties:{
label:{
type:String,
notify: true,
reflectToAttribute: true,
observer: "labelChanged"
}
},
listeners: {
down: 'downAction',
up: 'upAction'
},
labelChanged: function () {
Polymer.dom(this.$.ink).classList.toggle('small', this.label === 'DEL' || this.label === 'Clear');
},
downAction: function (e) {
this.$.ink.getRipple().downAction(e);
},
upAction: function () {
this.$.ink.getRipple().upAction();
},
//toFix! key has to be changed!
cancelKey: function (e) {
e.preventTap();
this.resetInk();
},
//
resetInk: function () {
this.$.ink.getRipple().cancel();
}
});
</script>
</dom-module>