mirror of
https://github.com/unraid/api.git
synced 2026-01-05 16:09:49 -06:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added new modal dialogs and UI components, including activation steps, OS update feedback, and expanded notification management. * Introduced a plugin to configure internationalization, state management, and Apollo client support in web components. * Added a new Log Viewer page with a streamlined interface for viewing logs. * **Improvements** * Centralized Pinia state management by consolidating all stores to use a shared global Pinia instance. * Simplified component templates by removing redundant internationalization host wrappers. * Enhanced ESLint configuration with stricter rules and global variable declarations. * Refined custom element build process to prevent jQuery conflicts and optimize minification. * Updated component imports and templates for consistent structure and maintainability. * Streamlined log viewer dropdowns using simplified select components with improved formatting. * Improved notification sidebar with filtering by importance and modular components. * Replaced legacy notification popups with new UI components and added automatic root session creation for localhost requests. * Updated OS version display and user profile UI with refined styling and component usage. * **Bug Fixes** * Fixed component tag capitalization and improved type annotations across components. * **Chores** * Updated development dependencies including ESLint plugins and build tools. * Removed deprecated log viewer patch class and cleaned up related test fixtures. * Removed unused imports and simplified Apollo client setup. * Cleaned up test mocks and removed obsolete i18n host component tests. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --- - To see the specific tasks where the Asana app for GitHub is being used, see below: - https://app.asana.com/0/0/1210730229632804 --------- Co-authored-by: Pujit Mehrotra <pujit@lime-technology.com> Co-authored-by: Zack Spear <zackspear@users.noreply.github.com>
88 lines
2.5 KiB
Vue
88 lines
2.5 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('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>
|
|
<div>
|
|
<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>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="postcss">
|
|
/* Import unraid-ui globals first */
|
|
@import '@unraid/ui/styles';
|
|
@import '~/assets/main.css';
|
|
</style>
|