chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged: - Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances) - country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk after the per-subpath dynamic-import approach silently failed in webpack) - Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index, redirects (ocr to ai, reports to dashboard, invitations to users), docs/admin-ia-proposal.md - Per-template email tester (registry + endpoint + UI on Email admin page) - Cancel-document mode picker (delete-from-Documenso vs keep-for-audit) - Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers - Customize-widgets per-region sortables at xl+ (charts/rails/feed); single flat sortable below xl when the layout stacks; per-viewport saved orders - Audit doc updates capturing each shipped item - Lint fixes: react-compiler immutability in DonutChart (reduce instead of let-reassign), set-state-in-effect disables in CountryFlag and UploadForSigning preview-bytes effect, unused 'confirm' destructures in interest contract + reservation tabs, unescaped apostrophe in test-template card copy
This commit is contained in:
@@ -50,11 +50,11 @@ import {
|
||||
} from './residential-interest-filters';
|
||||
|
||||
/**
|
||||
* Residential interests list — parity with the main InterestList. Wires
|
||||
* Residential interests list - parity with the main InterestList. Wires
|
||||
* the same DataTable + FilterBar + ColumnPicker + SavedViews + bulkActions
|
||||
* stack onto the /api/v1/residential/interests endpoint. Kanban view is
|
||||
* intentionally omitted (the residential pipeline stages differ and the
|
||||
* board layout isn't yet wired through for them — opens as a follow-up).
|
||||
* board layout isn't yet wired through for them - opens as a follow-up).
|
||||
*/
|
||||
export function ResidentialInterestsList() {
|
||||
const params = useParams<{ portSlug: string }>();
|
||||
@@ -65,7 +65,7 @@ export function ResidentialInterestsList() {
|
||||
const { can } = usePermissions();
|
||||
const [saveViewOpen, setSaveViewOpen] = useState(false);
|
||||
|
||||
// Bulk-action dialog state — same shape as the main InterestList so
|
||||
// Bulk-action dialog state - same shape as the main InterestList so
|
||||
// the inner controls feel identical.
|
||||
const [stageDialog, setStageDialog] = useState<{ ids: string[] } | null>(null);
|
||||
const [stageChoice, setStageChoice] = useState<string>(
|
||||
@@ -97,7 +97,7 @@ export function ResidentialInterestsList() {
|
||||
'residential_interest:archived': [['residential-interests']],
|
||||
});
|
||||
|
||||
// Mirror the main list's two-mutation idiom — per-row archive when the
|
||||
// Mirror the main list's two-mutation idiom - per-row archive when the
|
||||
// rep uses the kebab on a single row, bulk endpoint when they tick the
|
||||
// checkbox in the header.
|
||||
const archiveMutation = useMutation({
|
||||
@@ -122,7 +122,7 @@ export function ResidentialInterestsList() {
|
||||
const s = res.data.summary;
|
||||
if (s.failed > 0) {
|
||||
toast.warning(
|
||||
`${s.succeeded} of ${s.total} succeeded. ${s.failed} failed — check the activity log.`,
|
||||
`${s.succeeded} of ${s.total} succeeded. ${s.failed} failed - check the activity log.`,
|
||||
);
|
||||
} else {
|
||||
toast.success(`Updated ${s.succeeded} interest${s.succeeded === 1 ? '' : 's'}`);
|
||||
@@ -150,7 +150,7 @@ export function ResidentialInterestsList() {
|
||||
);
|
||||
const columnVisibility = Object.fromEntries(hidden.map((id) => [id, false]));
|
||||
|
||||
// Stages enum is set at module load — no runtime invariant to enforce.
|
||||
// Stages enum is set at module load - no runtime invariant to enforce.
|
||||
// (Earlier draft had a useEffect resetting `stageChoice` if it fell
|
||||
// out of the enum; React Compiler flags setState-in-effect, so we
|
||||
// rely on the dropdown's controlled value to enforce validity.)
|
||||
|
||||
Reference in New Issue
Block a user