mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-11 09:32:51 +00:00
cache character end point - update reply count/thread reply id
This commit is contained in:
29
client/app/services/thread.service.ts
Normal file
29
client/app/services/thread.service.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import axios from '../axios/axios';
|
||||
import { ThreadModel } from '../model';
|
||||
|
||||
const getCategoryThreads = async (category_id: string): Promise<ThreadModel[]> => {
|
||||
try {
|
||||
const res = await axios.get(`/api/thread?category_id=${category_id}`);
|
||||
return res.data.data;
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
|
||||
return [];
|
||||
};
|
||||
|
||||
const getThread = async (thread_id: string | number): Promise<ThreadModel> => {
|
||||
try {
|
||||
const res = await axios.get(`/api/thread/${thread_id}`);
|
||||
return res.data.data;
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
|
||||
return [] as any;
|
||||
};
|
||||
|
||||
export const ThreadService = {
|
||||
getCategoryThreads,
|
||||
getThread,
|
||||
};
|
||||
Reference in New Issue
Block a user