/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 { Select, SelectGroup, SelectOption, SelectVariant } from "@patternfly/react-core/deprecated"; import * as React from "react"; import { useCallback, useMemo, useRef, useState } from "react"; import { useBoxedExpressionEditorI18n } from "../i18n"; import * as _ from "lodash"; import { DmnBuiltInDataType, DmnDataType } from "../api"; import { useBoxedExpressionEditor } from "../BoxedExpressionEditorContext"; import { Divider } from "@patternfly/react-core/dist/js/components/Divider"; export interface DataTypeSelectorProps { /** The pre-selected data type */ value: string | undefined; /** On DataType selection callback */ onChange: (dataType: string | undefined) => void; /** By default the menu will be appended inline, but it is possible to append on the parent or on other elements */ /** Callback for toggle select behavior */ onToggle?: (isOpen: boolean) => void; /** event fired when the user press a key */ onKeyDown?: (e: React.KeyboardEvent) => void; menuAppendTo?: HTMLElement | "inline" | (() => HTMLElement) | "parent"; } /** This is the optimal height for the dropdown menu for the "Data Type" */ const DEFAULT_SELECT_DATA_TYPE_MENU_HEIGHT = 500; const MININAL_SELECT_DATA_TYPE_MENU_HEIGHT = 70; /** This margin is the height of the status bar in the on-line editor because it can't be overlaped */ const POPUP_BOTTOM_MARGIN = 46; export const DataTypeSelector: React.FunctionComponent = ({ value, onChange, menuAppendTo, onToggle = () => {}, onKeyDown = () => {}, }) => { const { i18n } = useBoxedExpressionEditorI18n(); const { dataTypes } = useBoxedExpressionEditor(); const [isOpen, setOpen] = useState(false); const selectContainerRef = useRef(null); const onSelect = useCallback( (event, selection) => { /* this setTimeout keeps the context menu open after type selection changes. Without this Popover component thinks there has been a click outside the context menu, after DataTypeSelector has changed. This because the Select component has been removed from the html*/ setTimeout(() => setOpen(false), 0); onChange(selection === DmnBuiltInDataType.Undefined ? undefined : selection); // Because Select leave the focus to the detached btn, give back the focus to the selectWrapperRef (selectContainerRef.current?.querySelector("button") as HTMLInputElement)?.focus(); }, [onChange] ); const buildSelectGroup = useCallback( (group: "builtIn" | "custom", options: DmnDataType[]) => { return ( {options.map(({ name }) => ( ))} ); }, [i18n] ); const buildSelectGroups = useCallback(() => { const [customDataTypes, builtInDataTypes] = _.chain(dataTypes).partition("isCustom").value(); if (_.isEmpty(customDataTypes)) { return [buildSelectGroup("builtIn", builtInDataTypes)]; } return [ buildSelectGroup("builtIn", builtInDataTypes), , buildSelectGroup("custom", customDataTypes), ]; }, [buildSelectGroup, dataTypes]); // We should not filter based a JSX Element value, but rather based on the data alone. const onFilter = useCallback( (_, textInput: string) => { if (textInput === "") { return buildSelectGroups(); } return buildSelectGroups().reduce((acc, group) => { const filteredGroup = React.cloneElement(group, { children: group.props?.children?.filter((item: React.ReactElement) => (item.props.value ?? DmnBuiltInDataType.Undefined).toLowerCase().includes(textInput.toLowerCase()) ), }); if (filteredGroup.props?.children?.length > 0) { acc.push(filteredGroup); } return acc; }, [] as JSX.Element[]); }, [buildSelectGroups] ); const onSelectToggle = useCallback( (isOpen) => { setOpen(isOpen); onToggle(isOpen); }, [onToggle] ); const boundingClientRect = selectContainerRef.current?.getBoundingClientRect(); const selectMenuHeight = useMemo(() => { if (boundingClientRect) { const yPos = boundingClientRect.top; const availableHeight = document.documentElement.clientHeight; if ( DEFAULT_SELECT_DATA_TYPE_MENU_HEIGHT <= availableHeight && DEFAULT_SELECT_DATA_TYPE_MENU_HEIGHT + yPos > availableHeight ) { const offset = DEFAULT_SELECT_DATA_TYPE_MENU_HEIGHT + yPos - availableHeight; const calculatedHeight = DEFAULT_SELECT_DATA_TYPE_MENU_HEIGHT - offset - POPUP_BOTTOM_MARGIN; return calculatedHeight < MININAL_SELECT_DATA_TYPE_MENU_HEIGHT ? MININAL_SELECT_DATA_TYPE_MENU_HEIGHT : calculatedHeight; } } return DEFAULT_SELECT_DATA_TYPE_MENU_HEIGHT; }, [boundingClientRect]); return (
); };