refactor(notes): move UUID generation from frontend to backend

This commit is contained in:
Nicola Zangrandi 2025-02-21 08:00:49 +01:00
parent 2016b82d7c
commit 6ccbec281a
Signed by: wasp
GPG key ID: 43C1470D890F23ED
4 changed files with 24 additions and 7 deletions

View file

@ -26,9 +26,8 @@ function createNotesStore() {
return; return;
} }
const newNote: Note = { const newNote = {
...note, ...note,
id: crypto.randomUUID(),
createdAt: new Date(), createdAt: new Date(),
updatedAt: new Date() updatedAt: new Date()
}; };
@ -45,8 +44,15 @@ function createNotesStore() {
throw new Error('Failed to create note'); throw new Error('Failed to create note');
} }
// Update local store after successful server update // Get the created note with server-generated ID
innerUpdate((notes) => [...notes, newNote]); const createdNote = await response.json();
// Convert date strings to Date objects
createdNote.createdAt = new Date(createdNote.createdAt);
createdNote.updatedAt = new Date(createdNote.updatedAt);
// Update local store with the server response
innerUpdate((notes) => [...notes, createdNote]);
}, },
update: async (id: string, content: Partial<Note>) => { update: async (id: string, content: Partial<Note>) => {
const response = await fetch(`/api/notes/${id}`, { const response = await fetch(`/api/notes/${id}`, {

2
go.mod
View file

@ -3,3 +3,5 @@ module notes
go 1.24 go 1.24
require github.com/mattn/go-sqlite3 v1.14.24 require github.com/mattn/go-sqlite3 v1.14.24
require github.com/google/uuid v1.6.0

2
go.sum
View file

@ -1,2 +1,4 @@
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/mattn/go-sqlite3 v1.14.24 h1:tpSp2G2KyMnnQu99ngJ47EIkWVmliIizyZBfPrBWDRM= github.com/mattn/go-sqlite3 v1.14.24 h1:tpSp2G2KyMnnQu99ngJ47EIkWVmliIizyZBfPrBWDRM=
github.com/mattn/go-sqlite3 v1.14.24/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y= github.com/mattn/go-sqlite3 v1.14.24/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=

13
main.go
View file

@ -12,6 +12,7 @@ import (
"strings" "strings"
"time" "time"
"github.com/google/uuid"
_ "github.com/mattn/go-sqlite3" _ "github.com/mattn/go-sqlite3"
) )
@ -168,16 +169,22 @@ func handleNotes(w http.ResponseWriter, r *http.Request) {
return return
} }
// Generate a new UUID for the note
note.ID = uuid.New().String()
_, err := db.Exec(` _, err := db.Exec(`
INSERT INTO notes (id, title, content, created_at, updated_at) INSERT INTO notes (id, title, content, created_at, updated_at)
VALUES (?, ?, ?, ?, ?) VALUES (?, ?, ?, ?, ?)
`, note.ID, note.Title, note.Content, note.CreatedAt, note.UpdatedAt) `, note.ID, note.Title, note.Content, note.CreatedAt, note.UpdatedAt)
if err != nil { if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError) http.Error(w, err.Error(), http.StatusInternalServerError)
return return
} }
// Return the created note with the generated ID
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusCreated) w.WriteHeader(http.StatusCreated)
json.NewEncoder(w).Encode(note)
} }
} }