Conversation
Wraps main page content in `motion.div` to introduce smooth fade-in and subtle scale or vertical slide animations on page load. This enhances the user experience by providing visual feedback and a more fluid transition between different sections of the application.
This commit introduces a new `LogsPage` component and its associated presenter hook `useLogsPresenter`. The `LogsPage` provides a comprehensive interface for viewing and managing application logs, including: - **Server Logs**: Displays real-time server logs with filtering, search, and auto-refresh capabilities. - **Error Logs**: Lists error log files, allowing users to download individual error logs. - **Log Management**: Functionality to clear all logs and download server logs. - **Filtering**: Users can filter server logs by search query and hide management-related entries. - **Display Options**: Toggle between raw log view and a parsed, structured view for server logs. - **Auto-refresh**: Automatically fetches new server logs at a set interval. - **Error Log Viewer**: A side sheet to display the content of selected error log files. The `useLogsPresenter` hook encapsulates the logic for fetching, parsing, filtering, and managing log data, interacting with the `logsApi` service. This feature significantly improves the observability and debugging experience for the application. chore(gitignore): remove 'logs' entry as it is covered by '*.log'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat(pages): add page entry animations for improved UX
feat(logs): introduce a dedicated logs page for server and error logs