2019-03-23 01:42:57 +00:00
|
|
|
export enum UserOperation {
|
2019-04-03 23:01:20 +00:00
|
|
|
Login, Register, CreateCommunity, CreatePost, ListCommunities, ListCategories, GetPost, GetCommunity, CreateComment, EditComment, CreateCommentLike, GetPosts, CreatePostLike, EditPost, EditCommunity
|
2019-03-23 01:42:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface User {
|
2019-03-25 03:51:27 +00:00
|
|
|
id: number;
|
2019-03-29 04:56:23 +00:00
|
|
|
iss: string;
|
2019-03-21 01:22:31 +00:00
|
|
|
username: string;
|
2019-03-23 01:42:57 +00:00
|
|
|
}
|
|
|
|
|
2019-04-04 20:53:32 +00:00
|
|
|
export interface CommunityUser {
|
|
|
|
id: number;
|
|
|
|
user_id: number;
|
|
|
|
user_name: string;
|
|
|
|
community_id: number;
|
|
|
|
community_name: string;
|
|
|
|
published: string;
|
|
|
|
}
|
|
|
|
|
2019-03-25 03:51:27 +00:00
|
|
|
export interface Community {
|
|
|
|
id: number;
|
|
|
|
name: string;
|
2019-04-03 23:01:20 +00:00
|
|
|
title: string;
|
|
|
|
description?: string;
|
|
|
|
creator_id: number;
|
|
|
|
creator_name: string;
|
|
|
|
category_id: number;
|
|
|
|
category_name: string;
|
|
|
|
number_of_subscribers: number;
|
|
|
|
number_of_posts: number;
|
2019-04-04 20:00:19 +00:00
|
|
|
number_of_comments: number;
|
2019-03-26 18:00:18 +00:00
|
|
|
published: string;
|
|
|
|
updated?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CommunityForm {
|
|
|
|
name: string;
|
2019-04-03 23:01:20 +00:00
|
|
|
title: string;
|
|
|
|
description?: string,
|
|
|
|
category_id: number,
|
2019-04-04 22:29:14 +00:00
|
|
|
edit_id?: number;
|
2019-03-26 18:00:18 +00:00
|
|
|
auth?: string;
|
|
|
|
}
|
|
|
|
|
2019-04-04 22:29:14 +00:00
|
|
|
export interface GetCommunityResponse {
|
2019-03-26 18:00:18 +00:00
|
|
|
op: string;
|
|
|
|
community: Community;
|
2019-04-04 20:53:32 +00:00
|
|
|
moderators: Array<CommunityUser>;
|
2019-03-26 18:00:18 +00:00
|
|
|
}
|
|
|
|
|
2019-04-04 22:29:14 +00:00
|
|
|
|
|
|
|
export interface CommunityResponse {
|
|
|
|
op: string;
|
|
|
|
community: Community;
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:00:18 +00:00
|
|
|
export interface ListCommunitiesResponse {
|
|
|
|
op: string;
|
|
|
|
communities: Array<Community>;
|
|
|
|
}
|
|
|
|
|
2019-04-03 23:01:20 +00:00
|
|
|
export interface ListCategoriesResponse {
|
|
|
|
op: string;
|
|
|
|
categories: Array<Category>;
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:00:18 +00:00
|
|
|
export interface Post {
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id?: number;
|
|
|
|
my_vote?: number;
|
2019-03-26 18:00:18 +00:00
|
|
|
id: number;
|
|
|
|
name: string;
|
|
|
|
url?: string;
|
|
|
|
body?: string;
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: number;
|
|
|
|
creator_name: string;
|
2019-03-26 18:00:18 +00:00
|
|
|
community_id: number;
|
2019-04-03 06:49:32 +00:00
|
|
|
community_name: string;
|
|
|
|
number_of_comments: number;
|
|
|
|
score: number;
|
|
|
|
upvotes: number;
|
|
|
|
downvotes: number;
|
|
|
|
hot_rank: number;
|
2019-03-26 18:00:18 +00:00
|
|
|
published: string;
|
|
|
|
updated?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface PostForm {
|
|
|
|
name: string;
|
|
|
|
url?: string;
|
|
|
|
body?: string;
|
|
|
|
community_id: number;
|
|
|
|
updated?: number;
|
2019-04-03 20:59:37 +00:00
|
|
|
edit_id?: number;
|
2019-03-26 18:00:18 +00:00
|
|
|
auth: string;
|
|
|
|
}
|
|
|
|
|
2019-04-03 20:59:37 +00:00
|
|
|
export interface GetPostResponse {
|
2019-03-26 18:00:18 +00:00
|
|
|
op: string;
|
|
|
|
post: Post;
|
|
|
|
comments: Array<Comment>;
|
2019-04-03 23:01:20 +00:00
|
|
|
community: Community;
|
2019-04-04 20:53:32 +00:00
|
|
|
moderators: Array<CommunityUser>;
|
2019-03-26 18:00:18 +00:00
|
|
|
}
|
|
|
|
|
2019-04-03 20:59:37 +00:00
|
|
|
export interface PostResponse {
|
|
|
|
op: string;
|
|
|
|
post: Post;
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:00:18 +00:00
|
|
|
export interface Comment {
|
|
|
|
id: number;
|
|
|
|
content: string;
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: number;
|
2019-04-03 20:59:37 +00:00
|
|
|
creator_name: string;
|
2019-03-26 18:00:18 +00:00
|
|
|
post_id: number,
|
|
|
|
parent_id?: number;
|
|
|
|
published: string;
|
|
|
|
updated?: string;
|
2019-03-28 19:32:08 +00:00
|
|
|
score: number;
|
|
|
|
upvotes: number;
|
|
|
|
downvotes: number;
|
|
|
|
my_vote?: number;
|
2019-03-26 18:00:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface CommentForm {
|
|
|
|
content: string;
|
|
|
|
post_id: number;
|
|
|
|
parent_id?: number;
|
2019-03-29 04:56:23 +00:00
|
|
|
edit_id?: number;
|
2019-03-26 18:00:18 +00:00
|
|
|
auth: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CommentResponse {
|
|
|
|
op: string;
|
|
|
|
comment: Comment;
|
2019-03-25 03:51:27 +00:00
|
|
|
}
|
|
|
|
|
2019-03-28 19:32:08 +00:00
|
|
|
export interface CommentLikeForm {
|
|
|
|
comment_id: number;
|
|
|
|
post_id: number;
|
|
|
|
score: number;
|
|
|
|
auth?: string;
|
|
|
|
}
|
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
export interface GetPostsForm {
|
|
|
|
type_: string;
|
|
|
|
sort: string;
|
|
|
|
limit: number;
|
|
|
|
community_id?: number;
|
|
|
|
auth?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface GetPostsResponse {
|
|
|
|
op: string;
|
|
|
|
posts: Array<Post>;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CreatePostLikeForm {
|
|
|
|
post_id: number;
|
|
|
|
score: number;
|
|
|
|
auth?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CreatePostLikeResponse {
|
|
|
|
op: string;
|
|
|
|
post: Post;
|
|
|
|
}
|
|
|
|
|
2019-04-03 23:01:20 +00:00
|
|
|
export interface Category {
|
|
|
|
id: number;
|
|
|
|
name: string;
|
|
|
|
}
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
export interface LoginForm {
|
|
|
|
username_or_email: string;
|
2019-03-21 01:22:31 +00:00
|
|
|
password: string;
|
|
|
|
}
|
2019-03-23 01:42:57 +00:00
|
|
|
|
2019-03-21 01:22:31 +00:00
|
|
|
export interface RegisterForm {
|
|
|
|
username: string;
|
|
|
|
email?: string;
|
|
|
|
password: string;
|
|
|
|
password_verify: string;
|
|
|
|
}
|
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
|
2019-03-26 18:00:18 +00:00
|
|
|
export interface LoginResponse {
|
|
|
|
op: string;
|
|
|
|
jwt: string;
|
2019-03-23 01:42:57 +00:00
|
|
|
}
|
|
|
|
|
2019-03-30 06:08:02 +00:00
|
|
|
export enum CommentSortType {
|
|
|
|
Hot, Top, New
|
|
|
|
}
|
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
export enum ListingType {
|
|
|
|
All, Subscribed, Community
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum ListingSortType {
|
|
|
|
Hot, New, TopDay, TopWeek, TopMonth, TopYear, TopAll
|
|
|
|
}
|
2019-03-26 18:00:18 +00:00
|
|
|
|