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
|
<script>
import Initialize from './initialize.vue'
import Keymap from './keymap.vue'
import Loader from './loader.vue'
import Modal from './modal.vue'
import * as config from '../config'
import * as github from '../github'
export default {
components: {
keymap: Keymap,
Initialize,
Loader,
Modal
},
provide() {
return {
keycodes: this.keycodes,
behaviours: this.behaviours,
indexedKeycodes: this.indexedKeycodes,
indexedBehaviours: this.indexedBehaviours
}
},
data() {
return {
config,
keycodes: [],
editingKeymap: {},
indexedKeycodes: {},
behaviours: [],
indexedBehaviours: {},
tooManyRepos: false,
loadKeyboardError: null,
keymap: {},
layout: [],
layers: [],
terminalOpen: false,
socket: null
}
},
computed: {
githubAuthorized() {
return !!github.isGitHubAuthorized()
}
},
methods: {
async loadData() {
await github.init()
if (config.enableGitHub && github.isGitHubAuthorized() && github.repositories.length > 1) {
this.tooManyRepos = true
return
}
const loadKeyboardData = async () => {
if (config.enableGitHub && github.isGitHubAuthorized()) {
const response = await github.fetchLayoutAndKeymap()
if (response.error) {
this.loadKeyboardError = response.error
return { layout: [], keymap: { layers: [] } }
}
return response
} else if (config.enableLocal) {
const [layout, keymap] = await Promise.all([
loadLayout(),
loadKeymap()
])
return { layout, keymap }
} else {
return { layout: [], keymap: { layers: [] } }
}
}
const [
keycodes,
behaviours,
{ layout, keymap }
] = await Promise.all([
loadKeycodes(),
loadBehaviours(),
loadKeyboardData()
])
this.keycodes.splice(0, this.keycodes.length, ...keycodes)
this.behaviours.splice(0, this.behaviours.length, ...behaviours)
Object.assign(this.indexedKeycodes, keyBy(this.keycodes, 'code'))
Object.assign(this.indexedBehaviours, keyBy(this.behaviours, 'code'))
this.layout.splice(0, this.layout.length, ...layout.map(key => (
{ ...key, u: key.u || key.w || 1, h: key.h || 1 }
)))
const layerNames = keymap.layer_names || keymap.layers.map((_, i) => `Layer ${i}`)
Object.assign(this.layers, keymap.layers)
Object.assign(this.keymap, keymap, {
layer_names: layerNames
})
},
handleUpdateKeymap(keymap) {
Object.assign(this.editingKeymap, keymap)
},
handleGithubAuthorize() {
github.beginLoginFlow()
},
handleCommitChanges() {
github.commitChanges(this.layout, this.editingKeymap)
},
handleCompile() {
fetch('/keymap', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(this.editingKeymap)
})
},
getInstallationUrl() {
return `https://github.com/settings/installations/${github.installation.id}`
},
async doReadyCheck() {
await healthcheck()
await this.loadData()
}
}
}
</script>
<template>
<initialize v-slot="{ keymap, layout }">
<div v-if="tooManyRepos">
<modal>
<div class="dialog">
<h2>Hold up a second!</h2>
<p>The Keymap Editor app has been installed for more than one GitHub repository.</p>
<p>
I'm still working on things, including the ability to pick a specific
repo, but in the meantime you should go back to your <a :href="getInstallationUrl()">app configuration</a>
and select a single repository containing your keyboard's zmk-config.
</p>
</div>
</modal>
</div>
<div v-else-if="loadKeyboardError === 'InvalidRepoError'">
<modal>
<div class="dialog">
<h2>Hold up a second!</h2>
<p>The selected repository does not contain <code>info.json</code> or <code>keymap.json</code>.</p>
<p>
This app depends on some additional metadata to render the keymap.
For an example repository ready to use now or metadata you can apply
to your own keyboard repo, have a look at <a href="https://github.com/nickcoutsos/zmk-config-corne-demo/">zmk-config-corne-demo</a>.
</p>
</div>
</modal>
</div>
<template v-else>
<keymap
:layout="layout"
:keymap="editingKeymap.keyboard ? editingKeymap : keymap"
@update="handleUpdateKeymap"
/>
<div id="actions">
<button
v-if="config.enableLocal"
v-text="`Save Local`"
id="compile"
:disabled="!this.editingKeymap.keyboard"
@click="handleCompile"
/>
<button
v-if="config.enableGitHub && !githubAuthorized"
v-text="`Authorize GitHub`"
@click="handleGithubAuthorize"
title="Install as a GitHub app to edit a zmk-config repository."
/>
<button
v-if="config.enableGitHub && githubAuthorized"
v-text="`Commit Changes`"
@click="handleCommitChanges"
:disabled="!this.editingKeymap.keyboard"
title="Commit keymap changes to GitHub repository"
/>
</div>
</template>
<a class="github-link" href="https://github.com/nickcoutsos/keymap-editor">
<i class="fab fa-github" />/nickcoutsos/keymap-editor
</a>
</initialize>
</template>
<style scoped>
button {
cursor: pointer;
background-color: var(--hover-selection);
color: white;
font-size: 16px;
border: none;
border-radius: 5px;
padding: 5px;
margin: 2px;
}
button[disabled] {
background-color: #ccc;
cursor: not-allowed;
}
.dialog {
background-color: white;
padding: 40px;
margin: 40px;
max-width: 500px;
}
.github-link {
display: inline-block;
position: absolute;
z-index: 100;
bottom: 5px;
left: 5px;
font-size: 110%;
font-style: italic;
background-color: white;
border-radius: 20px;
padding: 5px 10px;
text-decoration: none;
color: royalblue;
}
</style>
|