@vendure/core
Version:
A modern, headless ecommerce framework
64 lines • 3.66 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ShippingMethodEntityResolver = void 0;
const graphql_1 = require("@nestjs/graphql");
const shipping_method_entity_1 = require("../../../entity/shipping-method/shipping-method.entity");
const locale_string_hydrator_1 = require("../../../service/helpers/locale-string-hydrator/locale-string-hydrator");
const request_context_1 = require("../../common/request-context");
const request_context_decorator_1 = require("../../decorators/request-context.decorator");
let ShippingMethodEntityResolver = class ShippingMethodEntityResolver {
constructor(localeStringHydrator) {
this.localeStringHydrator = localeStringHydrator;
}
name(ctx, shippingMethod) {
return this.localeStringHydrator.hydrateLocaleStringField(ctx, shippingMethod, 'name');
}
description(ctx, shippingMethod) {
return this.localeStringHydrator.hydrateLocaleStringField(ctx, shippingMethod, 'description');
}
languageCode(ctx, shippingMethod) {
return this.localeStringHydrator.hydrateLocaleStringField(ctx, shippingMethod, 'languageCode');
}
};
exports.ShippingMethodEntityResolver = ShippingMethodEntityResolver;
__decorate([
(0, graphql_1.ResolveField)(),
__param(0, (0, request_context_decorator_1.Ctx)()),
__param(1, (0, graphql_1.Parent)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [request_context_1.RequestContext, shipping_method_entity_1.ShippingMethod]),
__metadata("design:returntype", Promise)
], ShippingMethodEntityResolver.prototype, "name", null);
__decorate([
(0, graphql_1.ResolveField)(),
__param(0, (0, request_context_decorator_1.Ctx)()),
__param(1, (0, graphql_1.Parent)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [request_context_1.RequestContext, shipping_method_entity_1.ShippingMethod]),
__metadata("design:returntype", Promise)
], ShippingMethodEntityResolver.prototype, "description", null);
__decorate([
(0, graphql_1.ResolveField)(),
__param(0, (0, request_context_decorator_1.Ctx)()),
__param(1, (0, graphql_1.Parent)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [request_context_1.RequestContext, shipping_method_entity_1.ShippingMethod]),
__metadata("design:returntype", Promise)
], ShippingMethodEntityResolver.prototype, "languageCode", null);
exports.ShippingMethodEntityResolver = ShippingMethodEntityResolver = __decorate([
(0, graphql_1.Resolver)('ShippingMethod'),
__metadata("design:paramtypes", [locale_string_hydrator_1.LocaleStringHydrator])
], ShippingMethodEntityResolver);
//# sourceMappingURL=shipping-method-entity.resolver.js.map