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
|
<script>
import keyBy from 'lodash/keyBy'
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'
import { healthcheck, loadBehaviours } from '../api'
import { loadLayout } from '../layout.js'
import { loadKeymap } from '../keymap.js'
import { loadKeycodes } from '../keycodes'
export default {
components: {
keymap: Keymap,
Loader,
Modal
},
provide() {
return {
keycodes: this.keycodes,
behaviours: this.behaviours,
indexedKeycodes: this.indexedKeycodes,
indexedBehaviours: this.indexedBehaviours
}
},
data() {
return {
config,
keycodes: [],
indexedKeycodes: {},
behaviours: [],
indexedBehaviours: {},
tooManyRepos: false,
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()) {
return github.fetchLayoutAndKeymap()
} 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.keymap, keymap)
},
handleGithubAuthorize() {
github.beginLoginFlow()
},
handleCommitChanges() {
github.commitChanges(this.layout, this.keymap)
},
handleCompile() {
fetch('/keymap', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(this.keymap)
})
},
getInstallationUrl() {
console.log(github.installation, github.repositories, github)
return `https://github.com/settings/installations/${github.installation.id}`
},
async doReadyCheck() {
await healthcheck()
await this.loadData()
}
}
}
</script>
<template>
<loader :load="doReadyCheck">
<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>
<template v-else>
<keymap :layout="layout" :keymap="keymap" @update="handleUpdateKeymap" />
<div id="actions">
<button
v-if="config.enableLocal"
v-text="`Save Local`"
id="compile"
@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"
title="Commit keymap changes to GitHub repository"
/>
</div>
</template>
</loader>
</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;
}
.dialog {
background-color: white;
padding: 40px;
margin: 40px;
max-width: 500px;
}
</style>
|