aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/components/messages/invalid-repo.vue
blob: eee706f183225dcd975c4954639dda67047672de (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
59
<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;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
}

.dismiss {
  display: block;
  margin: 0 auto;
}
</style>