This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathkeybindings-panel.js
249 lines (210 loc) · 7.7 KB
/
keybindings-panel.js
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/** @babel */
/** @jsx etch.dom */
import {CompositeDisposable, TextEditor} from 'atom'
import etch from 'etch'
import _ from 'underscore-plus'
import path from 'path'
export default class KeybindingsPanel {
constructor () {
etch.initialize(this)
this.disposables = new CompositeDisposable()
this.disposables.add(atom.commands.add(this.element, {
'core:move-up': () => { this.scrollUp() },
'core:move-down': () => { this.scrollDown() },
'core:page-up': () => { this.pageUp() },
'core:page-down': () => { this.pageDown() },
'core:move-to-top': () => { this.scrollToTop() },
'core:move-to-bottom': () => { this.scrollToBottom() }
}))
this.otherPlatformPattern = new RegExp(`\\.platform-(?!${_.escapeRegExp(process.platform)}\\b)`)
this.platformPattern = new RegExp(`\\.platform-${_.escapeRegExp(process.platform)}\\b`)
this.disposables.add(this.refs.searchEditor.onDidStopChanging(() => {
this.filterKeyBindings(this.keyBindings, this.refs.searchEditor.getText())
}))
this.disposables.add(atom.keymaps.onDidReloadKeymap(() => { this.loadKeyBindings() }))
this.disposables.add(atom.keymaps.onDidUnloadKeymap(() => { this.loadKeyBindings() }))
this.loadKeyBindings()
}
destroy () {
this.disposables.dispose()
return etch.destroy(this)
}
update () {}
render () {
return (
<div className='panels-item' tabIndex='-1'>
<section className='keybinding-panel section'>
<div className='section-heading icon icon-keyboard'>Keybindings</div>
<div className='text native-key-bindings' tabIndex='-1'>
<span className='icon icon-question' />
<span>You can override these keybindings by copying </span>
<span className='icon icon-clippy' />
<span>and pasting them into </span>
<a className='link' onclick={this.didClickOpenKeymapFile}>your keymap file</a>
</div>
<div className='editor-container'>
<TextEditor mini ref='searchEditor' placeholderText='Search keybindings' />
</div>
<table className='native-key-bindings table text' tabIndex='-1'>
<col className='keystroke' />
<col className='command' />
<col className='source' />
<col className='selector' />
<thead>
<tr>
<th className='keystroke'>Keystroke</th>
<th className='command'>Command</th>
<th className='source'>Source</th>
<th className='selector'>Selector</th>
</tr>
</thead>
<tbody ref='keybindingRows' />
</table>
</section>
</div>
)
}
loadKeyBindings () {
this.refs.keybindingRows.innerHTML = ''
this.keyBindings = _.sortBy(atom.keymaps.getKeyBindings(), 'keystrokes')
this.appendKeyBindings(this.keyBindings)
this.filterKeyBindings(this.keyBindings, this.refs.searchEditor.getText())
}
focus () {
this.refs.searchEditor.element.focus()
}
show () {
this.element.style.display = ''
}
filterKeyBindings (keyBindings, filterString) {
this.refs.keybindingRows.innerHTML = ''
for (let keyBinding of keyBindings) {
let {selector, keystrokes, command, source} = keyBinding
source = KeybindingsPanel.determineSource(source)
var searchString = `${selector}${keystrokes}${command}${source}`.toLowerCase()
if (!searchString) {
continue
}
const keywords = filterString.trim().toLowerCase().split(' ')
if (keywords.every(keyword => searchString.indexOf(keyword) !== -1)) {
this.appendKeyBinding(keyBinding)
}
}
}
appendKeyBindings (keyBindings) {
for (const keyBinding of keyBindings) {
this.appendKeyBinding(keyBinding)
}
}
appendKeyBinding (keyBinding) {
if (!this.showSelector(keyBinding.selector)) {
return
}
const element = this.elementForKeyBinding(keyBinding)
element.dataset.keyBinding = keyBinding
this.refs.keybindingRows.appendChild(element)
}
showSelector (selector) {
let segments
if (selector) {
segments = selector.split(',') || []
} else {
segments = []
}
return segments.some((s) => this.platformPattern.test(s) || !this.otherPlatformPattern.test(s))
}
elementForKeyBinding (keyBinding) {
let {selector, keystrokes, command, source} = keyBinding
source = KeybindingsPanel.determineSource(source)
const tr = document.createElement('tr')
if (source === 'User') {
tr.classList.add('is-user')
}
const keystrokeTd = document.createElement('td')
keystrokeTd.classList.add('keystroke')
const copyIcon = document.createElement('span')
copyIcon.classList.add('icon', 'icon-clippy', 'copy-icon')
copyIcon.onclick = () => {
let content
const keymapExtension = path.extname(atom.keymaps.getUserKeymapPath())
const escapeCSON = (input) => {
return JSON.stringify(input)
.slice(1, -1) // Remove wrapping double quotes
.replace(/\\"/g, '"') // Unescape double quotes
.replace(/'/g, '\\\'') // Escape single quotes
}
if (keymapExtension === '.cson') {
content = `'${escapeCSON(selector)}':\n '${escapeCSON(keystrokes)}': '${escapeCSON(command)}'`
} else {
content = `${JSON.stringify(selector)}: {\n ${JSON.stringify(keystrokes)}: ${JSON.stringify(command)}\n}`
}
return atom.clipboard.write(content)
}
keystrokeTd.appendChild(copyIcon)
const keystrokesSpan = document.createElement('span')
keystrokesSpan.textContent = keystrokes
keystrokeTd.appendChild(keystrokesSpan)
tr.appendChild(keystrokeTd)
const commandTd = document.createElement('td')
commandTd.classList.add('command')
commandTd.textContent = command
tr.appendChild(commandTd)
const sourceTd = document.createElement('td')
sourceTd.classList.add('source')
sourceTd.textContent = source
tr.appendChild(sourceTd)
const selectorTd = document.createElement('td')
selectorTd.classList.add('selector')
selectorTd.textContent = selector
tr.appendChild(selectorTd)
return tr
}
didClickOpenKeymapFile (e) {
e.preventDefault()
atom.commands.dispatch(atom.views.getView(atom.workspace), 'application:open-your-keymap')
}
scrollUp () {
this.element.scrollTop -= document.body.offsetHeight / 20
}
scrollDown () {
this.element.scrollTop += document.body.offsetHeight / 20
}
pageUp () {
this.element.scrollTop -= this.element.offsetHeight
}
pageDown () {
this.element.scrollTop += this.element.offsetHeight
}
scrollToTop () {
this.element.scrollTop = 0
}
scrollToBottom () {
this.element.scrollTop = this.element.scrollHeight
}
// Private: Returns a user friendly description of where a keybinding was
// loaded from.
//
// * filePath:
// The absolute path from which the keymap was loaded
//
// Returns one of:
// * `Core` indicates it comes from a bundled package.
// * `User` indicates that it was defined by a user.
// * `<package-name>` the package which defined it.
// * `Unknown` if an invalid path was passed in.
static determineSource (filePath) {
if (!filePath) {
return 'Unknown'
}
if (filePath.indexOf(path.join(atom.getLoadSettings().resourcePath, 'keymaps')) === 0) {
return 'Core'
} else if (filePath === atom.keymaps.getUserKeymapPath()) {
return 'User'
} else {
const pathParts = filePath.split(path.sep)
const packageNameIndex = pathParts.length - 3
const packageName = pathParts[packageNameIndex] != null ? pathParts[packageNameIndex] : ''
return _.undasherize(_.uncamelcase(packageName))
}
}
}