Files
api/web/src/components/WanIpCheck.standalone.vue
T
Eli Bosley 31c41027fc feat: translations now use crowdin (translate.unraid.net) (#1739)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **New Features**
- App-wide internationalization: dynamic locale detection/loading, many
new locale bundles, and CLI helpers to extract/sort translation keys.

- **Accessibility**
  - Brand button supports keyboard activation (Enter/Space).

- **Documentation**
  - Internationalization guidance added to API and Web READMEs.

- **Refactor**
- UI updated to use centralized i18n keys and a unified locale loading
approach.

- **Tests**
  - Test utilities updated to support i18n and localized assertions.

- **Chores**
- Crowdin config and i18n scripts added; runtime locale exposed for
selection.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2025-10-13 16:56:08 -04:00

75 lines
2.2 KiB
Vue

<script lang="ts" setup>
import { computed, onBeforeMount, ref, watchEffect } from 'vue';
import { useI18n } from 'vue-i18n';
import { storeToRefs } from 'pinia';
import { request } from '~/composables/services/request';
import { useServerStore } from '~/store/server';
export interface Props {
phpWanIp?: string;
}
const props = defineProps<Props>();
const { t } = useI18n();
const { isRemoteAccess } = storeToRefs(useServerStore());
const wanIp = ref<string | null>();
const fetchError = ref<string>('');
const loading = ref(false);
const computedError = computed((): string => {
if (!props.phpWanIp) {
return t('wanIpCheck.dnsIssueUnableToResolveWanip4');
}
if (fetchError.value) {
return fetchError.value;
}
return '';
});
onBeforeMount(() => {
wanIp.value = sessionStorage.getItem('unraidConnect_wanIp');
});
watchEffect(async () => {
// if we don't have a client WAN IP AND we have the server WAN IP then we fetch
if (!wanIp.value && props.phpWanIp) {
loading.value = true;
const response = await request.url('https://wanip4.unraid.net/').get().text();
if (response) {
loading.value = false;
wanIp.value = response as string; // response returns text nothing to traverse
// save in sessionStorage so we only make this request once per webGUI session
sessionStorage.setItem('unraidConnect_wanIp', wanIp.value);
} else {
loading.value = false;
fetchError.value = t('wanIpCheck.unableToFetchClientWanIpv4');
}
}
});
</script>
<template>
<div>
<span v-if="loading" class="italic">{{ t('wanIpCheck.checkingWanIps') }}</span>
<template v-else>
<span v-if="computedError" class="text-unraid-red font-semibold">{{ computedError }}</span>
<template v-else>
<span v-if="isRemoteAccess || (phpWanIp === wanIp && !isRemoteAccess)">{{
t('wanIpCheck.remarkYourWanIpv4Is', [wanIp])
}}</span>
<span v-else class="inline-block w-1/2 whitespace-normal">
{{ t('wanIpCheck.remarkUnraidSWanIpv4Does', [phpWanIp, wanIp]) }}
{{ t('wanIpCheck.thisMayIndicateAComplexNetwork') }}
{{ t('wanIpCheck.ignoreThisMessageIfYouAre') }}
</span>
</template>
</template>
</div>
</template>