blob: ee19e8ea848d05b6f6d0444a40c8fa2dd3c96f61 (
plain)
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
|
<template>
<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>
<p v-if="otherRepoOrBranchAvailable">
If you have another branch or repository the the required metadata files
you may switch to them instead.
</p>
<p>
<button
class="dismiss"
@click="$emit('dismiss')"
v-text="dismissText"
/>
</p>
</div>
</modal>
</template>
<script>
import Modal from '../modal.vue'
export default {
name: 'InvalidRepo',
emits: ['dismiss'],
components: { Modal },
props: {
dismissText: {
type: String,
default: 'Ok'
},
otherRepoOrBranchAvailable: {
type: Boolean,
default: false
}
}
}
</script>
<style scoped>
.dialog {
background-color: white;
padding: 20px 40px;
margin: 40px;
max-width: 500px;
}
.dismiss {
display: block;
margin: 0 auto;
}
</style>
|