Skip to content

Commit 5375616

Browse files
committed
fix: allow to pass minRows prop to MessageInput
1 parent 6cb81c5 commit 5375616

File tree

5 files changed

+23
-1
lines changed

5 files changed

+23
-1
lines changed

docusaurus/docs/React/components/contexts/message-input-context.mdx

+8
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,14 @@ If provided, the existing message will be edited on submit.
350350
| ------ |
351351
| object |
352352

353+
### minRows
354+
355+
Min number of rows the underlying `textarea` will start with. The [`grow`](./#grow) on MessageInput prop has to be enabled for `minRows` to take effect.
356+
357+
| Type | Default |
358+
| ------ | ------- |
359+
| number | 1 |
360+
353361
### noFiles
354362

355363
If true, disables file uploads for all attachments except for those with type 'image'.

docusaurus/docs/React/components/message-input-components/message-input.mdx

+9-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ If true, expands the text input vertically for new lines.
128128
Allows to hide MessageInput's send button. Used by `MessageSimple` to hide the send button in `EditMessageForm`.
129129

130130
| Type | Default |
131-
|---------|---------|
131+
| ------- | ------- |
132132
| boolean | false |
133133

134134
### Input
@@ -171,6 +171,14 @@ If provided, the existing message will be edited on submit.
171171
| ------ |
172172
| object |
173173

174+
### minRows
175+
176+
Min number of rows the underlying `textarea` will start with. The [`grow`](./#grow) on MessageInput prop has to be enabled for `minRows` to take effect.
177+
178+
| Type | Default |
179+
| ------ | ------- |
180+
| number | 1 |
181+
174182
### noFiles
175183

176184
If true, disables file uploads for all attachments except for those with type 'image'.

src/components/ChatAutoComplete/ChatAutoComplete.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ const UnMemoizedChatAutoComplete = <
181181
loadingComponent={LoadingIndicator}
182182
maxRows={messageInput.maxRows}
183183
minChar={0}
184+
minRows={messageInput.minRows}
184185
onBlur={props.onBlur}
185186
onChange={props.onChange || messageInput.handleChange}
186187
onFocus={props.onFocus}

src/components/MessageInput/MessageInput.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ export type MessageInputProps<
9494
mentionQueryParams?: SearchQueryParams<StreamChatGenerics>['userFilters'];
9595
/** If provided, the existing message will be edited on submit */
9696
message?: StreamMessage<StreamChatGenerics>;
97+
/** Min number of rows the underlying `textarea` will start with. The `grow` on MessageInput prop has to be enabled for `minRows` to take effect. */
98+
minRows?: number;
9799
/** If true, disables file uploads for all attachments except for those with type 'image'. Default: false */
98100
noFiles?: boolean;
99101
/** Function to override the default submit handler */

src/components/MessageInput/hooks/useCreateMessageInputContext.ts

+3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export const useCreateMessageInputContext = <
4747
mentioned_users,
4848
mentionQueryParams,
4949
message,
50+
minRows,
5051
noFiles,
5152
numberOfUploads,
5253
onPaste,
@@ -127,6 +128,7 @@ export const useCreateMessageInputContext = <
127128
mentioned_users,
128129
mentionQueryParams,
129130
message,
131+
minRows,
130132
noFiles,
131133
numberOfUploads,
132134
onPaste,
@@ -172,6 +174,7 @@ export const useCreateMessageInputContext = <
172174
isUploadEnabled,
173175
linkPreviewsValue,
174176
mentionedUsersLength,
177+
minRows,
175178
parentId,
176179
publishTypingEvent,
177180
recordingController,

0 commit comments

Comments
 (0)