mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 17:25:03 +03:00
35 lines
789 B
JavaScript
35 lines
789 B
JavaScript
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
import { createSelector } from 'redux-orm';
|
|
|
|
import orm from '../orm';
|
|
import { isLocalId } from '../utils/local-id';
|
|
|
|
export const makeSelectCustomFieldById = () =>
|
|
createSelector(
|
|
orm,
|
|
(_, id) => id,
|
|
({ CustomField }, id) => {
|
|
const customFieldModel = CustomField.withId(id);
|
|
|
|
if (!customFieldModel) {
|
|
return customFieldModel;
|
|
}
|
|
|
|
return {
|
|
...customFieldModel.ref,
|
|
isPersisted: !isLocalId(customFieldModel.id),
|
|
};
|
|
},
|
|
);
|
|
|
|
export const selectCustomFieldById = makeSelectCustomFieldById();
|
|
|
|
export default {
|
|
makeSelectCustomFieldById,
|
|
selectCustomFieldById,
|
|
};
|