CommentService
1. Import the service from our library:
import {CommentService} from "@selfcommunity/api-services";
2. Create a function and put the service inside it!
The async function `getAllComments` will return the paginated list of comments.
async getAllComments() {
return await CommentService.getAllComments();
}
In case of required `params`, just add them inside the brackets.
async getASpecificComment(commentId) {
return await CommentService.getASpecificComment(commentId);
}
If you need to customize the request, you can add optional config params (`AxiosRequestConfig` type).
1. Declare it(or declare them, it is possible to add multiple params)
const headers = headers: {Authorization: `Bearer ${yourToken}`}
2. Add it inside the brackets and pass it to the function, as shown in the previous example!
Constructors
new CommentService()
new CommentService():
CommentService
Returns
Methods
createComment()
static
createComment(data
,config
?):Promise
<SCCommentType
>
Parameters
Parameter | Type |
---|---|
data | CommentCreateParams |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCCommentType
>
Source
deleteComment()
static
deleteComment(id
,config
?):Promise
<any
>
Parameters
Parameter | Type |
---|---|
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<any
>
Source
flagComment()
static
flagComment(id
,flagType
,config
?):Promise
<any
>
Parameters
Parameter | Type |
---|---|
id | string | number |
flagType | SCFlagTypeEnum |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<any
>
Source
getASpecificComment()
static
getASpecificComment(id
,config
?):Promise
<SCCommentType
>
Parameters
Parameter | Type |
---|---|
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCCommentType
>
Source
getAllComments()
static
getAllComments(params
,config
?):Promise
<SCPaginatedResponse
<SCCommentType
>>
Parameters
Parameter | Type |
---|---|
params | CommentListParams |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCCommentType
>>
Source
getSpecificCommentFlagStatus()
static
getSpecificCommentFlagStatus(id
,config
?):Promise
<SCFlagType
>
Parameters
Parameter | Type |
---|---|
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCFlagType
>
Source
getSpecificCommentFlags()
static
getSpecificCommentFlags(id
,config
?):Promise
<SCPaginatedResponse
<SCFlagType
>>
Parameters
Parameter | Type |
---|---|
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCFlagType
>>
Source
getSpecificCommentVotesList()
static
getSpecificCommentVotesList(id
,config
?):Promise
<SCPaginatedResponse
<SCVoteType
>>
Parameters
Parameter | Type |
---|---|
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCVoteType
>>
Source
restoreComment()
static
restoreComment(id
,config
?):Promise
<any
>
Parameters
Parameter | Type |
---|---|
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<any
>
Source
updateComment()
static
updateComment(id
,text
,config
?):Promise
<SCCommentType
>
Parameters
Parameter | Type |
---|---|
id | string | number |
text | string |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCCommentType
>
Source
upvoteComment()
static
upvoteComment(id
,config
?):Promise
<any
>
Parameters
Parameter | Type |
---|---|
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<any
>