mirror of
https://github.com/unraid/api.git
synced 2026-01-06 08:39:54 -06:00
Co-authored-by: Eli Bosley <ekbosley@gmail.com> Co-authored-by: Pujit Mehrotra <pujit@lime-technology.com> Co-authored-by: mdatelle <mike@datelle.net> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Zack Spear <zackspear@users.noreply.github.com>
78 lines
2.7 KiB
Vue
78 lines
2.7 KiB
Vue
<script setup lang="ts">
|
|
import { ArrowDownTrayIcon, ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid';
|
|
import { BrandButton } from '@unraid/ui';
|
|
import { CONNECT_FORUMS, CONTACT, DISCORD, WEBGUI_GRAPHQL } from '~/helpers/urls';
|
|
import { useServerStore } from '~/store/server';
|
|
import { storeToRefs } from 'pinia';
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
const { t } = useI18n();
|
|
|
|
const { apiKey } = storeToRefs(useServerStore());
|
|
|
|
const downloadUrl = computed(() => new URL(`/graphql/api/logs?apiKey=${apiKey.value}`, WEBGUI_GRAPHQL));
|
|
</script>
|
|
|
|
<template>
|
|
<div class="whitespace-normal flex flex-col gap-y-16px max-w-3xl">
|
|
<span>
|
|
{{ t('The primary method of support for Unraid Connect is through our forums and Discord.') }}
|
|
{{
|
|
t(
|
|
'If you are asked to supply logs, please open a support request on our Contact Page and reply to the email message you receive with your logs attached.'
|
|
)
|
|
}}
|
|
{{ t('The logs may contain sensitive information so do not post them publicly.') }}
|
|
</span>
|
|
<span class="flex flex-col gap-y-16px">
|
|
<div class="flex">
|
|
<BrandButton
|
|
class="grow-0 shrink-0"
|
|
download
|
|
:external="true"
|
|
:href="downloadUrl.toString()"
|
|
:icon="ArrowDownTrayIcon"
|
|
size="12px"
|
|
:text="t('Download unraid-api Logs')"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-row items-baseline gap-8px">
|
|
<a
|
|
:href="CONNECT_FORUMS.toString()"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="text-[#486dba] hover:text-[#3b5ea9] focus:text-[#3b5ea9] hover:underline focus:underline inline-flex flex-row items-center justify-start gap-8px"
|
|
>
|
|
{{ t('Unraid Connect Forums') }}
|
|
<ArrowTopRightOnSquareIcon class="w-16px" />
|
|
</a>
|
|
<a
|
|
:href="DISCORD.toString()"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="text-[#486dba] hover:text-[#3b5ea9] focus:text-[#3b5ea9] hover:underline focus:underline inline-flex flex-row items-center justify-start gap-8px"
|
|
>
|
|
{{ t('Unraid Discord') }}
|
|
<ArrowTopRightOnSquareIcon class="w-16px" />
|
|
</a>
|
|
<a
|
|
:href="CONTACT.toString()"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="text-[#486dba] hover:text-[#3b5ea9] focus:text-[#3b5ea9] hover:underline focus:underline inline-flex flex-row items-center justify-start gap-8px"
|
|
>
|
|
{{ t('Unraid Contact Page') }}
|
|
<ArrowTopRightOnSquareIcon class="w-16px" />
|
|
</a>
|
|
</div>
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="postcss">
|
|
/* Import unraid-ui globals first */
|
|
@import '@unraid/ui/styles';
|
|
@import '../assets/main.css';
|
|
</style>
|