Rename all 1,169 components to path-based names with namespace support

Component names now reflect filesystem location using / as path separator
and : as namespace separator for shared components:
  ~sx-header → ~layouts/header
  ~layout-app-body → ~shared:layout/app-body
  ~blog-admin-dashboard → ~admin/dashboard

209 files, 4,941 replacements across all services.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-12 22:00:12 +00:00
parent de80d921e9
commit b0920a1121
209 changed files with 4620 additions and 4620 deletions

View File

@@ -6,7 +6,7 @@
:auth :login
:layout :social
:data (service "federation-page" "home-timeline-data")
:content (~federation-timeline-content
:content (~social/timeline-content
:items items
:timeline-type timeline-type
:actor actor))
@@ -16,7 +16,7 @@
:auth :public
:layout :social
:data (service "federation-page" "public-timeline-data")
:content (~federation-timeline-content
:content (~social/timeline-content
:items items
:timeline-type timeline-type
:actor actor))
@@ -26,7 +26,7 @@
:auth :login
:layout :social
:data (service "federation-page" "compose-data")
:content (~federation-compose-content
:content (~social/compose-content
:reply-to reply-to))
(defpage search
@@ -34,7 +34,7 @@
:auth :public
:layout :social
:data (service "federation-page" "search-data")
:content (~federation-search-content
:content (~search/content
:query query
:actors actors
:total total
@@ -46,7 +46,7 @@
:auth :login
:layout :social
:data (service "federation-page" "following-data")
:content (~federation-following-content
:content (~search/following-content
:actors actors
:total total
:actor actor))
@@ -56,7 +56,7 @@
:auth :login
:layout :social
:data (service "federation-page" "followers-data")
:content (~federation-followers-content
:content (~search/followers-content
:actors actors
:total total
:followed-urls followed-urls
@@ -67,7 +67,7 @@
:auth :public
:layout :social
:data (service "federation-page" "actor-timeline-data" :id id)
:content (~federation-actor-timeline-content
:content (~profile/actor-timeline-content
:remote-actor remote-actor
:items items
:is-following is-following
@@ -78,5 +78,5 @@
:auth :login
:layout :social
:data (service "federation-page" "notifications-data")
:content (~federation-notifications-content
:content (~notifications/content
:notifications notifications))