refactor(notes): move UUID generation from frontend to backend
This commit is contained in:
parent
2016b82d7c
commit
6ccbec281a
4 changed files with 24 additions and 7 deletions
|
@ -26,9 +26,8 @@ function createNotesStore() {
|
|||
return;
|
||||
}
|
||||
|
||||
const newNote: Note = {
|
||||
const newNote = {
|
||||
...note,
|
||||
id: crypto.randomUUID(),
|
||||
createdAt: new Date(),
|
||||
updatedAt: new Date()
|
||||
};
|
||||
|
@ -45,8 +44,15 @@ function createNotesStore() {
|
|||
throw new Error('Failed to create note');
|
||||
}
|
||||
|
||||
// Update local store after successful server update
|
||||
innerUpdate((notes) => [...notes, newNote]);
|
||||
// Get the created note with server-generated ID
|
||||
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>) => {
|
||||
const response = await fetch(`/api/notes/${id}`, {
|
||||
|
|
2
go.mod
2
go.mod
|
@ -3,3 +3,5 @@ module notes
|
|||
go 1.24
|
||||
|
||||
require github.com/mattn/go-sqlite3 v1.14.24
|
||||
|
||||
require github.com/google/uuid v1.6.0
|
||||
|
|
2
go.sum
2
go.sum
|
@ -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/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
|
||||
|
|
13
main.go
13
main.go
|
@ -12,6 +12,7 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/google/uuid"
|
||||
_ "github.com/mattn/go-sqlite3"
|
||||
)
|
||||
|
||||
|
@ -168,16 +169,22 @@ func handleNotes(w http.ResponseWriter, r *http.Request) {
|
|||
return
|
||||
}
|
||||
|
||||
// Generate a new UUID for the note
|
||||
note.ID = uuid.New().String()
|
||||
|
||||
_, err := db.Exec(`
|
||||
INSERT INTO notes (id, title, content, created_at, updated_at)
|
||||
VALUES (?, ?, ?, ?, ?)
|
||||
`, note.ID, note.Title, note.Content, note.CreatedAt, note.UpdatedAt)
|
||||
INSERT INTO notes (id, title, content, created_at, updated_at)
|
||||
VALUES (?, ?, ?, ?, ?)
|
||||
`, note.ID, note.Title, note.Content, note.CreatedAt, note.UpdatedAt)
|
||||
if err != nil {
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
// Return the created note with the generated ID
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
w.WriteHeader(http.StatusCreated)
|
||||
json.NewEncoder(w).Encode(note)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue