Files
api/web/components/WanIpCheck.ce.vue
Michael Datelle 741e8532ab refactor: unraid-ui-web-migration (#1106)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **New Features**
- Introduced enhanced stepper components for smoother multi-step
interactions.
- Added new loading indicators and improved the loading experience with
customizable variants.
  
- **UI Improvements**
- Refreshed the global color palette and updated styling across buttons,
badges, and loading indicators for a more modern, consistent experience.
- Improved the organization and readability of templates and styles
across various components.

- **Code & Dependency Updates**
- Updated key dependencies and revised the theme and configuration
settings to improve performance and maintainability.
- Introduced new environment variables for better configuration
management.

- **Legacy Cleanup**
- Removed deprecated components and streamlined registrations to
simplify the codebase without affecting end-user functionality.
- Eliminated unused utility functions and legacy code to enhance overall
code quality.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: mdatelle <mike@datelle.net>
Co-authored-by: Eli Bosley <ekbosley@gmail.com>
2025-02-12 18:00:06 -05:00

85 lines
2.4 KiB
Vue

<script lang="ts" setup>
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('DNS issue, unable to resolve wanip4.unraid.net');
}
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('Unable to fetch client WAN IPv4');
}
}
});
</script>
<template>
<span v-if="loading" class="italic">{{ t('Checking WAN IPs') }}</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('Remark: your WAN IPv4 is {0}', [wanIp])
}}</span>
<span v-else class="inline-block w-1/2 whitespace-normal">
{{
t("Remark: Unraid's WAN IPv4 {0} does not match your client's WAN IPv4 {1}.", [
phpWanIp,
wanIp,
])
}}
{{
t('This may indicate a complex network that will not work with this Remote Access solution.')
}}
{{ t('Ignore this message if you are currently connected via Remote Access or VPN.') }}
</span>
</template>
</template>
</template>
<style lang="postcss">
/* Import unraid-ui globals first */
@import '@unraid/ui/styles';
@import '../assets/main.css';
</style>