@rnaga/wp-node
Version:
👉 **[View Full Documentation at rnaga.github.io/wp-node →](https://rnaga.github.io/wp-node/)**
174 lines (173 loc) • 6.7 kB
JavaScript
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
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 __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Comment = void 0;
const zod_1 = require("zod");
const constants_1 = require("../constants/");
const async_init_1 = require("../decorators/async-init");
const component_1 = require("../decorators/component");
const val = __importStar(require("../validators"));
const helpers_1 = require("../validators/helpers");
const meta_1 = require("./meta");
const query_util_1 = require("./utils/query.util");
const logger_1 = require("./logger");
let Comment = class Comment {
meta;
logger;
queryUtil;
commentId;
_props;
constructor(meta, logger, queryUtil, commentId, _props) {
this.meta = meta;
this.logger = logger;
this.queryUtil = queryUtil;
this.commentId = commentId;
this._props = _props;
this.meta.set("comment", commentId);
}
get props() {
return !this._props ? undefined : this._props;
}
withProps(props) {
this._props = { ...this._props, ...props };
return this;
}
async post() {
if (!this.props?.comment_post_ID) {
return undefined;
}
const postId = this.props?.comment_post_ID;
return await this.queryUtil.posts((query) => {
query.where("ID", postId).builder.first();
}, val.database.wpPosts);
}
async user() {
if (!this.props?.user_id) {
return undefined;
}
const userId = this.props.user_id;
return await this.queryUtil.users((query) => {
query.where("ID", userId).builder.first();
}, val.database.wpUsers);
}
async parent() {
if (!this.props?.comment_parent) {
return undefined;
}
const commentParentId = this.props?.comment_parent;
const results = await this.queryUtil.comments((query) => {
query
.where("ID", commentParentId)
.withUsers([], "left")
.select(["*", "user_display_name"])
.builder.first();
}, val.database.wpComments.merge(zod_1.z.object({
display_name: val.database.wpUsers.shape.display_name
.nullable()
.transform(helpers_1.undefinedIfEmptyString),
})));
return results;
}
async children(limit = 99) {
if (!this.props?.comment_ID) {
return undefined;
}
const commentParentId = this.props?.comment_ID;
return await this.queryUtil.comments((query) => {
query
.withChildren("comment_parent", [commentParentId], limit)
.withUsers([], "left")
.select(["*", "parent", "user_display_name"]);
}, zod_1.z
.array(val.query.schemaDepth.merge(val.database.wpComments.merge(zod_1.z.object({
display_name: val.database.wpUsers.shape.display_name
.nullable()
.transform(helpers_1.undefinedIfEmptyString),
}))))
.nonempty());
}
async countChildren() {
if (!this.props?.comment_ID) {
return undefined;
}
const commentParentId = this.props?.comment_ID;
const result = await this.queryUtil.comments((query) => {
query
.withChildren("comment_parent", [commentParentId], 0)
.builder.count(`* as count`);
}, zod_1.z.array(zod_1.z.object({
count: zod_1.z.number(),
depth: zod_1.z.number(),
})));
return !result
? 0
: result?.reduce((count, comment) => count + comment.count, 0);
}
async init() {
if (!this.commentId) {
throw new Error("comment Id not defined");
}
const comment = await this.queryUtil.comments((query) => {
query.get(this.commentId);
}, val.database.wpComments);
if (!comment) {
this.logger.info(`Comment not found: ${this.commentId}`);
return;
}
this._props = comment;
}
};
exports.Comment = Comment;
__decorate([
async_init_1.asyncInit,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", Promise)
], Comment.prototype, "init", null);
exports.Comment = Comment = __decorate([
(0, component_1.component)({ scope: constants_1.Scope.Transient }),
__metadata("design:paramtypes", [meta_1.Meta,
logger_1.Logger,
query_util_1.QueryUtil, Number, Object])
], Comment);