mirror of
https://github.com/unraid/api.git
synced 2026-05-03 21:50:20 -05:00
345e83bfb0
<!-- 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>
200 lines
5.4 KiB
Vue
200 lines
5.4 KiB
Vue
<script setup lang="ts">
|
|
import { computed, ref, watch } from 'vue';
|
|
import { useQuery } from '@vue/apollo-composable';
|
|
|
|
import {
|
|
Input,
|
|
Label,
|
|
Select,
|
|
Switch,
|
|
} from '@unraid/ui';
|
|
|
|
import { GET_LOG_FILES } from './log.query';
|
|
import SingleLogViewer from './SingleLogViewer.vue';
|
|
|
|
// Types
|
|
interface LogFile {
|
|
path: string;
|
|
name: string;
|
|
size: number;
|
|
}
|
|
|
|
// Component state
|
|
const selectedLogFile = ref<string>('');
|
|
const lineCount = ref<number>(100);
|
|
const autoScroll = ref<boolean>(true);
|
|
const highlightLanguage = ref<string>('plaintext');
|
|
|
|
// Available highlight languages
|
|
const highlightLanguages = [
|
|
{ value: 'plaintext', label: 'Plain Text' },
|
|
{ value: 'bash', label: 'Bash/Shell' },
|
|
{ value: 'ini', label: 'INI/Config' },
|
|
{ value: 'xml', label: 'XML/HTML' },
|
|
{ value: 'json', label: 'JSON' },
|
|
{ value: 'yaml', label: 'YAML' },
|
|
{ value: 'nginx', label: 'Nginx' },
|
|
{ value: 'apache', label: 'Apache' },
|
|
{ value: 'javascript', label: 'JavaScript' },
|
|
{ value: 'php', label: 'PHP' },
|
|
];
|
|
|
|
// Fetch log files
|
|
const {
|
|
result: logFilesResult,
|
|
loading: loadingLogFiles,
|
|
error: logFilesError,
|
|
} = useQuery(GET_LOG_FILES);
|
|
|
|
const logFiles = computed(() => {
|
|
return logFilesResult.value?.logFiles || [];
|
|
});
|
|
|
|
// Transform log files for the Select component
|
|
const logFileOptions = computed(() => {
|
|
return logFiles.value.map((file: LogFile) => ({
|
|
value: file.path,
|
|
label: `${file.name} (${formatFileSize(file.size)})`
|
|
}));
|
|
});
|
|
|
|
// Format file size for display
|
|
const formatFileSize = (bytes: number): string => {
|
|
if (bytes === 0) return '0 Bytes';
|
|
|
|
const k = 1024;
|
|
const sizes = ['Bytes', 'KB', 'MB', 'GB'];
|
|
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
|
|
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
|
|
};
|
|
|
|
// Auto-detect language based on file extension
|
|
const autoDetectLanguage = (filePath: string): string => {
|
|
const fileName = filePath.split('/').pop() || '';
|
|
|
|
if (fileName.endsWith('.sh') || fileName.endsWith('.bash') || fileName.includes('syslog')) {
|
|
return 'bash';
|
|
} else if (fileName.endsWith('.conf') || fileName.endsWith('.ini') || fileName.endsWith('.cfg')) {
|
|
return 'ini';
|
|
} else if (fileName.endsWith('.xml') || fileName.endsWith('.html')) {
|
|
return 'xml';
|
|
} else if (fileName.endsWith('.json')) {
|
|
return 'json';
|
|
} else if (fileName.endsWith('.yml') || fileName.endsWith('.yaml')) {
|
|
return 'yaml';
|
|
} else if (fileName.includes('nginx')) {
|
|
return 'nginx';
|
|
} else if (fileName.includes('apache') || fileName.includes('httpd')) {
|
|
return 'apache';
|
|
} else if (fileName.endsWith('.js')) {
|
|
return 'javascript';
|
|
} else if (fileName.endsWith('.php')) {
|
|
return 'php';
|
|
}
|
|
|
|
return 'plaintext';
|
|
};
|
|
|
|
// Watch for file selection changes to auto-detect language
|
|
watch(selectedLogFile, (newValue) => {
|
|
if (newValue) {
|
|
highlightLanguage.value = autoDetectLanguage(newValue);
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="flex flex-col h-[500px] resize-y bg-background text-foreground rounded-lg border border-border overflow-hidden"
|
|
>
|
|
<div class="p-4 border-b border-border">
|
|
<h2 class="text-lg font-semibold mb-4">Log Viewer</h2>
|
|
|
|
<div class="flex flex-wrap gap-4 items-end">
|
|
<div class="flex-1 min-w-[200px]">
|
|
<Label for="log-file-select">Log File</Label>
|
|
<Select
|
|
v-model="selectedLogFile"
|
|
:items="logFileOptions"
|
|
placeholder="Select a log file"
|
|
class="w-full"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<Label for="line-count">Lines</Label>
|
|
<Input
|
|
id="line-count"
|
|
v-model.number="lineCount"
|
|
type="number"
|
|
min="10"
|
|
max="1000"
|
|
class="w-24"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<Label for="highlight-language">Syntax</Label>
|
|
<Select
|
|
v-model="highlightLanguage"
|
|
:items="highlightLanguages"
|
|
placeholder="Select language"
|
|
class="w-full"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-2">
|
|
<Label for="auto-scroll">Auto-scroll</Label>
|
|
<Switch id="auto-scroll" v-model:checked="autoScroll" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex-1 overflow-hidden relative">
|
|
<div
|
|
v-if="loadingLogFiles"
|
|
class="flex items-center justify-center h-full p-4 text-center text-muted-foreground"
|
|
>
|
|
Loading log files...
|
|
</div>
|
|
|
|
<div
|
|
v-else-if="logFilesError"
|
|
class="flex items-center justify-center h-full p-4 text-center text-destructive"
|
|
>
|
|
Error loading log files: {{ logFilesError.message }}
|
|
</div>
|
|
|
|
<div
|
|
v-else-if="logFiles.length === 0"
|
|
class="flex items-center justify-center h-full p-4 text-center text-muted-foreground"
|
|
>
|
|
No log files found.
|
|
</div>
|
|
|
|
<div
|
|
v-else-if="!selectedLogFile"
|
|
class="flex items-center justify-center h-full p-4 text-center text-muted-foreground"
|
|
>
|
|
Please select a log file to view.
|
|
</div>
|
|
|
|
<SingleLogViewer
|
|
v-else
|
|
:log-file-path="selectedLogFile"
|
|
:line-count="lineCount"
|
|
:auto-scroll="autoScroll"
|
|
:highlight-language="highlightLanguage"
|
|
class="h-full"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="postcss">
|
|
/* Import unraid-ui globals first */
|
|
@import '@unraid/ui/styles';
|
|
@import '~/assets/main.css';
|
|
</style>
|