summaryrefslogtreecommitdiff
path: root/Hutch/Views/Pastes/PasteListView.swift
Commit message (Collapse)AuthorAgeFilesLines
* fix: more sonarqube quality fixesv3.1.5Christian Cleberg2026-04-131-4/+4
|
* fix: sonarqube code smell fixesv3.1.4Christian Cleberg2026-04-131-8/+8
|
* feat(theme): AMOLED true-black rows via themedRow()Christian Cleberg2026-04-131-0/+8
| | | | | | | | | | Apply listRowBackground(Color.black) per row in AMOLED mode using ThemedRowStyle and themedRow() across Lists and Forms. Use themedList() for scroll/grouped backgrounds. Treat segmented and clear list rows with isAMOLED-aware listRowBackground where Color.clear was required. Removes reliance on UIKit appearance for list cells on iOS 16+. Implements: https://todo.sr.ht/~ccleberg/hutch/24
* perf: cache filtered collections and add equatable row viewsChristian Cleberg2026-04-131-1/+2
| | | | | | | | | | | | | | | | Convert filteredJobs, filteredPastes, and filteredTickets from computed properties to stored properties updated via didSet on their inputs. Each update function guards with an equality check before assigning, so @Observable skips the notification when the filtered result hasn't changed — preventing list re-renders on auto-refresh when no visible data has actually changed. Add Equatable conformance to BuildRowView, PasteRowView, TicketRowView, and SelectableTicketRow, and apply .equatable() at each ForEach call site. When a list does re-render, SwiftUI now skips body evaluation for rows whose model value is identical to the previous pass. Implements: https://todo.sr.ht/~ccleberg/hutch/57
* feat: add multi-account supportChristian Cleberg2026-04-121-1/+1
| | | | | | Implements: https://todo.sr.ht/~ccleberg/hutch/49 Implements: https://todo.sr.ht/~ccleberg/hutch/50 Implements: https://todo.sr.ht/~ccleberg/hutch/51
* feat: add theme and high-density display modesChristian Cleberg2026-04-121-0/+1
| | | | | Refs: https://todo.sr.ht/~ccleberg/hutch/24 Implements: https://todo.sr.ht/~ccleberg/hutch/25
* feat: swipe actions on tickets, pastes, builds, and home dashboardChristian Cleberg2026-03-221-1/+76
|
* feat: add search to builds, trackers, tickets, pastes, mailing lists, and inboxChristian Cleberg2026-03-221-0/+7
|
* feat: implement support for projects, lists, and pastesChristian Cleberg2026-03-191-0/+280