166 lines
8.1 KiB
Markdown
166 lines
8.1 KiB
Markdown
# XShop – Architecture (v1.0.0)
|
||
|
||
## 1. Overview
|
||
|
||
```
|
||
repo/
|
||
docs/ # product specs & ADRs
|
||
xshop-theme/ # presentation layer
|
||
xshop-core/ # companion plugin
|
||
release/ # built zips (not committed)
|
||
tools/ # build / QA scripts
|
||
```
|
||
|
||
Two installable artifacts: theme (`xshop`) + plugin (`xshop-core`). Theme never stores business logic that outlives theme activation (wishlist/compare/Q&A/banners live in plugin).
|
||
|
||
## 2. Theme – `xshop-theme`
|
||
|
||
### 2.1 File map (M2)
|
||
|
||
```
|
||
xshop-theme/
|
||
style.css
|
||
functions.php # thin loader
|
||
screenshot.png / rtl.css
|
||
header.php / footer.php / index.php / front-page.php / single.php / page.php / archive.php / search.php / 404.php / sidebar.php / comments.php
|
||
inc/
|
||
setup/ # theme-support, menus, sidebars, body-classes, assets (woo.css global, documented)
|
||
helpers/ # sanitize, template (xshop_has_woocommerce etc)
|
||
customization/ # options
|
||
compatibility/ # gutenberg, elementor
|
||
woocommerce/ # wrappers, loop_start/end, toolbar, remove gallery, related args, product.js enqueue, cart quantity filter
|
||
performance/ # defer
|
||
assets/
|
||
css/ # tokens, base, layout, components, woo (shop/product/cart/account/checkout), utilities
|
||
js/ # theme.js + product.js (gallery thumbs, keyboard)
|
||
template-parts/components/
|
||
site-header/-footer, breadcrumbs, pagination, search-form, post-card,
|
||
product-card.php (WC_Product, badges, price, rating, hooks), product-grid.php, product-gallery.php (featured+thumbs, keyboard), mini-cart.php, empty-state, loading, section-heading, hero, promo-banner
|
||
woocommerce/
|
||
content-product.php (3.6.0) — delegates to product-card
|
||
archive-product.php (3.4.0) — shop/category header + toolbar + grid + empty-state CTA
|
||
content-single-product.php (3.6.0) — grid gallery+summary, hooks preserved
|
||
single-product.php (1.6.4) — delegator to content-single-product
|
||
languages/
|
||
```
|
||
|
||
### 2.2 Bootstrap
|
||
|
||
`functions.php` is a thin loader:
|
||
|
||
```php
|
||
require_once __DIR__ . '/inc/setup/theme-support.php';
|
||
require_once __DIR__ . '/inc/setup/menus.php';
|
||
// ... each file exposes a single setup function hooked appropriately
|
||
```
|
||
|
||
No giant `functions.php`. Each `inc/*` file is namespaced or prefixed `xshop_`.
|
||
|
||
### 2.3 Namespacing & Prefixing
|
||
|
||
- Text domain: `xshop`
|
||
- PHP functions/options/actions/meta: `xshop_` prefix.
|
||
- Classes: `XShop\Theme\...` and `XShop\Core\...` (PSR-4 style even if manual require).
|
||
|
||
### 2.4 Hook Strategy
|
||
|
||
- Use `after_setup_theme` for theme support, `init` for CPT/taxonomy (only banners/Q&A).
|
||
- Use `wp_enqueue_scripts` with conditional loading.
|
||
- Use WC hooks for pricing, badges, loops – avoid overriding templates unless necessary.
|
||
|
||
## 3. Plugin – `xshop-core`
|
||
|
||
```
|
||
xshop-core/
|
||
xshop-core.php # plugin header + loader
|
||
includes/
|
||
Core/ # plugin bootstrap, constants
|
||
Modules/
|
||
Wishlist/
|
||
Compare/
|
||
QA/
|
||
Search/
|
||
Filter/
|
||
Banners/
|
||
Badges/
|
||
DemoImport/
|
||
SetupWizard/
|
||
SystemStatus/
|
||
Widgets/
|
||
Admin/ # menu, dashboard, settings pages
|
||
REST/ # REST endpoints (search/filter/wishlist/compare/QA)
|
||
Compatibility/
|
||
assets/ css/ js/
|
||
languages/
|
||
templates/ # wishlist, compare, banners front-end fragments
|
||
```
|
||
|
||
Plugin owns persistence for wishlist/compare/Q&A/banners. Theme only renders.
|
||
|
||
## 4. Data Ownership
|
||
|
||
- **WC**: products, variations, orders, customers, coupons, shipping, payment, taxes, cart, checkout.
|
||
- **WP**: users, posts, pages, media, menus, comments.
|
||
- **Custom**: banners (CPT `xshop_banner`), Q&A (CPT or comments extension – see DATABASE-MODEL.md), wishlist/compare (user meta + cookie + transient for guests), theme settings (single option `xshop_settings` + mods).
|
||
|
||
Avoid custom tables in v1; revisit via ADR if scale demands.
|
||
|
||
## 5. Design System (M2)
|
||
|
||
Tokens: `tokens.css` unchanged — adds WC tokens `--xshop-wc-badge-sale/--xshop-wc-price` etc. Layering `tokens→base→layout→components→woo→utilities→style.css` (woo.css 159 lines, tokens for shop/product/cart). Dark mode semantic swap covers `bg/surface/card/text/muted/border/input/focus/link/notice` — verified on shop/card/gallery/tabs/cart/checkout. Logical props only, zero `left/right`.
|
||
|
||
## 6. Asset Strategy (M2)
|
||
|
||
- Vanilla JS: `theme.js` (deferred) + `product.js` (enqueued only on `is_product()` via `xshop_wc_single_setup` guard). No gallery framework, 40 lines, keyboard Arrow/Home/End.
|
||
- Enqueue: `tokens→base→layout→components→woo→utilities→style.css` chain in `inc/setup/assets.php:1` (`woo.css` **intentionally global** 12KB — replaces Woo's 3 stylesheets, avoids FOUC on shop/product/cart/account; documented, tiny vs conditional complexity). WC styles dequeued (`woocommerce_enqueue_styles → __return_empty_array`). `product.js` conditional, `comment-reply` conditional.
|
||
- Localized `xshopData` on `xshop` handle. No jQuery for theme code; Woo's jQuery remains for variations/add-to-cart.
|
||
- Build: `tools/build-release.ps1` now includes top-level folder `xshop/` wrapper (fixed in M1.1).
|
||
|
||
## 7. AJAX / REST
|
||
|
||
Prefer **WP REST API** for search/filter/Q&A (cacheable, nonce via `X-WP-Nonce`), fallback to `admin-ajax` for cart/mini-cart where WC expects it. All endpoints: sanitize → validate → capability check → nonce → escaped output.
|
||
|
||
## 8. Security Model
|
||
|
||
See `SECURITY.md`. TL;DR: sanitize in, escape out, nonces, capability checks, prepared statements, no `unserialize`, no open redirects.
|
||
|
||
## 9. Performance Model
|
||
|
||
See `PERFORMANCE.md`. Conditional assets, lazy-load, transients for expensive queries, no N+1, `wp_cache`.
|
||
|
||
## 10. i18n / RTL
|
||
|
||
- All strings via `__()`, `_e()`, `esc_html__()` with text domain `xshop`.
|
||
- Logical CSS, `dir` attribute toggling, `is_rtl()` branching only where logical props insufficient.
|
||
- Persian typography tokens, `lang="fa"` support, mixed LTR numbers handled via `unicode-bidi` where needed.
|
||
|
||
## 11. Templating (M2)
|
||
|
||
`header.php` → `site-header` + breadcrumbs; `footer.php` → `site-footer`. Content templates use Loop + `get_template_part`. Reusable: `product-card.php:1` (WC_Product badges/price/rating, hook `xshop_product_card_after_actions`), `product-grid.php:1`, `product-gallery.php:1` (featured+thumbs, keyboard). `front-page.php` section-based via `xshop_front_hero_args`.
|
||
|
||
**Woo overrides (4, all minimal, versioned):**
|
||
- `woocommerce/content-product.php` (3.6.0) — Why: grid/token alignment; Hooks/CSS insufficient (li.product markup). Minimal: single `<li>` + `get_template_part product-card`. Risk: Woo 3.6 → bump → re-check `wc_product_class`.
|
||
- `woocommerce/archive-product.php` (3.4.0) — Why: XShop header (category title/desc/count) + toolbar + empty-state CTA. Hooks could do header but empty-state needs override. Minimal.
|
||
- `woocommerce/content-single-product.php` (3.6.0) — Why: grid layout `.xshop-product` gallery+summary + custom gallery component. Hooks alone can't provide grid wrapper without CSS hacks. Minimal: wraps hooks, replaces `woocommerce_show_product_images`.
|
||
- `woocommerce/single-product.php` (1.6.4) — Delegator to `content-single-product.php`; kept for explicitness, could be removed (Woo default works) but retained for clarity.
|
||
|
||
All keep Woo hooks (`woocommerce_before_single_product`, `woocommerce_single_product_summary`, `woocommerce_after_single_product_summary` etc.) — no business logic rewrite. `inc/woocommerce/setup.php:1` handles `loop_start/end` filter (`xshop-products`), toolbar `woocommerce_before_shop_loop` 9/35, remove gallery, related args `posts_per_page 4 columns 4`.
|
||
|
||
## 12. Decision Records
|
||
|
||
ADRs in `docs/ADR/` – one per major decision (e.g., “No custom tables for Q&A in v1”).
|
||
|
||
## 13. Release
|
||
|
||
`release/xshop.zip` + `release/xshop-core.zip` built via `tools/build-release.ps1`. Excludes `.git`, `node_modules`, `.env`, logs, temp.
|
||
|
||
## 14. Versioning
|
||
|
||
SemVer 1.0.0. `CHANGELOG.md` follows Keep a Changelog.
|
||
|
||
## 15. Risks & Mitigations
|
||
|
||
- WC API churn → pin tested versions, monitor template versions, use hooks not overrides.
|
||
- RTL regressions → logical props + visual regression checklist.
|
||
- Demo import timeouts → chunked importer with resume.
|