\r\n
this.showOriginal('')} />\r\n
this.showOriginal('')} title=\"Close\">\r\n \r\n \r\n\r\n
\r\n {this.renderDocumentItem(originalSrc, originalSrc, fullSizeWidth, true)}\r\n
\r\n
\r\n \r\n );\r\n };\r\n\r\n getSrcForImage = (): string => {\r\n const { src, isSmallImageCreated } = this.props;\r\n\r\n if (!isSmallImageCreated) {\r\n return src;\r\n }\r\n\r\n return `${src}&isSmall=true`;\r\n };\r\n\r\n renderDocumentItem = (imageSrc: string, pdfSrc: string, width: number, allPages: boolean): JSX.Element => {\r\n const { fileType } = this.props;\r\n\r\n return fileType === CONSTANTS.FILE_TYPE.PDF ? this.renderPDF(pdfSrc, width, allPages) : this.renderImage(imageSrc);\r\n };\r\n\r\n render(): JSX.Element {\r\n const { fileType, src, withoutDocumentPreview, buttonCustomTitle, className, classes, i18next, tooltip } =\r\n this.props;\r\n\r\n if (!src || !fileType) {\r\n return <>>;\r\n }\r\n\r\n const { errorImg } = this.state;\r\n\r\n const buttonBody = buttonCustomTitle ? (\r\n buttonCustomTitle\r\n ) : (\r\n <>\r\n
\r\n {i18next.t(keyMap.documentOpenFullSize)}\r\n >\r\n );\r\n\r\n return (\r\n
\r\n {!withoutDocumentPreview &&\r\n this.renderDocumentItem(this.getSrcForImage(), src, DOCUMENT_WIDTH_SMALL_SIZE, false)}\r\n {this.renderOriginalDocument()}\r\n\r\n {!errorImg && (\r\n this.showOriginal(src, true)}\r\n title={tooltip && i18next.t(tooltip as KeyMapKeys)}>\r\n {buttonBody}\r\n \r\n )}\r\n
\r\n );\r\n }\r\n}\r\n\r\nconst DocumentViewWithContext = connectToContext(DocumentView);\r\n\r\nexport { DocumentViewWithContext as DocumentView };\r\n","import React from 'react';\r\nimport { AsyncDocuments } from '@components-shared/DocumentsViewer/interfaces';\r\nimport {\r\n ColumnValueType,\r\n DetailsTableDataCommonType,\r\n IDetailsTableColumn,\r\n} from '@components-shared/detailsTable/types';\r\nimport ENUM_CONSTANTS from '@components-shared/enum.constants';\r\nimport { FormattedDateTime } from '@components-shared/formattedDateTime';\r\nimport { keyMap } from '@locales/lokalise/keyMap';\r\nimport { getTableLabel, getValueFromEnums } from '@utils/helper';\r\n\r\nexport const DOC_VIEW_DESCRIPTION_COLUMNS: Array
> = [\r\n {\r\n key: 'createdOn',\r\n name: keyMap.sharedFieldsCreatedOn,\r\n render: (data: DetailsTableDataCommonType, value: ColumnValueType): JSX.Element => {\r\n return ;\r\n },\r\n },\r\n {\r\n key: 'type',\r\n name: keyMap.sharedFieldsType,\r\n render: (data: DetailsTableDataCommonType, value: ColumnValueType) =>\r\n value && getValueFromEnums(value, ENUM_CONSTANTS.DOCUMENT_TYPE),\r\n },\r\n {\r\n key: 'subType',\r\n name: keyMap.sharedFieldsSubtype,\r\n render: (data: DetailsTableDataCommonType, value: ColumnValueType) =>\r\n value && getValueFromEnums(value, ENUM_CONSTANTS.DOCUMENT_SUB_TYPE),\r\n },\r\n {\r\n key: 'documentNumber',\r\n name: keyMap.settingsDocsFormDocumentNumber,\r\n },\r\n {\r\n key: 'status',\r\n name: keyMap.commonStatus,\r\n render: (data: DetailsTableDataCommonType, value: ColumnValueType) =>\r\n value && getTableLabel(value, ENUM_CONSTANTS.DOCUMENT_STATUS),\r\n },\r\n];\r\n","var _path, _path2;\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\nimport * as React from \"react\";\nimport { forwardRef } from \"react\";\nvar SvgUploadsvgrIcon = function SvgUploadsvgrIcon(props, ref) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: \"1em\",\n height: \"1em\",\n fill: \"currentColor\",\n viewBox: \"0 0 16 16\",\n ref: ref\n }, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#currentColor\",\n d: \"m8.706.294 4 4a1 1 0 1 1-1.414 1.414L9 3.413V10a.999.999 0 1 1-2 0V3.413L4.707 5.706a1 1 0 1 1-1.414-1.414l4-4a1 1 0 0 1 1.413.002\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#currentColor\",\n d: \"M13 11v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-2a1 1 0 0 0-2 0v2a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-2a1 1 0 0 0-2 0\",\n opacity: 0.4\n })));\n};\nvar ForwardRef = /*#__PURE__*/forwardRef(SvgUploadsvgrIcon);\nexport default ForwardRef;","import React from 'react';\r\nimport { IIcon, useIconProps } from '../useIconProps';\r\nimport UploadSvgIcon from './upload.svgrIcon.svg';\r\n\r\nexport const UploadIcon = React.forwardRef(({ ...props }: IIcon, ref) => {\r\n const iconProps = useIconProps({\r\n ref,\r\n size: 20,\r\n ...props,\r\n });\r\n\r\n return ;\r\n});\r\n","import React, { Component } from 'react';\r\nimport Dropzone from 'react-dropzone';\r\nimport { withTranslation } from 'react-i18next';\r\nimport { UploadIcon } from '@components-library/Icons/iconsComponents/UploadIcon/UploadIcon';\r\nimport { IDropzoneProps, IDropzoneState } from '@components-shared/DropZone/types';\r\nimport CONSTANTS from '@components-shared/constants';\r\nimport { keyMap, KeyMapKeys } from '@locales/lokalise/keyMap';\r\nimport { fileValidationService } from '@utils/library/fileValidation.service';\r\nimport { fetchApi } from 'api/fetchApi';\r\nimport cn from 'classnames';\r\nimport { FlexiblePreloader } from 'components/shared/preloader';\r\nimport { handleError } from 'utils/errors';\r\nimport { NotificationDialog } from '../modal';\r\n\r\nclass DropZone extends Component {\r\n constructor(props: IDropzoneProps) {\r\n super(props);\r\n this.state = {\r\n loading: false,\r\n };\r\n }\r\n\r\n onDrop = async (files: File[]) => {\r\n const { params, onChange, name, extraApiParams } = this.props;\r\n const file = files[0];\r\n\r\n const isValid = await fileValidationService.isValidFiles(files);\r\n\r\n if (!isValid) {\r\n return;\r\n }\r\n\r\n const { api, onDropHandler, getFileModel, onUploadProgress, onUploadError, onBeforeUploadStarted, disableLoader } =\r\n params || {};\r\n\r\n if (onBeforeUploadStarted) {\r\n onBeforeUploadStarted(file);\r\n }\r\n\r\n if (!file || !api) {\r\n return null;\r\n }\r\n\r\n const uploadApi = extraApiParams\r\n ? api.includes('?')\r\n ? `${api}&${extraApiParams}`\r\n : `${api}?${extraApiParams}`\r\n : api;\r\n\r\n const formData = new FormData();\r\n\r\n formData.append('file', file);\r\n\r\n if (!disableLoader) {\r\n this.setState({ loading: true });\r\n }\r\n\r\n try {\r\n const response = await fetchApi.post(uploadApi, formData, {\r\n headers: { 'content-type': 'multipart/form-data' },\r\n onUploadProgress(progressEvent) {\r\n if (onUploadProgress) {\r\n onUploadProgress(progressEvent);\r\n }\r\n },\r\n });\r\n\r\n if (!disableLoader) {\r\n this.setState({ loading: false });\r\n }\r\n\r\n NotificationDialog.show(keyMap.settingsDocsFormUploadSuccessMessage);\r\n\r\n if (onDropHandler) {\r\n onDropHandler(file, response);\r\n }\r\n\r\n if (getFileModel) {\r\n getFileModel(response);\r\n }\r\n\r\n if (onChange) {\r\n onChange(name);\r\n }\r\n } catch (error) {\r\n if (!disableLoader) {\r\n this.setState({ loading: false });\r\n }\r\n\r\n if (onUploadError) {\r\n onUploadError(error.response.data);\r\n }\r\n\r\n handleError(this.props.t(keyMap.settingsDocsFormUploadErrorMessage), error);\r\n }\r\n };\r\n\r\n render() {\r\n const { loading } = this.state;\r\n const { attributes, hintMessage, accept, maxSize, title, description, t } = this.props;\r\n const acceptString = accept || CONSTANTS.ACCEPTED_FILE_TYPE;\r\n const isDropzoneDisabled = attributes ? attributes.disabled || loading : false;\r\n\r\n return (\r\n \r\n {({ getRootProps, getInputProps, isDragActive, isDragAccept, isDragReject }) => {\r\n const additionalClasses = cn('docs-dropzone__area', {\r\n 'dropzone--active': isDragActive,\r\n 'dropzone--accept': isDragAccept,\r\n 'dropzone--reject': isDragReject,\r\n 'dropzone--disabled': isDropzoneDisabled,\r\n });\r\n\r\n return (\r\n <>\r\n {loading ? (\r\n \r\n ) : (\r\n \r\n
\r\n
\r\n\r\n {title &&
{t(title as KeyMapKeys)}
}\r\n
\r\n\r\n {description &&
{t(description as KeyMapKeys)}
}\r\n\r\n {hintMessage &&
{t(hintMessage as KeyMapKeys)}
}\r\n\r\n
\r\n
\r\n )}\r\n >\r\n );\r\n }}\r\n \r\n );\r\n }\r\n}\r\n\r\nexport default withTranslation()(DropZone);\r\n","import React from 'react';\r\nimport { useTranslation } from 'react-i18next';\r\nimport 'react-responsive';\r\nimport { DeprecatedFAIcon } from '@components-library/Icons/DeprecatedFAIcon';\r\nimport { SvgIcon } from '@components-library/Icons/SvgIcon';\r\nimport { DEPRECATED_FA_GLOBAL_SPRITE } from '@components-library/Icons/interfaces';\r\nimport { TextCollapse } from '@components-library/TextCollapse';\r\nimport { keyMap } from '@locales/lokalise/keyMap';\r\nimport { copyToClipboard } from '@utils/helper';\r\nimport errorImage from 'assets/error-image.withAttrs.svg';\r\nimport styles from './errorLayout.module.scss';\r\n\r\ninterface IErrorMessage {\r\n message?: string;\r\n stack?: string | null;\r\n}\r\n\r\nexport const ErrorLayout = ({ message, stack }: IErrorMessage) => {\r\n const { i18n } = useTranslation();\r\n const refreshButtonHandler = () => {\r\n window.location.reload();\r\n };\r\n\r\n const copyButtonHandler = () => {\r\n copyToClipboard(`${message ?? ''}\\n${stack ?? ''}`);\r\n };\r\n\r\n return (\r\n \r\n
\r\n
{i18n.t(keyMap.sharedSystemSomethingWentWrong)} \r\n
{i18n.t(keyMap.sharedSystemRefreshPage)}
\r\n
\r\n
\r\n {message && {message}
}\r\n {stack && (\r\n <>\r\n {i18n.t(keyMap.sharedSystemErrorOccurred)} :{stack}
\r\n >\r\n )}\r\n \r\n
\r\n
\r\n \r\n {i18n.t(keyMap.sharedActionsCopy)}\r\n \r\n
\r\n \r\n {i18n.t(keyMap.sharedSystemRefreshButton)}\r\n \r\n
\r\n
\r\n
\r\n
\r\n );\r\n};\r\n","import React, { lazy, Suspense } from 'react';\r\nimport Preloader from '@components-shared/preloader';\r\nimport { IEditorWrapperProps } from './types';\r\n\r\nconst Editor = lazy(() => import(/* webpackChunkName: \"Editor\" */ './HtmlEditor'));\r\nconst PreviewContent = lazy(() => import(/* webpackChunkName: \"PreviewEditorContent\" */ './HtmlEditorPreview'));\r\n\r\nconst HtmlEditorBase = (props: IEditorWrapperProps) => {\r\n const { value, onChange, isNeedPreview } = props;\r\n\r\n return (\r\n \r\n
}>\r\n
\r\n {isNeedPreview &&
}\r\n \r\n
\r\n );\r\n};\r\n\r\nexport default HtmlEditorBase;\r\n","import React, { useEffect } from 'react';\r\nimport { Redirect, Route, RouteProps } from 'react-router-dom';\r\n\r\ntype Props = {\r\n pageTitle: string;\r\n routeIsNotAllowed?: boolean;\r\n} & RouteProps;\r\n\r\nconst RouterWithPageTitle = (props: Props) => {\r\n const { pageTitle, routeIsNotAllowed } = props;\r\n\r\n useEffect(() => {\r\n document.title = pageTitle;\r\n }, [pageTitle]);\r\n\r\n if (routeIsNotAllowed) {\r\n return (\r\n \r\n );\r\n }\r\n\r\n return ;\r\n};\r\n\r\nexport default RouterWithPageTitle;\r\n","import React, { memo, useState } from 'react';\r\nimport { ModalWrapper } from '@components-library/Modals/ModalWrapper';\r\nimport { BaseEditor } from '@components-shared/HtmlEditor';\r\n\r\ninterface IHtmlEditorProps {\r\n onChange: (v: string) => void;\r\n value: string;\r\n title: string;\r\n}\r\nexport const EditableHTMLModal = memo((props: IHtmlEditorProps): JSX.Element => {\r\n const { value, onChange, title } = props;\r\n const [showPopup, setShowPopup] = useState(false);\r\n\r\n const toggleModal = () => {\r\n setShowPopup(!showPopup);\r\n };\r\n\r\n const renderHtmlEditorModal = () => {\r\n return (\r\n \r\n \r\n \r\n );\r\n };\r\n\r\n return (\r\n <>\r\n \r\n {showPopup && renderHtmlEditorModal()}\r\n >\r\n );\r\n});\r\n","import React, { ReactNode, useState } from 'react';\r\nimport ShowIcon from '@assets/icons/show icon.svg';\r\nimport { SvgIcon } from '@components-library/Icons/SvgIcon';\r\nimport cn from 'classnames';\r\n\r\ninterface IInputProps {\r\n name: string;\r\n label: string;\r\n value: string | null;\r\n required: boolean;\r\n pattern?: string;\r\n errorMessage?: string;\r\n disabled?: boolean;\r\n canToggleMask?: boolean;\r\n maskable?: boolean;\r\n onChange: (e: React.ChangeEvent, map?: Record) => void;\r\n hint?: ReactNode;\r\n cssClass: string;\r\n}\r\n\r\nexport const Input = ({\r\n name,\r\n label,\r\n value,\r\n required,\r\n pattern,\r\n errorMessage,\r\n disabled = false,\r\n maskable = false,\r\n canToggleMask,\r\n onChange,\r\n hint,\r\n cssClass,\r\n}: IInputProps) => {\r\n const [showPassword, setShowPassword] = useState(false);\r\n\r\n const inputType = maskable && !showPassword ? 'password' : 'text';\r\n\r\n return (\r\n \r\n \r\n {label}\r\n {required && * }\r\n {hint && {hint} }\r\n \r\n \r\n onChange(e, {\r\n patternMismatch: errorMessage || '',\r\n })\r\n }\r\n required={required}\r\n pattern={pattern}\r\n disabled={disabled}\r\n />\r\n {canToggleMask && maskable && (\r\n setShowPassword(!showPassword)}>\r\n \r\n \r\n )}\r\n \r\n );\r\n};\r\n","import React, { useCallback, useMemo, useRef, useState } from 'react';\r\nimport { Select, Spin } from 'antd';\r\nimport { SelectProps } from 'antd/es/select';\r\nimport { fetchApi } from 'api/fetchApi';\r\nimport { debounce } from 'lodash-es';\r\nimport { handleError } from 'utils/errors';\r\nimport { ISelectOption } from './types';\r\n\r\nexport interface AsyncSelectProps extends Omit, 'options' | 'children'> {\r\n name: string;\r\n required: boolean;\r\n take: number;\r\n callbackUrl: string;\r\n searchUrl: string;\r\n amountOfSymbolsForSearchStart: number;\r\n debounceTimeout?: number;\r\n onSetChange: (\r\n name: string,\r\n value: Array | Record | ISelectOption,\r\n callbackUrl: string,\r\n ) => void;\r\n}\r\n\r\nconst MAX_LENGTH = 64;\r\n\r\nexport const AsyncSelect = ({\r\n name,\r\n required,\r\n take,\r\n callbackUrl,\r\n searchUrl,\r\n debounceTimeout = 800,\r\n amountOfSymbolsForSearchStart,\r\n onSetChange,\r\n ...props\r\n}: AsyncSelectProps) => {\r\n const [fetching, setFetching] = useState(false);\r\n const [options, setOptions] = useState([]);\r\n const fetchRef = useRef(0);\r\n\r\n const debounceFetcher = useMemo(() => {\r\n const loadOptions = async (value: string) => {\r\n if (value.length < amountOfSymbolsForSearchStart) return;\r\n\r\n fetchRef.current += 1;\r\n const fetchId = fetchRef.current;\r\n\r\n setOptions([]);\r\n setFetching(true);\r\n\r\n try {\r\n if (fetchId !== fetchRef.current) {\r\n // for fetch callback order\r\n return;\r\n }\r\n\r\n const { data } = await fetchApi.get(`${searchUrl}?search=${value}&take=${take}&skip=0`);\r\n\r\n setOptions(data);\r\n setFetching(false);\r\n } catch (error) {\r\n handleError('Failed to fetch options', error);\r\n }\r\n };\r\n\r\n return debounce(loadOptions, debounceTimeout);\r\n }, [callbackUrl, debounceTimeout]);\r\n\r\n const handleSelect = useCallback((option: ISelectOption) => {\r\n onSetChange(name, option, callbackUrl);\r\n }, []);\r\n\r\n return (\r\n : null}\r\n {...props}\r\n options={options}\r\n onSelect={handleSelect}\r\n />\r\n );\r\n};\r\n","import React, { Component, createRef, RefObject, ChangeEvent, KeyboardEvent } from 'react';\r\nimport { X } from 'react-feather';\r\nimport cn from 'classnames';\r\nimport type { InputEvent } from './set';\r\n\r\ninterface IProps {\r\n autoFocus?: boolean;\r\n onChange?: (e: ChangeEvent) => void;\r\n value?: string;\r\n defaultValue?: string;\r\n onBlur: (e: InputEvent) => void;\r\n onKeyDown: (e: KeyboardEvent, i?: number) => void;\r\n onClear?: () => void;\r\n required?: boolean;\r\n type: string;\r\n key?: number;\r\n className?: string;\r\n}\r\n\r\ninterface IState {\r\n valid: boolean;\r\n}\r\n\r\nclass AutoresizableInput extends Component {\r\n state = { valid: true };\r\n\r\n input: RefObject = createRef();\r\n\r\n componentDidMount() {\r\n const { autoFocus } = this.props;\r\n\r\n this.autoResize();\r\n if (autoFocus) {\r\n this.input.current?.focus();\r\n }\r\n }\r\n\r\n onChange = (e: ChangeEvent) => {\r\n const { onChange } = this.props;\r\n\r\n this.autoResize();\r\n if (onChange) {\r\n onChange(e);\r\n }\r\n };\r\n\r\n get value() {\r\n return this.input.current?.value;\r\n }\r\n\r\n autoResize() {\r\n if (this.input && this.input.current) {\r\n const inputRef = this.input.current;\r\n const scrollWidthOffset = 6;\r\n\r\n inputRef.style.width = '0';\r\n let newWidth = inputRef.scrollWidth + scrollWidthOffset;\r\n\r\n if (inputRef.scrollWidth >= inputRef.clientWidth) newWidth += scrollWidthOffset;\r\n inputRef.style.width = `${newWidth}px`;\r\n }\r\n }\r\n\r\n render() {\r\n const { value, defaultValue, onBlur, onKeyDown, onClear, required } = this.props;\r\n const { valid } = this.state;\r\n const isRequired = required ?? false;\r\n\r\n return (\r\n \r\n \r\n {onClear && (\r\n \r\n \r\n \r\n )}\r\n \r\n );\r\n }\r\n}\r\n\r\nexport default AutoresizableInput;\r\n","import React from 'react';\r\nimport { Cron } from 'react-js-cron';\r\nimport 'react-js-cron/dist/styles.css';\r\nimport { EventTarget } from './types';\r\n\r\ninterface IProps {\r\n value: string;\r\n name: string;\r\n onChange: (e: EventTarget) => void;\r\n disabled: boolean;\r\n}\r\n\r\nexport function CronExpressionEditor(props: IProps) {\r\n const setValue = (expression: string) => {\r\n const e = { target: { name: props.name, value: expression } };\r\n\r\n props.onChange(e);\r\n };\r\n\r\n return (\r\n \r\n {props.value} \r\n \r\n
\r\n );\r\n}\r\n","import React, { Component, ReactNode } from 'react';\r\nimport Datetime from 'react-datetime';\r\nimport { CONSTANTS } from 'components/shared/constants';\r\nimport moment, { Moment } from 'moment';\r\nimport { EventTarget, Attributes } from './types';\r\n\r\ninterface IProps {\r\n value: string;\r\n utc?: boolean;\r\n type?: string;\r\n name: string;\r\n onChange: (e: EventTarget) => void;\r\n attributes: Attributes;\r\n className?: string;\r\n required: boolean;\r\n}\r\n\r\nclass DatetimePicker extends Component {\r\n defaultValue: Moment;\r\n\r\n dateTimeRef: React.RefObject;\r\n\r\n constructor(props: IProps) {\r\n super(props);\r\n const { value, utc = true } = this.props;\r\n\r\n this.defaultValue = utc ? moment.utc(value) : moment(value);\r\n this.dateTimeRef = React.createRef();\r\n }\r\n\r\n onChange = (value: string | Moment): void => {\r\n const { type, name, onChange } = this.props;\r\n const e = { target: { type, name, value } };\r\n\r\n if (typeof value === 'string' || value instanceof String) {\r\n this.dateTimeRef.current?.setCustomValidity('Invalid date');\r\n } else {\r\n this.dateTimeRef.current?.setCustomValidity('');\r\n }\r\n\r\n onChange(e as EventTarget);\r\n };\r\n\r\n renderInput(props: object) {\r\n return ;\r\n }\r\n\r\n render(): ReactNode {\r\n const { name, required, attributes, utc = true } = this.props;\r\n const { dateTimeFormat = {}, disabled = false } = attributes;\r\n const { DATE_FORMAT, TIME_FORMAT } = CONSTANTS;\r\n const { dateFormat = DATE_FORMAT, timeFormat = TIME_FORMAT } = dateTimeFormat;\r\n\r\n const currentDateFormat = dateFormat === null ? false : DATE_FORMAT;\r\n const currentTimeFormat = timeFormat === null ? false : TIME_FORMAT;\r\n\r\n return (\r\n \r\n );\r\n }\r\n}\r\n\r\nexport default DatetimePicker;\r\n","import React, { Component } from 'react';\r\nimport { fetchApi } from 'api/fetchApi';\r\nimport { handleError } from 'utils/errors';\r\nimport { Select } from './select';\r\nimport { Attributes, EventTarget } from './types';\r\n\r\ninterface IProps {\r\n name: string;\r\n value: string;\r\n attributes: Attributes;\r\n disabled: boolean;\r\n required: boolean;\r\n onChange: (e: EventTarget) => void;\r\n onSetChange: (name: string, value: Array | Record) => void;\r\n getLabel: (attributes: Attributes, key: string) => string;\r\n}\r\n\r\ninterface IState {\r\n options: Array<{ key: number; name: string }>;\r\n disabled: boolean;\r\n}\r\n\r\nclass DynamicDropdown extends Component {\r\n state: IState = {\r\n options: [],\r\n disabled: true,\r\n };\r\n\r\n componentDidMount() {\r\n void this.getOptions();\r\n }\r\n\r\n getOptions = async () => {\r\n const { attributes, disabled } = this.props;\r\n const { dynamicDroppdownSetting = {}, disabled: disabledField } = attributes;\r\n\r\n if (!dynamicDroppdownSetting.remoteUrl) {\r\n return false;\r\n }\r\n\r\n try {\r\n const response = await fetchApi.post>(dynamicDroppdownSetting.remoteUrl);\r\n\r\n const options = response.data.map((o) => ({ name: o.name, key: o.id }));\r\n\r\n this.setState({ options, disabled: !!disabled || !!disabledField });\r\n } catch (error) {\r\n handleError('Failed to fetch user details', error);\r\n }\r\n };\r\n\r\n render() {\r\n const { disabled: disabledForm, required } = this.props;\r\n const { options, disabled } = this.state;\r\n\r\n return (\r\n \r\n );\r\n }\r\n}\r\n\r\nexport default DynamicDropdown;\r\n","import React, { Component } from 'react';\r\nimport { ChevronRight } from 'react-feather';\r\nimport { Input } from '@components-shared/configConstructor/Input';\r\nimport { fetchApi } from 'api/fetchApi';\r\nimport cn from 'classnames';\r\nimport { AsyncSelect } from 'components/shared/configConstructor/asyncSelect';\r\nimport { GENERAL_CONSTANTS } from 'components/shared/general.constants';\r\nimport { EmptyObject } from 'components/shared/shared.interfaces';\r\nimport { merge } from 'lodash-es';\r\nimport { observer } from 'mobx-react';\r\nimport { mobxStore } from 'store/mobx';\r\nimport { handleError } from 'utils/errors';\r\nimport { CcDataType } from '.';\r\nimport { CronExpressionEditor } from './cronExpressionEditor';\r\nimport DatetimePicker from './datetimepicker';\r\nimport DynamicDropdown from './dynamicDropdown';\r\nimport FileSourceInput from './fileSourceInput';\r\nimport InputsTable from './inputsTable';\r\nimport PhoneInput from './phoneInputConstructorForm';\r\nimport { Select } from './select';\r\nimport StringSet from './set';\r\nimport StringMap from './stringMap';\r\nimport { Attributes, EventTarget, Option, InputsTableValues, AsyncSelectSettings, ISelectOption } from './types';\r\nimport {\r\n isInteger,\r\n isFloatingPointNumber,\r\n isNullableInteger,\r\n orderValue,\r\n isNullableFloatingPointNumber,\r\n} from './utils';\r\n\r\ntype FieldValue = string | number | boolean | Array | InputsTableValues | Array | null;\r\n\r\ninterface IProps {\r\n attributes?: Attributes;\r\n data: CcDataType | EmptyObject;\r\n name: string;\r\n members: Array;\r\n getter: Array;\r\n changeForm?: (data: CcDataType | EmptyObject) => void;\r\n disabledForm?: boolean;\r\n defaultExpanded?: boolean;\r\n hasAccessToGetUnmasked?: boolean;\r\n}\r\n\r\ninterface IState {\r\n expanded: boolean;\r\n}\r\n\r\nclass Fieldset extends Component, IState> {\r\n static get(obj: Record, path: Array) {\r\n return path.reduce((xs, x) => (xs && xs[x] != null ? xs[x] : null), obj);\r\n }\r\n\r\n state = {\r\n expanded: this.getExpandedAttributes(),\r\n };\r\n\r\n get sortedMembers() {\r\n return (this.props.members || []).sort((a, b) => orderValue(a) - orderValue(b));\r\n }\r\n\r\n mobxAccountStore = mobxStore.accountStore;\r\n\r\n mobxAppSettingStore = mobxStore.appSettingStore;\r\n\r\n getExpandedAttributes() {\r\n const { attributes = {} } = this.props;\r\n const { expanded = true } = attributes;\r\n\r\n return expanded;\r\n }\r\n\r\n onChange = (e: EventTarget, map?: Record) => {\r\n const { name, value, checked, type } = e.target;\r\n const { data, getter, changeForm } = this.props;\r\n\r\n // @ts-ignore\r\n const part = Fieldset.get(data, getter);\r\n\r\n part[name] = type === 'checkbox' ? checked : value;\r\n\r\n changeForm && changeForm({ ...data });\r\n this.replaceErrorMessage(e, map);\r\n };\r\n\r\n replaceErrorMessage = (e: EventTarget, map?: Record) => {\r\n if (map) {\r\n Object.keys(map).forEach((errorType) => {\r\n if (e.target.validity?.[errorType as keyof ValidityState]) {\r\n e.target.setCustomValidity?.(map[errorType]);\r\n } else {\r\n e.target.setCustomValidity?.('');\r\n }\r\n });\r\n }\r\n };\r\n\r\n toggle = (isExpandable: boolean) => {\r\n if (!isExpandable) {\r\n return;\r\n }\r\n\r\n this.setState((prevState) => ({ expanded: !prevState.expanded }));\r\n };\r\n\r\n onSetChange = async (\r\n name: string,\r\n value: Array | Record | ISelectOption,\r\n callbackUrl?: string,\r\n ) => {\r\n const { data, getter, changeForm } = this.props;\r\n\r\n // @ts-ignore\r\n const part = Fieldset.get(data, getter);\r\n\r\n part[name] = value;\r\n\r\n if (callbackUrl) {\r\n try {\r\n const response = await fetchApi.get(callbackUrl, {\r\n params: { value: (value as ISelectOption).value },\r\n });\r\n\r\n changeForm && changeForm(merge(data, response.data));\r\n\r\n return;\r\n } catch (error) {\r\n handleError('Failed to fetch options', error);\r\n }\r\n }\r\n\r\n changeForm && changeForm({ ...data });\r\n };\r\n\r\n getLabel = (attributes: Attributes, name: string) => {\r\n const { i18next } = this.mobxAppSettingStore;\r\n const { language } = i18next;\r\n\r\n const {\r\n generalSettings: { brokerParams = {} },\r\n } = this.mobxAccountStore;\r\n\r\n const lang = this.getLanguage(language);\r\n let label = name;\r\n\r\n if (attributes && attributes.localization) {\r\n label = attributes.localization[lang] || attributes.localization.default || name;\r\n }\r\n\r\n if (label && label.includes('brokerName')) {\r\n const brokerName = brokerParams[language]?.brokerName;\r\n\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n label = i18next.t(label as any, { brokerName });\r\n }\r\n\r\n return label;\r\n };\r\n\r\n getHint = (attributes: Attributes) => {\r\n const { i18next } = this.mobxAppSettingStore;\r\n const { language } = i18next;\r\n\r\n const { hint } = attributes;\r\n\r\n if (!hint) {\r\n return null;\r\n }\r\n\r\n const lang = this.getLanguage(language);\r\n const hintMessage = hint[lang] || hint.default || hint.name;\r\n\r\n return {hintMessage} ;\r\n };\r\n\r\n getLanguage = (language: string) => {\r\n return language && language.split('-')[0];\r\n };\r\n\r\n getJsonPropertyName = ({ attributes, name }: Option) => {\r\n if (attributes?.jsonProperty?.propertyName) {\r\n return attributes.jsonProperty.propertyName;\r\n }\r\n\r\n return name;\r\n };\r\n\r\n render() {\r\n const {\r\n name,\r\n data,\r\n getter: parentGetter,\r\n changeForm,\r\n attributes = {},\r\n disabledForm,\r\n hasAccessToGetUnmasked = false,\r\n } = this.props;\r\n const { expanded } = this.state;\r\n\r\n const isExpandable = typeof attributes.expanded !== 'undefined';\r\n\r\n return (\r\n \r\n \r\n