Files
klz-cables.com/.pnpm-store/v10/files/e7/238e46497ca1cc0000eb5267812ba7f8f812d4de00172a7aa4d0fea75149e43eaa2a1efdeac7edcb6be31b786d4eee721e951fc3d119b6b190d129395a1076
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

65 lines
1.6 KiB
Plaintext

import { entityKind } from "../../entity.js";
import { getColumnNameAndConfig } from "../../utils.js";
import { SingleStoreColumn, SingleStoreColumnBuilder } from "./common.js";
class SingleStoreDateBuilder extends SingleStoreColumnBuilder {
static [entityKind] = "SingleStoreDateBuilder";
constructor(name) {
super(name, "date", "SingleStoreDate");
}
/** @internal */
build(table) {
return new SingleStoreDate(
table,
this.config
);
}
}
class SingleStoreDate extends SingleStoreColumn {
static [entityKind] = "SingleStoreDate";
constructor(table, config) {
super(table, config);
}
getSQLType() {
return `date`;
}
mapFromDriverValue(value) {
return new Date(value);
}
}
class SingleStoreDateStringBuilder extends SingleStoreColumnBuilder {
static [entityKind] = "SingleStoreDateStringBuilder";
constructor(name) {
super(name, "string", "SingleStoreDateString");
}
/** @internal */
build(table) {
return new SingleStoreDateString(
table,
this.config
);
}
}
class SingleStoreDateString extends SingleStoreColumn {
static [entityKind] = "SingleStoreDateString";
constructor(table, config) {
super(table, config);
}
getSQLType() {
return `date`;
}
}
function date(a, b) {
const { name, config } = getColumnNameAndConfig(a, b);
if (config?.mode === "string") {
return new SingleStoreDateStringBuilder(name);
}
return new SingleStoreDateBuilder(name);
}
export {
SingleStoreDate,
SingleStoreDateBuilder,
SingleStoreDateString,
SingleStoreDateStringBuilder,
date
};
//# sourceMappingURL=date.js.map