UNPKG

@finos/legend-application-studio

Version:
34 lines 3.19 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; /** * 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 { ExclamationCircleIcon } from '@finos/legend-art'; import { DeploymentOwner, UserList, } from '@finos/legend-graph'; import { observer } from 'mobx-react-lite'; import { activator_setDeploymentOwner, activator_setOwnership, } from '../../../../stores/graph-modifier/DSL_FunctionActivator_GraphModifierHelper.js'; import { useState } from 'react'; export const ActivatorOwnershipForm = observer((props) => { const { activator, isReadOnly } = props; const ownership = activator.ownership; const [ownerInputValue, setOwner] = useState(ownership instanceof DeploymentOwner ? ownership.id : ''); const updateDeploymentIdentifier = (event) => { if (!isReadOnly && ownership instanceof DeploymentOwner) { setOwner(event.target.value); activator_setDeploymentOwner(ownership, event.target.value); } }; return (_jsxs("div", { children: [_jsx("div", { className: "panel__content__form__section", children: _jsx("div", { className: "panel__content__form__section__header__label", children: "Ownership" }) }), ownership instanceof DeploymentOwner && (_jsxs("div", { className: "panel__content__form__section", children: [_jsx("div", { className: "panel__content__form__section__header__prompt", children: "Provide a deployment identifier that will own the Lambda." }), _jsx("input", { className: "panel__content__form__section__input", spellCheck: false, disabled: isReadOnly, value: ownerInputValue, onChange: updateDeploymentIdentifier })] })), ownership instanceof UserList && (_jsxs("div", { className: "project-configuration-editor__project__structure__version", children: [_jsxs("div", { className: "project-configuration-editor__project__structure__version__label", children: [_jsx("div", { className: "project-configuration-editor__project__structure__version__label__status", children: _jsx(ExclamationCircleIcon, { className: "project-configuration-editor__project__structure__version__label__status--outdated" }) }), _jsx("div", { className: "project-configuration-editor__project__structure__version__label__text", children: `User List Ownership has been deprecated` })] }), _jsx("button", { className: "project-configuration-editor__project__structure__version__update-btn", disabled: isReadOnly, onClick: () => activator_setOwnership(activator, new DeploymentOwner('', activator)), tabIndex: -1, title: `Click to Change to Deployment`, children: "Change to Deployment" })] }))] })); }); //# sourceMappingURL=ActivatorFormComponents.js.map