From 0b7b478cd32592bdfb15c8eb5556bc4e0b3afc98 Mon Sep 17 00:00:00 2001 From: DutchEllie Date: Tue, 15 Mar 2022 12:56:08 +0100 Subject: [PATCH] Removed unused code --- src/aboutpage.go | 26 -------------- src/galaxiespage.go | 88 --------------------------------------------- src/homepage.go | 37 ------------------- src/homepanel.go | 58 ------------------------------ src/main.go | 28 --------------- 5 files changed, 237 deletions(-) delete mode 100644 src/homepanel.go diff --git a/src/aboutpage.go b/src/aboutpage.go index ce0bdaf..e203172 100644 --- a/src/aboutpage.go +++ b/src/aboutpage.go @@ -24,29 +24,3 @@ func (a *AboutPage) Render() app.UI { Src("/web/blocks/about.html"), ) } - -type aboutPanel struct { - app.Compo - - aboutText string -} - -func (a *aboutPanel) Render() app.UI { - return app.Div().Body( - app.Img().Src("/web/static/images/rin-1.gif").Styles(map[string]string{"width": "100px", "position": "absolute", "top": "10px", "right": "10px"}), - app.Raw(`

I am a 21 year old computer science student (they/them, he/him, she/her), living and studying in The Netherlands. I like Docker, Kubernetes and Golang! -
-I made this website because I was inspired again by the amazing Neocities pages that I discovered because of my friends. -They also have their own pages (you can find them on the friends tab, do check them out!) and I just had to get a good website of my own! -
-I am not that great at web development, especially design, but I love trying it regardless! -

-To say a bit more about me personally, I love all things computers. From servers to embedded devices! I love the cloud and all that it brings -(except for big megacorps, but alright) and it's my goal to work for a big cloud company! -
-Aside from career path ambitions, ボーカロイドはすきです! I love vocaloid and other Japanese music and culture!! -I also like Vtubers, especially from Hololive and it's my goal to one day finally understand them in their native language! -

-There is a lot more to say in words, but who cares about those! Have a look around my creative digital oasis and see what crazy stuff you can find!

`), - ).Class("content") -} diff --git a/src/galaxiespage.go b/src/galaxiespage.go index 623dd30..b2bb2ad 100644 --- a/src/galaxiespage.go +++ b/src/galaxiespage.go @@ -22,91 +22,3 @@ func (f *GalaxiesPage) Render() app.UI { Src("/web/blocks/galaxies.html"), ) } - -type galaxiesPanel struct { - app.Compo -} - -func (b *galaxiesPanel) Render() app.UI { - return app.Div().Body( - app.P(). - Text(`Galaxies`). - Class("p-h1"), - app.P(). - Class("content-text"). - Text(`Here you can find some really really really cool pages that I found on the internet. - Some of these are blogs or even blogposts I found, but the ones on top are special! - They're the websites of friends of mine! Please visit them, because they worked really hard - on their websites as well!`), - app.Div(). - Body( - app.P(). - Class("p-h2 mt-20 mb-10 bold"). - Text("My friends!"), - app.Ul().Body( - app.Li().Body( - app.Div().Body( - // TODO: Create a modal popup for each name!!! - app.A().Href("https://forestofunix.xyz"). - Class("p-h3 m-t5"). - Text("Forest of Unix"), - app.P(). - Class("m-t5"). - Text(`A website by Sebastiaan. A massive Linux fanboy, runs Gentoo on his - ThinkPad. Absolutely based.`), - ), - ), - app.Li().Body( - app.Div().Body( - // TODO: Create a modal popup for each name!!! - app.A().Href("https://nymphali.neocities.org"). - Class("p-h3 m-t5"). - Text("Nymphali"), - app.P(). - Class("m-t5"). - Text(`The website made by ■■■■■■, whoops Nymphali. They have an awesome - minimalist website that's just lovely.`), - ), - ), - app.Li().Body( - app.Div().Body( - // TODO: Create a modal popup for each name!!! - app.A().Href("https://kristypixel.neocities.org"). - Class("p-h3 m-t5"). - Text("Kristy"), - app.P(). - Class("m-t5"). - Text(`Website made by Kristy. Very cute website, I love it! Keep up the - awesome work!`), - ), - ), - ), - ), - app.Div(). - Body( - app.P(). - Class("p-h2 mt-20 mb-10 bold"). - Text("Neat webspaces"), - app.P(). - Class("m-t5"). - Style("margin-left", "10px"). - Text(`Just very neat websites I found. Not necessarily by people I know. - I just thought it would be nice to share them here!`), - app.Ul().Body( - app.Li().Body( - app.Div().Body( - // TODO: Create a modal popup for each name!!! - app.A().Href("https://evillious.ylimegirl.com/"). - Class("p-h3 m-t5"). - Text("Evillious Chronicles fan guide"), - app.P(). - Class("m-t5"). - Text(`A VERY cool website made by Ylimegirl! They wrote a whole - website dedicated to Evillious Chronicles, which is a super - good Japanese light novel and vocaloid series!! Definitely look it up!`), - ), - ), - ), - ), - ).Class("content") -} diff --git a/src/homepage.go b/src/homepage.go index 2488ac9..61c2e4a 100644 --- a/src/homepage.go +++ b/src/homepage.go @@ -61,41 +61,4 @@ func (p *Homepage) Render() app.UI { }, gbp.Render(), ) - /* - return app.Div().Body( - &header{}, - &navbar{}, - &homePanel{ - onShowClick: func() { - p.showGuestbook = !p.showGuestbook - }, - }, - &bannerPanel{}, - &guestbookForm{ - OnSubmit: func(name, message string) { - var comment entity.Comment - comment.Name = name - comment.Message = message - - jsondata, err := json.Marshal(comment) - if err != nil { - fmt.Printf("err: %v\n", err) - return - } - url := ApiURL - - req, err := http.Post(url, "application/json", bytes.NewBuffer(jsondata)) - if err != nil { - fmt.Printf("err: %v\n", err) - return - } - if req.StatusCode == 200 { - p.Update() - } - defer req.Body.Close() - }, - }, - //app.If(p.showGuestbook, gbp), - gbp.Render(), - ).Class("main")*/ } diff --git a/src/homepanel.go b/src/homepanel.go deleted file mode 100644 index 6b1650e..0000000 --- a/src/homepanel.go +++ /dev/null @@ -1,58 +0,0 @@ -package main - -import "github.com/maxence-charriere/go-app/v9/pkg/app" - -type homePanel struct { - app.Compo - - onShowClick func() - updateAvailable bool -} - -func newHomePanel() *homePanel { - return &homePanel{} -} - -func (p *homePanel) Render() app.UI { - return app.Div().Body( - app.P().Text("Welcome, internet surfer!").Class("p-h1"), - app.Div().Body( - app.P().Text("Please sign my guestbook!").Class("small"), - app.Img().Src("/web/static/images/email3.gif").Style("width", "40px").Style("position", "absolute").Style("bottom", "0px").Style("right", "0px"), - ).Style("position", "absolute").Style("top", "10px").Style("right", "5px"). - OnClick(func(ctx app.Context, e app.Event) { - e.PreventDefault() - p.onShowClick() - }), - app.Img(). - Style("float", "right"). - Style("margin-bottom", "10px"). - Height(230). - Src("/web/static/images/rin-len1.webp"), - app.Raw( - ` -

- Welcome to my webspace! Whether you stumbled across this page by accident - or were linked here, you're more than welcome! This is my personal project that I like - to work on! I was inspired by a couple friends of mine, please do check their webspaces - out as well under "Galaxies" on the left side there! - If you like this page, there is a lot more, so have a look around! You can also leave a - nice message for me in the guestbook! There is no registration (unlike the rest of the "modern" - internet) so nothing of that sort! - That said, this website is my creative outlet and a way to introduce myself, so be kind please! - Also its code is entirely open-source and can be found - here so if you like that sort - of stuff, be my guest it's cool!

- `), - app.If(p.updateAvailable, - app.Div().Body( - app.P(). - Class("content-text"). - Text("An update is available! Reload to update!"), - )), - ).Class("content") -} - -func (p *homePanel) OnAppUpdate(ctx app.Context) { - p.updateAvailable = true -} diff --git a/src/main.go b/src/main.go index 513aa2a..c4a14ad 100644 --- a/src/main.go +++ b/src/main.go @@ -64,35 +64,7 @@ func main() { } app.GenerateStaticWebsite("./staticsite", handler) - /* - uri := "mongodb+srv://guestbook-database:5WUDzpvBKBBiiMCy@cluster0.wtt64.mongodb.net/myFirstDatabase?retryWrites=true&w=majority" - - client, err := mongo.Connect(context.TODO(), options.Client().ApplyURI(uri)) - if err != nil { - fmt.Println(err) - return - } - defer func() { - if err = client.Disconnect(context.TODO()); err != nil { - panic(err) - } - }() - - // Ping the primary - if err := client.Ping(context.TODO(), readpref.Primary()); err != nil { - panic(err) - } - db := client.Database("guestbook") - coll := db.Collection("comments") - - apiapp := &application{ - client: client, - database: db, - collection: coll, - } - */ http.Handle("/", handler) - //http.HandleFunc("/api/comment", apiapp.Comment) if err := http.ListenAndServe(":8000", nil); err != nil { log.Fatal(err)