personal-website/apps/finder/finder.go

70 lines
1.4 KiB
Go
Raw Normal View History

2023-05-03 21:50:08 +00:00
package finder
import (
"personalwebsite/apps"
"personalwebsite/wde"
2023-05-03 21:50:08 +00:00
"personalwebsite/webfilesystem"
"github.com/gin-gonic/gin"
)
type FinderApplication struct {
fs *webfilesystem.WebFileSystem
appID string
2023-05-03 21:50:08 +00:00
manifest apps.ApplicationManifest
}
func NewFinderApplication(webFs *webfilesystem.WebFileSystem) *FinderApplication {
return &FinderApplication{
fs: webFs,
appID: "Finder",
2023-05-03 21:50:08 +00:00
manifest: apps.ApplicationManifest{
2023-05-07 21:20:40 +00:00
AppId: "finder",
2023-05-03 21:50:08 +00:00
},
}
}
func (f *FinderApplication) GetManifest() apps.ApplicationManifest {
return f.manifest
}
func (f *FinderApplication) GetAppID() string {
return f.appID
2023-05-03 21:50:08 +00:00
}
func (f *FinderApplication) Render(isMobile bool) gin.H {
return gin.H{}
}
func (f *FinderApplication) RenderPublicContextMenu(context string, filePath string, data string) gin.H {
islands := [][]wde.ContexMenuRow{}
islands = append(islands, []wde.ContexMenuRow{})
2023-05-16 12:12:55 +00:00
//TODO: Links read as source files in props info
islands = append(islands, []wde.ContexMenuRow{
{Label: "Get Info", Action: "getInfo"},
})
if context == "FileTileView" {
return gin.H{
"Islands": islands,
}
}
switch context {
default:
}
return gin.H{
"Islands": islands,
}
}
2023-05-07 21:20:40 +00:00
func (f *FinderApplication) RenderProps(filePath string) (gin.H, error) {
fileHeader, err := f.fs.Read(filePath, nil)
if err != nil {
return nil, err
}
2023-05-05 22:07:09 +00:00
return gin.H{
2023-05-07 21:20:40 +00:00
"file": fileHeader,
}, nil
2023-05-05 22:07:09 +00:00
}