moderator-toolbox-nxg-for-reddit / store/textFeedbackSlice

store/textFeedbackSlice

Interfaces

ShowTextFeedbackPayload

Defined in: extension/data/store/textFeedbackSlice.ts:23

Payload for the showTextFeedback action.

Extends

Properties

duration?

optional duration?: number

Defined in: extension/data/store/textFeedbackSlice.ts:25

How long (ms) to show the message before auto-dismissing. Defaults to 3000.

kind

Defined in: extension/data/store/textFeedbackSlice.ts:19

Inherited from

TextFeedback.kind

message

message: string

Defined in: extension/data/store/textFeedbackSlice.ts:18

Inherited from

TextFeedback.message


TextFeedback

Defined in: extension/data/store/textFeedbackSlice.ts:17

A transient text-feedback message shown to the user.

Extended by

Properties

kind

Defined in: extension/data/store/textFeedbackSlice.ts:19

message

message: string

Defined in: extension/data/store/textFeedbackSlice.ts:18

Variables

clearTextFeedback

clearTextFeedback: ActionCreatorWithoutPayload<"textFeedback/clearTextFeedback">

Defined in: extension/data/store/textFeedbackSlice.ts:55


default

default: Reducer<TextFeedbackState>

Defined in: node_modules/@reduxjs/toolkit/dist/index.d.mts:1533

The slice’s reducer.


showTextFeedback

showTextFeedback: ActionCreatorWithPayload<ShowTextFeedbackPayload, "textFeedback/showTextFeedback">

Defined in: extension/data/store/textFeedbackSlice.ts:55


textFeedbackSlice

const textFeedbackSlice: Slice<TextFeedbackState, { clearTextFeedback: void; showTextFeedback: void; }, "textFeedback", "textFeedback", SliceSelectors<TextFeedbackState>>

Defined in: extension/data/store/textFeedbackSlice.ts:32

Enumerations

TextFeedbackKind

Defined in: extension/data/store/textFeedbackSlice.ts:10

Visual kind of a text feedback message.

Enumeration Members

Negative

Negative: "negative"

Defined in: extension/data/store/textFeedbackSlice.ts:13

Neutral

Neutral: "neutral"

Defined in: extension/data/store/textFeedbackSlice.ts:11

Positive

Positive: "positive"

Defined in: extension/data/store/textFeedbackSlice.ts:12