Files
klz-cables.com/.pnpm-store/v10/files/a3/ccabe32c3a590f08a1597303201929256e3db911666b331a4afdf822f4e3fdfc31ed09c78ac0149d69c4f76e646eeece84747630309d3081dc4945da853b9e
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

49 lines
1.3 KiB
Plaintext

import { entityKind } from "../../entity.js";
import { SQL, sql } from "../../sql/sql.js";
class SingleStoreCountBuilder extends SQL {
constructor(params) {
super(SingleStoreCountBuilder.buildEmbeddedCount(params.source, params.filters).queryChunks);
this.params = params;
this.mapWith(Number);
this.session = params.session;
this.sql = SingleStoreCountBuilder.buildCount(
params.source,
params.filters
);
}
sql;
static [entityKind] = "SingleStoreCountBuilder";
[Symbol.toStringTag] = "SingleStoreCountBuilder";
session;
static buildEmbeddedCount(source, filters) {
return sql`(select count(*) from ${source}${sql.raw(" where ").if(filters)}${filters})`;
}
static buildCount(source, filters) {
return sql`select count(*) as count from ${source}${sql.raw(" where ").if(filters)}${filters}`;
}
then(onfulfilled, onrejected) {
return Promise.resolve(this.session.count(this.sql)).then(
onfulfilled,
onrejected
);
}
catch(onRejected) {
return this.then(void 0, onRejected);
}
finally(onFinally) {
return this.then(
(value) => {
onFinally?.();
return value;
},
(reason) => {
onFinally?.();
throw reason;
}
);
}
}
export {
SingleStoreCountBuilder
};
//# sourceMappingURL=count.js.map