-
Notifications
You must be signed in to change notification settings - Fork 2
UFAL/Preview - fixed loading files #824
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…ponsiveness across browsers
… administrator when it took so long
|
Caution Review failedThe pull request is closed. WalkthroughThe changes update search functionality in the HandleTable component by replacing one-way binding with two-way binding for the search input, removing direct DOM references, and enhancing observable management for pagination and sorting. In the preview-related components, conditional rendering is refined to show a loading spinner when data is missing, and a configuration service is integrated to retrieve a contact email. Additionally, tests are updated with new translation modules and mocks, and new translation entries have been added in both Czech and English. Changes
Sequence Diagram(s)sequenceDiagram
participant U as User
participant HT as HandleTableComponent
participant Obs as Search Observable Pipeline
participant API as Backend Service
U->>HT: Enter search query (via ngModel)
HT->>Obs: Update searchTerm BehaviorSubject
Obs->>API: Request handles using current search term, pagination, and sort options
API-->>Obs: Return filtered handles data
Obs-->>HT: Emit updated handle list
sequenceDiagram
participant C as PreviewSection/FileDescription Component
participant CS as ConfigurationDataService
participant T as Template
C->>CS: ngOnInit() → findByPropertyName('lr.help.mail')
CS-->>C: Return contact email data
C->>T: Bind emailToContact for mailto link display
Poem
Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 ESLint
yarn install v1.22.22 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (9)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Problem description
Summary by CodeRabbit
New Features
Tests