platform/packages/core/src/operator.ts

100 lines
2.7 KiB
TypeScript
Raw Normal View History

//
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
import type { Doc, PropertyType } from './classes'
import type { Position } from './tx'
/**
* @internal
*/
export type _OperatorFunc = (doc: Doc, op: any) => void
function $push (document: Doc, keyval: Record<string, PropertyType>): void {
const doc = document as any
for (const key in keyval) {
if (doc[key] === undefined) {
doc[key] = []
}
const val = keyval[key]
if (typeof val === 'object') {
const arr = doc[key] as Array<any>
const desc = val as Position<PropertyType>
arr.splice(desc.$position, 0, ...desc.$each)
} else {
doc[key].push(val)
}
}
}
function $pull (document: Doc, keyval: Record<string, PropertyType>): void {
const doc = document as any
for (const key in keyval) {
const arr = doc[key] as Array<any>
doc[key] = arr.filter(val => val !== keyval[key])
}
}
function $pushMixin (document: Doc, options: any): void {
const doc = document as any
const mixinId = options.$mixin
if (mixinId === undefined) { throw new Error('$mixin must be specified for $push_mixin operation') }
const mixin = doc[mixinId]
const keyval = options.values
for (const key in keyval) {
const arr = mixin[key]
if (arr === undefined) {
mixin[key] = [keyval[key]]
} else {
arr.push(keyval[key])
}
}
}
function $inc (document: Doc, keyval: Record<string, number>): void {
const doc = document as unknown as Record<string, number | undefined>
for (const key in keyval) {
const cur = doc[key] ?? 0
doc[key] = cur + keyval[key]
}
}
const operators: Record<string, _OperatorFunc> = {
$push,
$pull,
$pushMixin,
$inc
}
/**
* @public
*/
export function isOperator (o: Record<string, any>): boolean {
if (o === null || typeof o !== 'object') { return false }
const keys = Object.keys(o)
return keys.length > 0 && keys.every((key) => key.startsWith('$'))
}
/**
* @internal
* @param name -
* @returns
*/
export function _getOperator (name: string): _OperatorFunc {
const operator = operators[name]
if (operator === undefined) throw new Error('unknown operator: ' + name)
return operator
}