UNPKG

@atomic-ehr/fhirpath

Version:

A TypeScript implementation of FHIRPath

48 lines (43 loc) 1.85 kB
import type { OperatorDefinition } from '../types'; import { PRECEDENCE } from '../types'; import type { OperationEvaluator } from '../types'; import { equalQuantities, compareQuantities, type QuantityValue } from '../quantity-value'; import { box, unbox } from '../boxing'; export const evaluate: OperationEvaluator = async (input, context, left, right) => { if (left.length === 0 || right.length === 0) { return { value: [], context }; } const boxedl = left[0]; if (!boxedl) return { value: [], context }; const l = unbox(boxedl); const boxedr = right[0]; if (!boxedr) return { value: [], context }; const r = unbox(boxedr); // Check if both are quantities if (l && typeof l === 'object' && 'unit' in l && r && typeof r === 'object' && 'unit' in r) { const comparison = compareQuantities(l as QuantityValue, r as QuantityValue); // If quantities are incomparable (different dimensions), return empty if (comparison === null) { return { value: [], context }; } return { value: [box(comparison !== 0, { type: 'Boolean', singleton: true })], context }; } return { value: [box(l !== r, { type: 'Boolean', singleton: true })], context }; }; export const notEqualOperator: OperatorDefinition & { evaluate: OperationEvaluator } = { symbol: '!=', name: 'notEqual', category: ['equality'], precedence: PRECEDENCE.EQUALITY, associativity: 'left', description: 'The converse of the equals operator, returning true if equal returns false; false if equal returns true; and empty ({ }) if equal returns empty', examples: ['name != "John"', 'Patient.gender != "male"', '5 != 3'], signatures: [{ name: 'not-equal', left: { type: 'Any', singleton: true }, right: { type: 'Any', singleton: true }, result: { type: 'Boolean', singleton: true }, }], evaluate };