-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathactions.ts
72 lines (63 loc) · 1.38 KB
/
actions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { apiInstance } from "$utils/api";
export interface Tier {
benefits: string;
description: string;
image: string;
published: boolean;
price: number;
title: string;
}
export interface Creator {
about: string;
coverPhoto: string;
creatorAddress: string;
isAreCreating: string;
launched: boolean;
name: string;
patrons: number;
profilePhoto: string;
tiers: [Tier, Tier, Tier];
}
export interface CreatorPost {
data: {
image: string;
tags: string;
text: string;
tier: number;
};
creatorAddress: string;
}
export interface LikePost {
creatorAddress: string;
postId: number;
}
export interface CreatorPosts {
author: string;
created_at: string;
id: number;
image: string;
tags: string;
text: string;
tier: number;
comments: string[];
likes: { author: string }[];
}
export const getCreators = async () =>
await (
await apiInstance.get<Creator[]>("/creators/")
).data;
export const getPosts = async () =>
await (
await apiInstance.get<CreatorPosts[]>(`/posts/`)
).data;
export const postPost = async (body: CreatorPost) =>
await (
await apiInstance.post<CreatorPost>(
`/posts/${body.creatorAddress}/`,
body.data
)
).data;
export const LikePost = async ({ creatorAddress, postId }: LikePost) =>
await (
await apiInstance.post<LikePost>(`/posts/${postId}/like/${creatorAddress}/`)
).data;