2021-09-17 04:07:03 -04:00
|
|
|
<template>
|
|
|
|
<div class="mb-3">
|
2021-09-21 01:02:41 -04:00
|
|
|
<label for="pushover-user" class="form-label">{{ $t("User Key") }}<span style="color: red;"><sup>*</sup></span></label>
|
2022-10-13 07:28:02 -04:00
|
|
|
<HiddenInput id="pushover-user" v-model="$parent.notification.pushoveruserkey" :required="true" autocomplete="new-password"></HiddenInput>
|
2021-09-21 01:02:41 -04:00
|
|
|
<label for="pushover-app-token" class="form-label">{{ $t("Application Token") }}<span style="color: red;"><sup>*</sup></span></label>
|
2022-10-13 07:28:02 -04:00
|
|
|
<HiddenInput id="pushover-app-token" v-model="$parent.notification.pushoverapptoken" :required="true" autocomplete="new-password"></HiddenInput>
|
2021-09-21 01:02:41 -04:00
|
|
|
<label for="pushover-device" class="form-label">{{ $t("Device") }}</label>
|
2021-09-17 04:07:03 -04:00
|
|
|
<input id="pushover-device" v-model="$parent.notification.pushoverdevice" type="text" class="form-control">
|
2021-09-21 01:02:41 -04:00
|
|
|
<label for="pushover-device" class="form-label">{{ $t("Message Title") }}</label>
|
2021-09-17 04:07:03 -04:00
|
|
|
<input id="pushover-title" v-model="$parent.notification.pushovertitle" type="text" class="form-control">
|
2021-09-21 01:02:41 -04:00
|
|
|
<label for="pushover-priority" class="form-label">{{ $t("Priority") }}</label>
|
2021-09-17 04:07:03 -04:00
|
|
|
<select id="pushover-priority" v-model="$parent.notification.pushoverpriority" class="form-select">
|
|
|
|
<option>-2</option>
|
|
|
|
<option>-1</option>
|
|
|
|
<option>0</option>
|
|
|
|
<option>1</option>
|
|
|
|
<option>2</option>
|
|
|
|
</select>
|
2021-09-21 01:02:41 -04:00
|
|
|
<label for="pushover-sound" class="form-label">{{ $t("Notification Sound") }}</label>
|
2021-09-17 04:07:03 -04:00
|
|
|
<select id="pushover-sound" v-model="$parent.notification.pushoversounds" class="form-select">
|
2022-05-14 03:27:55 -04:00
|
|
|
<option value="pushover">{{ $t("pushoversounds pushover") }}</option>
|
|
|
|
<option value="bike">{{ $t("pushoversounds bike") }}</option>
|
|
|
|
<option value="bugle">{{ $t("pushoversounds bugle") }}</option>
|
|
|
|
<option value="cashregister">{{ $t("pushoversounds cashregister") }}</option>
|
|
|
|
<option value="classical">{{ $t("pushoversounds classical") }}</option>
|
|
|
|
<option value="cosmic">{{ $t("pushoversounds cosmic") }}</option>
|
|
|
|
<option value="falling">{{ $t("pushoversounds falling") }}</option>
|
|
|
|
<option value="gamelan">{{ $t("pushoversounds gamelan") }}</option>
|
|
|
|
<option value="incoming">{{ $t("pushoversounds incoming") }}</option>
|
|
|
|
<option value="intermission">{{ $t("pushoversounds intermission") }}</option>
|
|
|
|
<option value="magic">{{ $t("pushoversounds magic") }}</option>
|
|
|
|
<option value="mechanical">{{ $t("pushoversounds mechanical") }}</option>
|
|
|
|
<option value="pianobar">{{ $t("pushoversounds pianobar") }}</option>
|
|
|
|
<option value="siren">{{ $t("pushoversounds siren") }}</option>
|
|
|
|
<option value="spacealarm">{{ $t("pushoversounds spacealarm") }}</option>
|
|
|
|
<option value="tugboat">{{ $t("pushoversounds tugboat") }}</option>
|
|
|
|
<option value="alien">{{ $t("pushoversounds alien") }}</option>
|
|
|
|
<option value="climb">{{ $t("pushoversounds climb") }}</option>
|
|
|
|
<option value="persistent">{{ $t("pushoversounds persistent") }}</option>
|
|
|
|
<option value="echo">{{ $t("pushoversounds echo") }}</option>
|
|
|
|
<option value="updown">{{ $t("pushoversounds updown") }}</option>
|
|
|
|
<option value="vibrate">{{ $t("pushoversounds vibrate") }}</option>
|
|
|
|
<option value="none">{{ $t("pushoversounds none") }}</option>
|
2021-09-17 04:07:03 -04:00
|
|
|
</select>
|
2023-05-14 04:36:41 -04:00
|
|
|
<label for="pushover-ttl" class="form-label">{{ $t("pushoverMessageTtl") }}</label>
|
|
|
|
<input id="pushover-ttl" v-model="$parent.notification.pushoverttl" type="number" min="0" step="1" class="form-control">
|
2021-09-17 04:07:03 -04:00
|
|
|
<div class="form-text">
|
2021-09-21 01:02:41 -04:00
|
|
|
<span style="color: red;"><sup>*</sup></span>{{ $t("Required") }}
|
2021-09-30 07:22:17 -04:00
|
|
|
<i18n-t tag="p" keypath="More info on:" style="margin-top: 8px;">
|
2021-09-21 01:02:41 -04:00
|
|
|
<a href="https://pushover.net/api" target="_blank">https://pushover.net/api</a>
|
|
|
|
</i18n-t>
|
2021-09-17 04:07:03 -04:00
|
|
|
<p style="margin-top: 8px;">
|
2021-09-21 01:02:41 -04:00
|
|
|
{{ $t("pushoverDesc1") }}
|
2021-09-17 04:07:03 -04:00
|
|
|
</p>
|
|
|
|
<p style="margin-top: 8px;">
|
2021-09-21 01:02:41 -04:00
|
|
|
{{ $t("pushoverDesc2") }}
|
2021-09-17 04:07:03 -04:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import HiddenInput from "../HiddenInput.vue";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
HiddenInput,
|
|
|
|
},
|
2022-04-13 12:30:32 -04:00
|
|
|
};
|
2021-09-17 04:07:03 -04:00
|
|
|
</script>
|