UNPKG

@finos/legend-graph

Version:
51 lines 1.94 kB
/** * Copyright (c) 2020-present, Goldman Sachs * * Licensed under the Apache 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 * * http://www.apache.org/licenses/LICENSE-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 { makeObservable, observable, override } from 'mobx'; import { LakehouseAccessPoint, } from '../../../graph/metamodel/pure/dataProduct/DataProduct.js'; import { observe_Abstract_PackageableElement, skipObserved, } from './CoreObserverHelper.js'; export const observe_AccessPoint = skipObserved((metamodel) => { if (metamodel instanceof LakehouseAccessPoint) { makeObservable(metamodel, { id: observable, targetEnvironment: observable, func: observable.ref, description: observable, }); } // TODO others return metamodel; }); export const observe_AccessPointGroup = skipObserved((metamodel) => { makeObservable(metamodel, { id: observable, description: observable, accessPoints: observable, }); metamodel.accessPoints.forEach(observe_AccessPoint); return metamodel; }); export const observe_DataProduct = skipObserved((metamodel) => { observe_Abstract_PackageableElement(metamodel); makeObservable(metamodel, { accessPointGroups: observable, _elementHashCode: override, title: observable, description: observable, }); metamodel.accessPointGroups.forEach(observe_AccessPointGroup); return metamodel; }); //# sourceMappingURL=DataProductObserveHelper.js.map