42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import { acquireConnection } from './pool.js'
|
|
import type { PoolConnection } from 'better-sqlite-pool'
|
|
|
|
import {
|
|
dateIntegerToString,
|
|
timeIntegerToString
|
|
} from '@cityssm/expressjs-server-js/dateTimeFns.js'
|
|
|
|
import type * as recordTypes from '../../types/recordTypes'
|
|
|
|
export async function getLotComments(
|
|
lotId: number | string,
|
|
connectedDatabase?: PoolConnection
|
|
): Promise<recordTypes.LotComment[]> {
|
|
const database = connectedDatabase ?? (await acquireConnection())
|
|
|
|
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,
|
|
recordCreate_userName, recordUpdate_userName
|
|
from LotComments
|
|
where recordDelete_timeMillis is null
|
|
and lotId = ?
|
|
order by lotCommentDate desc, lotCommentTime desc, lotCommentId desc`
|
|
)
|
|
.all(lotId)
|
|
|
|
if (connectedDatabase === undefined) {
|
|
database.release()
|
|
}
|
|
|
|
return lotComments
|
|
}
|
|
|
|
export default getLotComments
|