Interface UseCommentReturn

Interface representing the return type of the UseComment hook.

Hierarchy

  • Partial<CommentType>
    • UseCommentReturn

Properties

body?: string
comment: null | CommentType

The current comment object. Contains details like body, state, and ID.

commentBody: string

Deprecated

use body instead

commentId: string

Deprecated

use id instead

commentOwnerId: string

Deprecated

use ownerId instead

commentState: string

Deprecated

use state instead

createApproveComment: CommentCreateStudioMethod

Function to create a comment in an approved state (studio accepted).

createComment: CommentCreateMethod

Function to create a new comment (public state).

createRejectComment: CommentCreateStudioMethod

Function to create a comment in a rejected state (studio rejected).

createdAt?: string
deleteComment: CommentDeleteMethod

Function to delete the current comment.

editComment: CommentEditMethod

Function to edit the body of the current comment.

fetched: boolean

Boolean indicating whether the comment data has been fetched successfully.

hideComment: CommentHideMethod

Function to hide the current comment by setting its state to "hidden".

id?: string
moderateComment: Function

Deprecated

use hideComment instead

ownerId?: string

Function to refresh the comment data by fetching it again from the API.

state?: CommentStateEnum
submissionId?: string

Generated using TypeDoc