The Notes module is a core component of QuickNotes that allows users to create, edit, view, and link notes. It supports a wiki-style linking system and provides a graph visualization of note connections.
## Data Model
### Note
The `Note` entity has the following attributes:
| Field | Type | Description |
|-------|------|-------------|
| ID | string | Unique identifier for the note (UUID) |
| Title | string | Title of the note |
| Content | string | Content of the note in Markdown format |
| CreatedAt | timestamp | When the note was created |
| UpdatedAt | timestamp | When the note was last updated |
| LinksTo | []*Note | Notes that this note links to |
| LinkedBy | []*Note | Notes that link to this note |
### NoteLink
The `NoteLink` entity represents a connection between two notes:
| Field | Type | Description |
|-------|------|-------------|
| SourceNoteID | string | ID of the source note |
| TargetNoteID | string | ID of the target note |
| CreatedAt | timestamp | When the link was created |
## Features
### Note Management
1.**Create Note**: Users can create new notes with a title and content
2.**Edit Note**: Users can edit existing notes
3.**Delete Note**: Users can delete notes
4.**View Note**: Users can view notes with rendered Markdown content
5.**List Notes**: Users can view a list of all notes
The application now supports an enhanced linking syntax that allows users to reference items from various domains using the following format:
```
[[<domain>:::<uuid>]]
```
Where:
-`<domain>` is one of the following keywords: `note`, `feed`, `entry`, `doc`, or `post`.
-`<uuid>` is the unique identifier of the target item.
For example, to link to a note, a user might write:
```
[[note:::123e4567-e89b-12d3-a456-426614174000]]
```
This link will be processed and rendered as a clickable hyperlink that navigates to the corresponding detail page.
#### Backend Implementation Changes
1.**Link Extraction:** Update the link extraction function (e.g., `ExtractLinks`) to recognize the new pattern. A suggested regular expression is:
```go
re := regexp.MustCompile(`\[\[([a-z]+):::(.+?)\]\]`)
```
This regex captures the domain and UUID portions.
2.**Validation and URL Generation:** After extraction, validate that the domain is one of the allowed values. Then, generate the appropriate URL for the link:
- For `note`: `/notes/<uuid>`
- For `feed`: `/feeds/<uuid>`
- For `entry`: `/feeds/entries/<uuid>`
- For `doc`: `/documents/<uuid>`
- For `post`: `/posts/<uuid>` (if posts are implemented in the future)
3.**Link Storage and Updates:** Ensure that link creation, updates, and deletions in the note service properly handle the new syntax.
#### Frontend Implementation Changes
1.**Rendering:** Modify the markdown or HTML rendering component to detect the new link format and replace it with an HTML `<a>` tag with the generated URL.
2.**Routing:** Use client-side routing to navigate to the appropriate detail view when the link is clicked.
3.**Styling:** Apply specific styling to these links to indicate they are interactive.
For a complete description of the enhanced linking functionality, please refer to the standalone [Links Specification](../specs/links.md).