personal-website/apps/finder/finder.go

92 lines
2.0 KiB
Go
Raw Permalink Normal View History

2023-05-03 21:50:08 +00:00
package finder
import (
2023-07-23 03:12:17 +00:00
"path"
"personalwebsite/apps"
2023-05-18 01:57:44 +00:00
"personalwebsite/apps/appCtx"
"personalwebsite/wde"
2023-05-03 21:50:08 +00:00
"personalwebsite/webfilesystem"
"github.com/gin-gonic/gin"
)
type FinderApplication struct {
2023-07-22 23:55:08 +00:00
fs *webfilesystem.WebFileSystem
appID string
titleBarConfig wde.TitleBarConfig
2023-07-23 03:12:17 +00:00
path string
manifest apps.ApplicationManifest
2023-05-18 01:57:44 +00:00
// manifest apps.ApplicationManifest
2023-05-03 21:50:08 +00:00
}
func NewFinderApplication(webFs *webfilesystem.WebFileSystem) *FinderApplication {
2023-07-23 03:12:17 +00:00
manifest := apps.ApplicationManifest{}
_, err := webFs.Read(path.Join("/Applications/Finder.app", ".appmanifest"), &manifest)
if err != nil {
panic(err)
}
2023-05-03 21:50:08 +00:00
return &FinderApplication{
fs: webFs,
2023-07-23 03:12:17 +00:00
path: "/Applications/Finder.app",
appID: "Finder",
2023-07-22 23:55:08 +00:00
titleBarConfig: wde.TitleBarConfig{
Lable: "Finder",
CloseButton: true,
2023-07-24 00:27:53 +00:00
HasIcon: true,
IconPath: "/Icons/GenericFolder.icn",
IconSize: "16",
2023-07-22 23:55:08 +00:00
},
2023-07-23 03:12:17 +00:00
manifest: manifest,
2023-05-03 21:50:08 +00:00
}
}
2023-07-23 03:12:17 +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
}
2023-07-23 03:12:17 +00:00
func (f *FinderApplication) GetPath() string {
return f.path
}
2023-05-18 01:57:44 +00:00
func (f *FinderApplication) Render(appCtx appCtx.AppContext) gin.H {
2023-07-22 23:55:08 +00:00
return gin.H{
"TitleBarConfig": f.titleBarConfig,
}
2023-05-03 21:50:08 +00:00
}
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
}