mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
95 lines
2.4 KiB
JavaScript
95 lines
2.4 KiB
JavaScript
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
const defaultFind = (criteria) => CustomFieldValue.find(criteria).sort('id');
|
|
|
|
/* Query methods */
|
|
|
|
const create = (arrayOfValues) => CustomFieldValue.createEach(arrayOfValues).fetch();
|
|
|
|
const createOrUpdateOne = async (values) => {
|
|
const query = `
|
|
INSERT INTO custom_field_value (card_id, custom_field_group_id, custom_field_id, content, created_at)
|
|
VALUES ($1, $2, $3, $4, $5)
|
|
ON CONFLICT (card_id, custom_field_group_id, custom_field_id)
|
|
DO UPDATE SET content = EXCLUDED.content, updated_at = EXCLUDED.created_at
|
|
RETURNING *
|
|
`;
|
|
|
|
const queryResult = await sails.sendNativeQuery(query, [
|
|
values.cardId,
|
|
values.customFieldGroupId,
|
|
values.customFieldId,
|
|
values.content,
|
|
new Date().toISOString(),
|
|
]);
|
|
|
|
const [customFieldValue] = queryResult.rows;
|
|
|
|
return {
|
|
id: customFieldValue.id,
|
|
cardId: customFieldValue.card_id,
|
|
customFieldGroupId: customFieldValue.custom_field_group_id,
|
|
customFieldId: customFieldValue.custom_field_id,
|
|
content: customFieldValue.content,
|
|
createdAt: customFieldValue.created_at,
|
|
updatedAt: customFieldValue.updated_at,
|
|
};
|
|
};
|
|
|
|
const getByIds = (ids) => defaultFind(ids);
|
|
|
|
const getByCardId = (cardId, { customFieldGroupIdOrIds } = {}) => {
|
|
const criteria = {
|
|
cardId,
|
|
};
|
|
|
|
if (customFieldGroupIdOrIds) {
|
|
criteria.customFieldGroupId = customFieldGroupIdOrIds;
|
|
}
|
|
|
|
return defaultFind(criteria);
|
|
};
|
|
|
|
const getByCardIds = (cardIds) =>
|
|
defaultFind({
|
|
cardId: cardIds,
|
|
});
|
|
|
|
const getByCustomFieldGroupId = (customFieldGroupId) =>
|
|
defaultFind({
|
|
customFieldGroupId,
|
|
});
|
|
|
|
const getOneByCardIdAndCustomFieldGroupIdAndCustomFieldId = (
|
|
cardId,
|
|
customFieldGroupId,
|
|
customFieldId,
|
|
) =>
|
|
CustomFieldValue.findOne({
|
|
cardId,
|
|
customFieldGroupId,
|
|
customFieldId,
|
|
});
|
|
|
|
const updateOne = (criteria, values) => CustomFieldValue.updateOne(criteria).set({ ...values });
|
|
|
|
// eslint-disable-next-line no-underscore-dangle
|
|
const delete_ = (criteria) => CustomFieldValue.destroy(criteria).fetch();
|
|
|
|
const deleteOne = (criteria) => CustomFieldValue.destroyOne(criteria);
|
|
|
|
module.exports = {
|
|
create,
|
|
createOrUpdateOne,
|
|
getByIds,
|
|
getByCardId,
|
|
getByCardIds,
|
|
getByCustomFieldGroupId,
|
|
getOneByCardIdAndCustomFieldGroupIdAndCustomFieldId,
|
|
updateOne,
|
|
deleteOne,
|
|
delete: delete_,
|
|
};
|