feat(static-pages): CRUD completion + search/filter/bulk actions

Milestone 2 of the Static Pages Module sprint.

- StaticPagesEditorComponent: duplicate page, confirm-before-delete/bulk-
  delete (matches the resetDraft confirm pattern), route/enabled/customTemplate/
  media(hero/thumbnail/gallery) fields wired into the card, per-page publish/
  unpublish action, status + duplicate-route/invalid-html/invalid-seo badges.
- Search (id/slug/route/title across all locales), filter by status
  (draft/published) and by locale (hides pages missing a translation for the
  selected locale) - all local computed() filters, no new service.
- Bulk selection (per-row + select-all-visible checkboxes) with bulk delete/
  enable/disable/publish/unpublish, one updateBootstrap() call each.
- Correctness note: introduced `allPages` (unfiltered) vs `pages` (filtered
  view) computeds. Every mutation (create/duplicate/delete/move/bulk) reads
  from allPages(), never the filtered pages() - reading from the filtered
  view would have silently deleted whatever an active search/filter hid on
  the next persist(). Documented inline on persist() as a guardrail for
  future edits.
- Fixed a template compile error found by the build gate: Angular templates
  don't support inline arrow functions in binding expressions
  ((ngModelChange)="...map(v => v.trim())..." failed to parse) - moved the
  gallery CSV-parsing into a component method (updateGallery).
- SEO robots field added to the page card (validated against a known-token
  set from M1).
- i18n: staticPages.* extended (search/filter/bulk/route/enabled/status/
  media/robots/disabled labels) across the interface + en/ru/hy.

Gate: tsc --noEmit, npm test (57/57), arch:check, build all green.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
sdarbinyan
2026-07-17 09:55:21 +04:00
parent 4861990551
commit cb3dff819e
6 changed files with 356 additions and 12 deletions

View File

@@ -719,6 +719,33 @@ export const ru: Translations = {
backHome: 'На главную',
duplicateSlug: 'Дублирующиеся slug запрещены.',
emptyTitle: 'У каждой страницы должен быть хотя бы один заголовок.',
duplicateRoute: 'Два или более страниц используют один и тот же маршрут.',
invalidHtml: 'На этой странице некорректный HTML-контент.',
invalidSeo: 'У этой страницы некорректное SEO-поле (canonical/OG-изображение или значение robots).',
searchPlaceholder: 'Поиск страниц…',
filterAll: 'Все статусы',
filterAllLocales: 'Все языки',
confirmDeletePage: 'Удалить эту страницу? Это действие нельзя отменить.',
confirmBulkDelete: 'Удалить выбранные страницы? Это действие нельзя отменить.',
duplicatePage: 'Дублировать',
selectAll: 'Выбрать все',
selectedCount: 'выбрано',
bulkDelete: 'Удалить выбранные',
bulkEnable: 'Включить выбранные',
bulkDisable: 'Отключить выбранные',
bulkPublishAction: 'Опубликовать выбранные',
bulkUnpublish: 'Снять с публикации выбранные',
routeLabel: 'Маршрут',
enabledLabel: 'Включена',
statusLabel: 'Статус',
publishPageAction: 'Опубликовать страницу',
unpublishPageAction: 'Снять страницу с публикации',
heroImageLabel: 'Главное изображение',
thumbnailLabel: 'Миниатюра',
galleryLabel: 'Галерея',
customTemplateLabel: 'Пользовательский шаблон',
seoRobotsLabel: 'Robots',
disabledBadge: 'Отключена',
},
widgets: {
unavailable: 'Виджет недоступен',