mirror of
				https://github.com/scm-manager/scm-manager.git
				synced 2025-11-03 20:15:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			116 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/*
 | 
						|
 * MIT License
 | 
						|
 *
 | 
						|
 * Copyright (c) 2020-present Cloudogu GmbH and Contributors
 | 
						|
 *
 | 
						|
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
						|
 * of this software and associated documentation files (the "Software"), to deal
 | 
						|
 * in the Software without restriction, including without limitation the rights
 | 
						|
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
						|
 * copies of the Software, and to permit persons to whom the Software is
 | 
						|
 * furnished to do so, subject to the following conditions:
 | 
						|
 *
 | 
						|
 * The above copyright notice and this permission notice shall be included in all
 | 
						|
 * copies or substantial portions of the Software.
 | 
						|
 *
 | 
						|
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
						|
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
						|
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
						|
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
						|
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
						|
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 | 
						|
 * SOFTWARE.
 | 
						|
 */
 | 
						|
 | 
						|
import React, { FC, useState } from "react";
 | 
						|
import styled from "styled-components";
 | 
						|
import InputField from "./InputField";
 | 
						|
import { AddButton } from "../buttons";
 | 
						|
 | 
						|
type Props = {
 | 
						|
  addEntry: (key: string, value: string) => void;
 | 
						|
  disabled?: boolean;
 | 
						|
  buttonLabel: string;
 | 
						|
  keyFieldLabel: string;
 | 
						|
  valueFieldLabel: string;
 | 
						|
  errorMessage?: string;
 | 
						|
  keyHelpText?: string;
 | 
						|
  valueHelpText?: string;
 | 
						|
  validateEntry?: (p: string) => boolean;
 | 
						|
};
 | 
						|
 | 
						|
const InputLevel = styled.div`
 | 
						|
  display: flex;
 | 
						|
  justify-content: space-between;
 | 
						|
`;
 | 
						|
 | 
						|
const StyledInputField = styled(InputField)`
 | 
						|
  margin-right: 1.5rem;
 | 
						|
  width: 100%;
 | 
						|
`;
 | 
						|
 | 
						|
const MarginTopButton = styled(AddButton)`
 | 
						|
  margin-top: 2rem;
 | 
						|
`;
 | 
						|
 | 
						|
const AddKeyValueEntryToTableField: FC<Props> = ({
 | 
						|
  keyFieldLabel,
 | 
						|
  valueFieldLabel,
 | 
						|
  disabled,
 | 
						|
  buttonLabel,
 | 
						|
  keyHelpText,
 | 
						|
  valueHelpText,
 | 
						|
  validateEntry,
 | 
						|
  errorMessage,
 | 
						|
  addEntry
 | 
						|
}) => {
 | 
						|
  const [key, setKey] = useState("");
 | 
						|
  const [value, setValue] = useState("");
 | 
						|
 | 
						|
  const isValid = (input: string) => {
 | 
						|
    if (!input || !validateEntry) {
 | 
						|
      return true;
 | 
						|
    } else {
 | 
						|
      return validateEntry(input);
 | 
						|
    }
 | 
						|
  };
 | 
						|
 | 
						|
  const add = () => {
 | 
						|
    addEntry(key, value);
 | 
						|
    setKey("")
 | 
						|
    setValue("");
 | 
						|
  }
 | 
						|
 | 
						|
  return (
 | 
						|
    <InputLevel>
 | 
						|
      <StyledInputField
 | 
						|
        label={keyFieldLabel}
 | 
						|
        errorMessage={errorMessage}
 | 
						|
        onChange={setKey}
 | 
						|
        validationError={!isValid(key)}
 | 
						|
        value={key}
 | 
						|
        onReturnPressed={add}
 | 
						|
        disabled={disabled}
 | 
						|
        helpText={keyHelpText}
 | 
						|
      />
 | 
						|
      <StyledInputField
 | 
						|
        label={valueFieldLabel}
 | 
						|
        errorMessage={errorMessage}
 | 
						|
        onChange={setValue}
 | 
						|
        validationError={!isValid(value)}
 | 
						|
        value={value}
 | 
						|
        onReturnPressed={add}
 | 
						|
        disabled={disabled}
 | 
						|
        helpText={valueHelpText}
 | 
						|
      />
 | 
						|
      <MarginTopButton
 | 
						|
        label={buttonLabel}
 | 
						|
        action={add}
 | 
						|
        disabled={disabled || !key || !value || !isValid(key) || !isValid(value)}
 | 
						|
      />
 | 
						|
    </InputLevel>
 | 
						|
  );
 | 
						|
};
 | 
						|
 | 
						|
export default AddKeyValueEntryToTableField;
 |