|
1 | | -import file from "../api/posts.json" assert { type: "json" }; |
2 | | -const fs = require("fs"); |
3 | | -const customer = |
4 | | - { |
5 | | - name: "d Co.", |
6 | | - order_count: 0, |
7 | | - address: "Po Box City", |
8 | | - } |
9 | | - |
10 | | -function saveJson(data:any){ |
11 | | - const jsonString = JSON.stringify(data); |
12 | | -fs.writeFile("./src/app/api/posts.json", jsonString, (err:any) => { |
13 | | - if (err) { |
14 | | - console.log("Error writing file", err); |
15 | | - } else { |
16 | | - console.log("Successfully wrote file"); |
17 | | - } |
18 | | -}); |
19 | | -} |
| 1 | +import supabase from '../../config/database'; // Importando o cliente Supabase |
20 | 2 |
|
| 3 | +// Obter todos os posts |
| 4 | +export const getPosts = async () => { |
| 5 | + const { data, error } = await supabase |
| 6 | + .from('posts') // Nome da tabela |
| 7 | + .select('*'); // Seleciona todos os campos |
21 | 8 |
|
| 9 | + console.log(data) |
22 | 10 |
|
23 | | -type Post = { |
24 | | - id: string; |
25 | | - title: string; |
26 | | - desc: string; |
27 | | - date: any; |
| 11 | + if (error) throw new Error(error.message); |
| 12 | + return data; |
28 | 13 | }; |
29 | 14 |
|
30 | | -let posts: Post[] = file; |
| 15 | +// Adicionar um novo post |
| 16 | +export const addPost = async (post: { title: string; }) => { |
| 17 | + const { data, error } = await supabase |
| 18 | + .from('posts') // Nome da tabela |
| 19 | + .insert([ |
| 20 | + {title: post.title } |
| 21 | + ]); |
31 | 22 |
|
32 | | -export const getPosts = () => posts; |
33 | | -export const addPost = (post: Post) => { |
34 | | - posts.push(post); |
35 | | - saveJson(posts) |
| 23 | + if (error) throw new Error(error.message); |
| 24 | + return data; |
36 | 25 | }; |
37 | | -export const deletePost = (id: string) => { |
38 | | - posts = posts.filter((post) => post.id !== id); |
39 | | - saveJson(posts) |
40 | | -}; |
41 | | -export const updatePost = (id: string, title: string, desc: string) => { |
42 | | - const post = posts.find((post) => post.id === id); |
43 | | - |
44 | 26 |
|
45 | | - if (post) { |
46 | | - post.title = title; |
47 | | - post.desc = desc; |
48 | | - saveJson(posts) |
49 | | - } else { |
| 27 | +// Deletar um post pelo id |
| 28 | +export const deletePost = async (id: string) => { |
| 29 | + const { data, error } = await supabase |
| 30 | + .from('posts') |
| 31 | + .delete() |
| 32 | + .eq('id', id); // A condição de deletar pelo id |
| 33 | + |
| 34 | + if (error) throw new Error(error.message); |
| 35 | + if (!data) { |
50 | 36 | throw new Error("NO POST FOUND"); |
51 | 37 | } |
| 38 | + |
| 39 | + |
| 40 | + return data; |
| 41 | +}; |
| 42 | + |
| 43 | +// Atualizar um post pelo id |
| 44 | +export const updatePost = async (id: string, title: string, desc: string) => { |
| 45 | + const { data, error } = await supabase |
| 46 | + .from('posts') |
| 47 | + .update({ title, desc }) |
| 48 | + .eq('id', id); // A condição de atualizar pelo id |
| 49 | + |
| 50 | + if (error) throw new Error(error.message); |
| 51 | + if (!data) throw new Error("NO POST FOUND"); |
| 52 | + return data; |
52 | 53 | }; |
53 | 54 |
|
54 | | -export const getById = (id: string) => { |
55 | | - return posts.find((post) => post.id === id); |
| 55 | +// Obter um post pelo id |
| 56 | +export const getById = async (id: string) => { |
| 57 | + const { data, error } = await supabase |
| 58 | + .from('posts') |
| 59 | + .select('*') |
| 60 | + .eq('id', id) |
| 61 | + .single(); // Para pegar apenas um resultado (usamos .single() para retornar um único item) |
| 62 | + |
| 63 | + if (error) throw new Error(error.message); |
| 64 | + if (!data) throw new Error("NO POST FOUND"); |
| 65 | + return data; |
56 | 66 | }; |
0 commit comments