@uniweb/core 0.4.1 → 0.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniweb/core",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "description": "Core classes for the Uniweb platform - Uniweb, Website, Page, Block",
5
5
  "type": "module",
6
6
  "exports": {
@@ -40,6 +40,27 @@ export default class EntityStore {
40
40
  return null
41
41
  }
42
42
 
43
+ /**
44
+ * Return a localized copy of a fetch config for collection data.
45
+ * For non-default locales, prepends /{locale} to /data/ paths so the
46
+ * client fetches the translated JSON (e.g. /fr/data/articles.json).
47
+ *
48
+ * @param {Object} cfg - Fetch config
49
+ * @param {import('./website.js').default|null} website
50
+ * @returns {Object} Localized config (or original if no change needed)
51
+ */
52
+ _localizeConfig(cfg, website) {
53
+ if (!cfg.path || !website) return cfg
54
+
55
+ const locale = website.getActiveLocale()
56
+ const defaultLocale = website.getDefaultLocale()
57
+ if (!locale || locale === defaultLocale) return cfg
58
+
59
+ if (!cfg.path.startsWith('/data/')) return cfg
60
+
61
+ return { ...cfg, path: `/${locale}${cfg.path}` }
62
+ }
63
+
43
64
  /**
44
65
  * Walk the hierarchy to find fetch configs for requested schemas.
45
66
  * Order: block.fetch → page.fetch → parent.fetch → site config.fetch
@@ -77,6 +98,8 @@ export default class EntityStore {
77
98
  sources.push(siteFetch)
78
99
  }
79
100
 
101
+ const website = block.website
102
+
80
103
  for (const source of sources) {
81
104
  // Normalize: single config or array of configs
82
105
  const configList = Array.isArray(source) ? source : [source]
@@ -86,7 +109,7 @@ export default class EntityStore {
86
109
  if (configs.has(cfg.schema)) continue // first match wins
87
110
 
88
111
  if (collectAll || requested.includes(cfg.schema)) {
89
- configs.set(cfg.schema, cfg)
112
+ configs.set(cfg.schema, this._localizeConfig(cfg, website))
90
113
  }
91
114
  }
92
115
  }
package/src/website.js CHANGED
@@ -18,21 +18,19 @@ export default class Website {
18
18
  this.description = config.description || ''
19
19
  this.url = config.url || ''
20
20
 
21
- // Store special pages (layout areas)
21
+ // Store layout panels (header, footer, left, right)
22
22
  // These come from top-level properties set by content-collector
23
- // Fallback to searching pages array for backwards compatibility
24
- this.headerPage = header || pages.find((p) => p.route === '/@header') || null
25
- this.footerPage = footer || pages.find((p) => p.route === '/@footer') || null
26
- this.leftPage = left || pages.find((p) => p.route === '/@left') || null
27
- this.rightPage = right || pages.find((p) => p.route === '/@right') || null
23
+ this.headerPage = header || null
24
+ this.footerPage = footer || null
25
+ this.leftPage = left || null
26
+ this.rightPage = right || null
28
27
 
29
28
  // Store 404 page (for SPA routing)
30
29
  // Convention: pages/404/ directory
31
30
  this.notFoundPage = notFound || pages.find((p) => p.route === '/404') || null
32
31
 
33
- // Filter out special pages from regular pages array
34
- const specialRoutes = ['/@header', '/@footer', '/@left', '/@right', '/404']
35
- const regularPages = pages.filter((page) => !specialRoutes.includes(page.route))
32
+ // Filter out 404 from regular pages array
33
+ const regularPages = pages.filter((page) => page.route !== '/404')
36
34
 
37
35
  // Store original page data for dynamic pages (needed to create instances on-demand)
38
36
  this._dynamicPageData = new Map()
@@ -792,9 +790,6 @@ export default class Website {
792
790
 
793
791
  // Filter pages based on navigation type and visibility
794
792
  const isPageVisible = (page) => {
795
- // Always exclude special pages (header/footer are already separated)
796
- if (page.route.startsWith('/@')) return false
797
-
798
793
  // Always exclude dynamic route template pages (e.g., /blog/:slug)
799
794
  // These are templates for generating pages, not actual navigable pages
800
795
  if (page.route.includes(':')) return false