forked from LRNWebComponents/hax-body
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhax-text-context.html
179 lines (175 loc) · 5.77 KB
/
hax-text-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
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
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../md-extra-icons/md-extra-icons.html">
<link rel="import" href="../app-layout/app-toolbar/app-toolbar.html">
<link rel="import" href="../paper-item/paper-item.html">
<link rel="import" href="../materializecss-styles/colors.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">
<link rel="import" href="hax-context-item-textop.html">
<link rel="import" href="hax-toolbar.html">
<link rel="import" href="hax-toolbar-item.html">
<!--
`hax-text-context`
A context menu that provides common text based authoring options.
@demo demo/index.html
@microcopy - the mental model for this element
- context menu - this is a menu of text based buttons and events for use in a larger solution.
-->
<dom-module id="hax-text-context">
<template>
<style include="materializecss-styles-colors">
:host {
display: block;
pointer-events: none;
}
paper-item:hover {
background-color: #d3d3d3;
cursor: pointer;
}
</style>
<hax-toolbar>
<hax-context-item-menu
slot="primary"
selected-value="{{selectedValue}}"
id="formatsize"
icon="text-format"
label="Format"
event-name="text-tag">
<paper-item value="p">Normal text</paper-item>
<paper-item value="h2">Title</paper-item>
<paper-item value="h3">Content heading</paper-item>
<paper-item value="h4">Subheading</paper-item>
<paper-item value="h5">Deeper subheading</paper-item>
<paper-item value="blockquote">Quote</paper-item>
<paper-item value="code">Code</paper-item>
</hax-context-item-menu>
<hax-context-item-menu
slot="primary"
selected-value="{{justifyValue}}"
id="justify"
icon="[[justifyIcon]]"
label="Alignment">
<paper-item value="" hidden></paper-item>
<paper-item value="text-align-left">
<iron-icon icon="editor:format-align-left"></iron-icon>
</paper-item>
<paper-item value="text-align-right">
<iron-icon icon="editor:format-align-right"></iron-icon>
</paper-item>
</hax-context-item-menu>
<hax-context-item-textop
slot="primary"
icon="editor:format-list-numbered"
label="Numbered list"
event-name="text-list-numbered"
hidden$="[[!polyfillSafe]]"></hax-context-item-textop>
<hax-context-item-textop
slot="primary"
icon="editor:format-list-bulleted"
label="Bulleted list"
event-name="text-list-bulleted"
hidden$="[[!polyfillSafe]]"></hax-context-item-textop>
<hax-context-item-textop
slot="primary"
icon="editor:format-indent-increase"
label="Indent"
event-name="text-indent"
hidden$="[[!polyfillSafe]]"></hax-context-item-textop>
<hax-context-item-textop
slot="primary"
icon="editor:format-indent-decrease"
label="Outdent"
event-name="text-outdent"
hidden$="[[!polyfillSafe]]"></hax-context-item-textop>
</hax-toolbar>
</template>
<script>
Polymer({
is: 'hax-text-context',
listeners: {
'hax-context-item-selected': '_haxContextOperation',
},
properties: {
/**
* Justify icon to reflect state.
*/
justifyIcon: {
type: String,
value: 'editor:format-align-left',
},
/**
* Polyfill safe; this helps remove options from polyfilled platforms
* as far as text manipulation operations.
*/
polyfillSafe: {
type: Boolean,
},
/**
* Selected value to match format of the tag currently.
*/
selectedValue: {
type: String,
value: 'p',
notify: true,
},
/**
* Selected value to match text direction currently.
*/
justifyValue: {
type: String,
value: 'text-align-left',
notify: true,
},
},
/**
* Ready, figure out polyfill
*/
ready: function() {
this.polyfillSafe = Polymer.HaxStore.instance.computePolyfillSafe();
},
/**
* 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) {
// wow these are way too easy
case 'text-align-left':
this.justifyIcon = detail.target.children[0].attributes[0].value;
break;
case 'text-align-center':
this.justifyIcon = detail.target.children[0].attributes[0].value;
break;
case 'text-align-right':
this.justifyIcon = detail.target.children[0].attributes[0].value;
break;
case 'text-justify-full':
this.justifyIcon = detail.target.children[0].attributes[0].value;
break;
case 'close-menu':
this.$.justify.$.menu.hideMenu();
this.$.formatsize.$.menu.hideMenu();
break;
/**
* Our bad actors when it comes to polyfill'ed shadowDOM.
* Naughty, naughty shadyDOM.
*/
case 'text-indent':
document.execCommand('indent');
break;
case 'text-outdent':
document.execCommand('outdent');
break;
case 'text-list-numbered':
document.execCommand('insertOrderedList');
break;
case 'text-list-bulleted':
document.execCommand('insertUnorderedList');
break;
}
},
});
</script>
</dom-module>