forked from LRNWebComponents/hax-body
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hax-iframe-context.html
144 lines (138 loc) · 4.2 KB
/
hax-iframe-context.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
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
<link rel="import" href="../app-layout/app-toolbar/app-toolbar.html">
<link rel="import" href="../paper-input/paper-textarea.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<link rel="import" href="../paper-swatch-picker/paper-swatch-picker.html">
<link rel="import" href="../paper-slider/paper-slider.html">
<link rel="import" href="../paper-tooltip/paper-tooltip.html">
<link rel="import" href="../paper-item/paper-item.html">
<link rel="import" href="../iron-icons/iron-icons.html">
<link rel="import" href="hax-context-item-menu.html">
<link rel="import" href="hax-context-item.html">
<!--
`hax-iframe-context`
A context menu that provides common iframe based authoring options.
@demo demo/index.html
@microcopy - the mental model for this element
- context menu - this is a menu of iframe based buttons and events for use in a larger solution.
-->
<dom-module id="hax-iframe-context">
<template>
<style>
:host {
display: block;
}
app-toolbar {
background-color: white;
padding: 0;
height: 40px;
}
hax-context-item {
margin: 0;
width: 40px;
height: 40px;
}
.close-cap {
margin: 0;
padding: 0;
border-right: 1px solid black;
}
</style>
<app-toolbar>
<hax-context-item
icon="close"
label="Close menu"
event-name="close-menu"
class="close-cap"
direction="left"></hax-context-item>
<hax-context-item-menu
selected-value="{{justifyValue}}"
id="justify"
icon="[[justifyIcon]]"
label="Alignment">
<paper-item value="hax-align-left">
<iron-icon icon="editor:format-align-left"></iron-icon>
</paper-item>
<paper-item value="hax-align-center">
<iron-icon icon="editor:format-align-center"></iron-icon>
</paper-item>
<paper-item value="hax-align-right">
<iron-icon icon="editor:format-align-right"></iron-icon>
</paper-item>
</hax-context-item-menu>
<paper-slider id="slider" pin min="25" step="25" max="100" value="{{iframeSize}}"></paper-slider>
<paper-tooltip
for="slider"
position="top"
offset="10">
Resize
</paper-tooltip>
<hax-context-item
icon="editor:insert-link"
label="Link"
event-name="iframe-link"></hax-context-item>
</app-toolbar>
</template>
<script>
Polymer({
is: 'hax-iframe-context',
listeners: {
'hax-context-item-selected': '_haxContextOperation',
},
properties: {
/**
* iframe size.
*/
iframeSize: {
type: Number,
value: 50,
observer: '_iframeSizeChanged',
},
/**
* Justify icon to reflect state.
*/
justifyIcon: {
type: String,
value: 'editor:format-align-left',
},
/**
* Selected value to match iframe direction currently.
*/
justifyValue: {
type: String,
value: 'hax-align-left',
notify: true,
},
},
/**
* Iframe size changed.
*/
_iframeSizeChanged: function(newValue, oldValue) {
if (typeof newValue !== typeof undefined) {
this.fire('hax-context-item-selected', {eventName: 'hax-size-change', value: newValue});
}
},
/**
* Respond to simple modifications.
*/
_haxContextOperation: function(e) {
let detail = e.detail;
// support a simple insert event to bubble up or everything else
switch(detail.eventName) {
case 'hax-align-left':
this.justifyIcon = detail.target.children[0].attributes[0].value;
break;
case 'hax-align-center':
this.justifyIcon = detail.target.children[0].attributes[0].value;
break;
case 'hax-align-right':
this.justifyIcon = detail.target.children[0].attributes[0].value;
break;
case 'close-menu':
this.$.justify.hideMenu();
break;
}
},
});
</script>
</dom-module>