signal-desktop/ts/components/GroupDescriptionInput.tsx

33 lines
811 B
TypeScript
Raw Normal View History

2021-06-02 00:24:28 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2021-07-19 19:26:06 +00:00
import React, { forwardRef } from 'react';
2021-06-02 00:24:28 +00:00
2021-07-19 19:26:06 +00:00
import { Input } from './Input';
2021-06-02 00:24:28 +00:00
import { LocalizerType } from '../types/Util';
type PropsType = {
disabled?: boolean;
i18n: LocalizerType;
onChangeValue: (value: string) => void;
value: string;
};
2021-07-19 19:26:06 +00:00
export const GroupDescriptionInput = forwardRef<HTMLInputElement, PropsType>(
2021-06-02 00:24:28 +00:00
({ i18n, disabled = false, onChangeValue, value }, ref) => {
return (
2021-07-19 19:26:06 +00:00
<Input
disabled={disabled}
expandable
i18n={i18n}
onChange={onChangeValue}
placeholder={i18n('setGroupMetadata__group-description-placeholder')}
maxLengthCount={256}
2021-07-19 19:26:06 +00:00
ref={ref}
value={value}
whenToShowRemainingCount={150}
/>
2021-06-02 00:24:28 +00:00
);
}
);