import { ID } from '@subit/common/lib/shared-types'; import { OrderLine } from '../../../entity/order-line/order-line.entity'; import { TransactionalConnection } from '../../../service/transaction/transactional-connection'; /** * @description * The FacetValueChecker is a helper class used to determine whether a given OrderLine consists * of ProductVariants containing the given FacetValues. * * @example * ```TypeScript * import { FacetValueChecker, LanguageCode, PromotionCondition, TransactionalConnection } from '\@subit/core'; * * let facetValueChecker: FacetValueChecker; * * export const hasFacetValues = new PromotionCondition({ * code: 'at_least_n_with_facets', * description: [ * { languageCode: LanguageCode.en, value: 'Buy at least { minimum } products with the given facets' }, * ], * args: { * minimum: { type: 'int' }, * facets: { type: 'ID', list: true, ui: { component: 'facet-value-form-input' } }, * }, * init(injector) { * facetValueChecker = new FacetValueChecker(injector.get(TransactionalConnection)); * }, * // tslint:disable-next-line:no-shadowed-variable * async check(ctx, order, args) { * let matches = 0; * for (const line of order.lines) { * if (await facetValueChecker.hasFacetValues(line, args.facets)) { * matches += line.quantity; * } * } * return args.minimum <= matches; * }, * }); * ``` * * @docsCategory Promotions */ export declare class FacetValueChecker { private connection; private variantCache; constructor(connection: TransactionalConnection); /** * @description * Checks a given {@link OrderLine} against the facetValueIds and returns * `true` if the associated {@link ProductVariant} & {@link Product} together * have *all* the specified {@link FacetValue}s. */ hasFacetValues(orderLine: OrderLine, facetValueIds: ID[]): Promise; }