mirror of
https://github.com/usememos/memos.git
synced 2024-12-20 09:41:58 +03:00
424f10e180
* feat: add support for resource page on frontend * [WIP]feat: add backend support for limit and offset search * feat: add reducer to add resource * support fetch all resource when first search * beautify the fetch ui * restore file * feat: add all resource before clear resource * eslint * i18n * chore:change the nane * chore: change the name of param * eslint * feat: setIsComplete to true when first loading resource fully * fix the bug of fetch * feat change finally to then * feat: add await and async to clear and search * feat: return all resource when fetch * chore: change variable name * Update web/src/pages/ResourcesDashboard.tsx Co-authored-by: boojack <stevenlgtm@gmail.com> * fix missing const value --------- Co-authored-by: boojack <stevenlgtm@gmail.com>
68 lines
1.4 KiB
Go
68 lines
1.4 KiB
Go
package api
|
|
|
|
type Resource struct {
|
|
ID int `json:"id"`
|
|
|
|
// Standard fields
|
|
CreatorID int `json:"creatorId"`
|
|
CreatedTs int64 `json:"createdTs"`
|
|
UpdatedTs int64 `json:"updatedTs"`
|
|
|
|
// Domain specific fields
|
|
Filename string `json:"filename"`
|
|
Blob []byte `json:"-"`
|
|
InternalPath string `json:"internalPath"`
|
|
ExternalLink string `json:"externalLink"`
|
|
Type string `json:"type"`
|
|
Size int64 `json:"size"`
|
|
Visibility Visibility `json:"visibility"`
|
|
|
|
// Related fields
|
|
LinkedMemoAmount int `json:"linkedMemoAmount"`
|
|
}
|
|
|
|
type ResourceCreate struct {
|
|
// Standard fields
|
|
CreatorID int `json:"-"`
|
|
|
|
// Domain specific fields
|
|
Filename string `json:"filename"`
|
|
Blob []byte `json:"-"`
|
|
InternalPath string `json:"internalPath"`
|
|
ExternalLink string `json:"externalLink"`
|
|
Type string `json:"type"`
|
|
Size int64 `json:"-"`
|
|
Visibility Visibility `json:"visibility"`
|
|
}
|
|
|
|
type ResourceFind struct {
|
|
ID *int `json:"id"`
|
|
|
|
// Standard fields
|
|
CreatorID *int `json:"creatorId"`
|
|
|
|
// Domain specific fields
|
|
Filename *string `json:"filename"`
|
|
MemoID *int
|
|
GetBlob bool
|
|
|
|
// Pagination
|
|
Limit *int
|
|
Offset *int
|
|
}
|
|
|
|
type ResourcePatch struct {
|
|
ID int `json:"-"`
|
|
|
|
// Standard fields
|
|
UpdatedTs *int64
|
|
|
|
// Domain specific fields
|
|
Filename *string `json:"filename"`
|
|
Visibility *Visibility `json:"visibility"`
|
|
}
|
|
|
|
type ResourceDelete struct {
|
|
ID int
|
|
}
|