sunrise-cms/helpers/lotOccupancyDB/getLotComments.js

26 lines
1.1 KiB
JavaScript

import { dateIntegerToString, timeIntegerToString } from "@cityssm/expressjs-server-js/dateTimeFns.js";
import sqlite from "better-sqlite3";
import { lotOccupancyDB as databasePath } from "../../data/databasePaths.js";
export const getLotComments = (lotId, connectedDatabase) => {
const database = connectedDatabase || sqlite(databasePath, {
readonly: true
});
database.function("userFn_dateIntegerToString", dateIntegerToString);
database.function("userFn_timeIntegerToString", timeIntegerToString);
const lotComments = database
.prepare("select lotCommentId," +
" lotCommentDate, userFn_dateIntegerToString(lotCommentDate) as lotCommentDateString," +
" lotCommentTime, userFn_timeIntegerToString(lotCommentTime) as lotCommentTimeString," +
" lotComment" +
" from LotComments" +
" where recordDelete_timeMillis is null" +
" and lotId = ?" +
" order by lotCommentDate desc, lotCommentTime desc, lotCommentId desc")
.all(lotId);
if (!connectedDatabase) {
database.close();
}
return lotComments;
};
export default getLotComments;