UNPKG

@finos/legend-application-studio

Version:
55 lines 2.37 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 { DEFAULT_HOSTED_SERVICE_PATTERN, observe_FunctionActivatorOwnership, } from '@finos/legend-graph'; import { action } from 'mobx'; export const hostedService_setDocumentation = action((hostedService, val) => { hostedService.documentation = val; }); export const hostedService_setAutoActivateUpdates = action((hostedService, val) => { hostedService.autoActivateUpdates = val; }); export const hostedService_setPattern = action((hostedService, val) => { hostedService.pattern = val; }); export const hostedService_removePatternParameter = action((hostedService, value) => { const newPattern = hostedService.pattern .replace(new RegExp(`\\/\\{${value}\\}`, 'ug'), '') .replace(/\/{2,}/gu, '/'); hostedService.pattern = newPattern !== '' ? newPattern : DEFAULT_HOSTED_SERVICE_PATTERN; }); export const hostedService_setStoreModel = action((hostedService, val) => { hostedService.storeModel = val; }); export const hostedService_setGenerateLineage = action((hostedService, val) => { hostedService.generateLineage = val; }); export const activator_setOwnership = action((activator, value) => { activator.ownership = observe_FunctionActivatorOwnership(value); }); export const activator_setDeploymentOwner = action((deploymentOwner, value) => { deploymentOwner.id = value; }); export const activator_addUserOwner = action((userList, value) => { userList.users.push(value); }); export const activator_updateUserOwnership = action((userList, value, index) => { userList.users[index] = value; }); export const activator_deleteValueFromUserOwnership = action((userList, index) => { userList.users.splice(index, 1); }); //# sourceMappingURL=DSL_FunctionActivator_GraphModifierHelper.js.map