Implements, verifies, and archives the three remaining Wave 2 changes from openspec/MIGRATION-PLAN.md. - add-wallet-settlement (P3): demo recharge, guarded withdrawal freeze and one-time admin review, paginated own fund entries, idempotent per-shop weekly/monthly settlement statements with commission rate and one-time payout confirmation. - add-merchant-onboarding (P5): personal/enterprise applications with one live application per user, guarded review with mandatory rejection reason, and transactional shop + owner provisioning returning one-time credentials; mall onboarding/status pages and an admin review console. - add-membership-messaging (P7): platform member levels, append-only growth accrual on order completion with guarded one-way leveling, order/shipment/ refund system messages with unread/read state and soft deletion, plus the mall header unread badge. Backend: migrations 0019-0023, new wallet, settlement, merchant_onboarding, membership and messaging modules, event hooks in order/fulfillment/aftersale, and integration suites for each. Shared contract extended and all three frontends updated; code indexes, domain docs, backend guidelines and the migration tracker synced. Verification: cargo test -p vmall-api green twice consecutively; mall, admin and shop-admin builds pass; browser smoke on every new surface; openspec validate --all --strict green (33 passed). The three changes share the @vmall/shared contract, the mall mock adapter and per-app locale/nav files, so they are committed together to keep every commit buildable.
74 lines
1.8 KiB
TypeScript
74 lines
1.8 KiB
TypeScript
// App-local message extensions, deep-merged over @vmall/shared locales.
|
|
// Each domain module owns its own namespace; register new domains below.
|
|
// (Never edit the shared locale files from an app agent.)
|
|
|
|
import shell from "./locales/shell";
|
|
import home from "./locales/home";
|
|
import search from "./locales/search";
|
|
import product from "./locales/product";
|
|
import cart from "./locales/cart";
|
|
import checkout from "./locales/checkout";
|
|
import auth from "./locales/auth";
|
|
import user from "./locales/user";
|
|
import stores from "./locales/stores";
|
|
import marketing from "./locales/marketing";
|
|
import wallet from "./locales/wallet";
|
|
import merchant from "./locales/merchant";
|
|
import membership from "./locales/membership";
|
|
import messaging from "./locales/messaging";
|
|
|
|
type Tree = Record<string, unknown>;
|
|
|
|
function deepMerge<T extends Tree>(base: T, extra: Tree): T {
|
|
const out: Tree = { ...base };
|
|
for (const [k, v] of Object.entries(extra)) {
|
|
const b = out[k];
|
|
out[k] =
|
|
b && v && typeof b === "object" && typeof v === "object"
|
|
? deepMerge(b as Tree, v as Tree)
|
|
: v;
|
|
}
|
|
return out as T;
|
|
}
|
|
|
|
// Keys referenced by retained shared components (PriceText) and generic handlers.
|
|
const legacyEn: Tree = {
|
|
mall: {
|
|
notAvailable: "—",
|
|
loadFailed: "Unable to load data",
|
|
},
|
|
};
|
|
|
|
const legacyZh: Tree = {
|
|
mall: {
|
|
notAvailable: "—",
|
|
loadFailed: "加载失败",
|
|
},
|
|
};
|
|
|
|
const domains = [
|
|
shell,
|
|
home,
|
|
search,
|
|
product,
|
|
cart,
|
|
checkout,
|
|
auth,
|
|
user,
|
|
stores,
|
|
marketing,
|
|
wallet,
|
|
merchant,
|
|
membership,
|
|
messaging,
|
|
];
|
|
|
|
export const enExtra: Tree = domains.reduce<Tree>(
|
|
(acc, m) => deepMerge(acc, m.en as Tree),
|
|
legacyEn,
|
|
);
|
|
export const zhExtra: Tree = domains.reduce<Tree>(
|
|
(acc, m) => deepMerge(acc, m.zh as Tree),
|
|
legacyZh,
|
|
);
|