blob: b2defda6a8a59d06be524ed5f050c52e1a1528be [file] [log] [blame]
/*
* 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 type { Intent } from '@blueprintjs/core';
import { Button, Popover, Position, TextArea } from '@blueprintjs/core';
import { IconNames } from '@blueprintjs/icons';
import classNames from 'classnames';
import React, { useState } from 'react';
import { compact } from '../../utils';
import type { Suggestion } from '../suggestion-menu/suggestion-menu';
import { SuggestionMenu } from '../suggestion-menu/suggestion-menu';
import './array-input.scss';
export interface ArrayInputProps {
className?: string;
values: string[] | undefined;
onChange: (newValues: string[] | undefined) => void;
placeholder?: string;
large?: boolean;
disabled?: boolean;
intent?: Intent;
suggestions?: Suggestion[];
}
export const ArrayInput = React.memo(function ArrayInput(props: ArrayInputProps) {
const { className, values, placeholder, large, disabled, intent, onChange, suggestions } = props;
const [intermediateValue, setIntermediateValue] = useState<string | undefined>();
const handleChange = (e: any) => {
const stringValue = e.target.value;
setIntermediateValue(stringValue);
onChange(
stringValue === ''
? undefined
: compact(stringValue.split(/[,\s]+/).map((v: string) => v.trim())),
);
};
function handleSuggestionSelect(suggestion: undefined | string) {
if (!suggestion) return;
onChange((values || []).concat([suggestion]));
}
return (
<div className={classNames('array-input', className)}>
<TextArea
className={className}
value={
typeof intermediateValue !== 'undefined' ? intermediateValue : values?.join(', ') || ''
}
onChange={handleChange}
onBlur={() => setIntermediateValue(undefined)}
placeholder={placeholder}
large={large}
disabled={disabled}
intent={intent}
fill
/>
{suggestions && (
<Popover
className="suggestion-button"
content={<SuggestionMenu suggestions={suggestions} onSuggest={handleSuggestionSelect} />}
position={Position.BOTTOM_RIGHT}
autoFocus={false}
>
<Button icon={IconNames.PLUS} minimal />
</Popover>
)}
</div>
);
});