From 420e049415c8ec7f7a209a03110eecbe0c83e9e0 Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Mon, 7 Oct 2024 01:06:55 +0300 Subject: Мелкие правки MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 +- cmd/app/importer/importer.go | 47 ------ cmd/app/main.go | 43 ------ cmd/app/serve/serve.go | 51 ------- cmd/bun/main.go | 191 ------------------------ cmd/bun/migrations/20241005143542_1_init.go | 27 ---- cmd/bun/migrations/main.go | 7 - cmd/shorg/main.go | 34 +++++ cmd/shorg/migrator/migrator.go | 223 ++++++++++++++++++++++++++++ cmd/shorg/serve/serve.go | 55 +++++++ migrations/20241005143542_1_init.go | 27 ++++ migrations/main.go | 7 + pkg/handler/admin.go | 18 +++ pkg/tpl/add.templ | 21 +-- pkg/tpl/add_templ.go | 19 +-- pkg/tpl/quote.templ | 17 ++- pkg/tpl/quote_templ.go | 55 +++++-- static/css/style.css | 18 +-- 18 files changed, 432 insertions(+), 432 deletions(-) delete mode 100644 cmd/app/importer/importer.go delete mode 100644 cmd/app/main.go delete mode 100644 cmd/app/serve/serve.go delete mode 100644 cmd/bun/main.go delete mode 100644 cmd/bun/migrations/20241005143542_1_init.go delete mode 100644 cmd/bun/migrations/main.go create mode 100644 cmd/shorg/main.go create mode 100644 cmd/shorg/migrator/migrator.go create mode 100644 cmd/shorg/serve/serve.go create mode 100644 migrations/20241005143542_1_init.go create mode 100644 migrations/main.go diff --git a/Dockerfile b/Dockerfile index 977c118..fda1d32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN apk update --no-cache && apk add --no-cache tzdata COPY go.mod go.sum ./ RUN go mod download && go mod verify COPY . . -RUN go build -o shorg ./cmd/app +RUN go build -o shorg ./cmd/shorg # Runtime container FROM alpine:3.20 @@ -20,4 +20,4 @@ ENV TZ=Europe/Moscow EXPOSE 8000 -CMD ["/app/shorg"] \ No newline at end of file +ENTRYPOINT ["/app/shorg"] \ No newline at end of file diff --git a/cmd/app/importer/importer.go b/cmd/app/importer/importer.go deleted file mode 100644 index 0cc9bb7..0000000 --- a/cmd/app/importer/importer.go +++ /dev/null @@ -1,47 +0,0 @@ -package importer - -import ( - "encoding/json" - "os" - - "github.com/urfave/cli/v2" - "sh.org.ru/pkg/config" - "sh.org.ru/pkg/db" - "sh.org.ru/pkg/model" -) - -func Run(c *cli.Context) error { - configFile := c.String("config") - cfg, err := config.New(configFile) - if err != nil { - return err - } - db := db.New(cfg.DB) - - file := c.Args().First() - - quotes := []string{} - - fp, err := os.Open(file) - if err != nil { - return err - } - defer fp.Close() - - if err := json.NewDecoder(fp).Decode("es); err != nil { - return err - } - - for _, text := range quotes { - q := &model.Quote{ - Quote: text, - Approved: true, - Archive: true, - } - if _, err := db.NewInsert().Model(q).Exec(c.Context); err != nil { - return err - } - } - - return nil -} diff --git a/cmd/app/main.go b/cmd/app/main.go deleted file mode 100644 index dcd3eb0..0000000 --- a/cmd/app/main.go +++ /dev/null @@ -1,43 +0,0 @@ -package main - -import ( - "log" - "os" - - "github.com/urfave/cli/v2" - "sh.org.ru/cmd/app/importer" - "sh.org.ru/cmd/app/serve" -) - -func main() { - app := &cli.App{ - Name: "app", - Commands: []*cli.Command{ - { - Name: "serve", - Action: serve.Run, - Flags: []cli.Flag{ - &cli.StringFlag{ - Name: "config", - Value: "./config/dev.yaml", - Usage: "config", - }, - }, - }, - { - Name: "import", - Action: importer.Run, - Flags: []cli.Flag{ - &cli.StringFlag{ - Name: "config", - Value: "./config/dev.yaml", - Usage: "config", - }, - }, - }, - }, - } - if err := app.Run(os.Args); err != nil { - log.Fatal(err) - } -} diff --git a/cmd/app/serve/serve.go b/cmd/app/serve/serve.go deleted file mode 100644 index 0609083..0000000 --- a/cmd/app/serve/serve.go +++ /dev/null @@ -1,51 +0,0 @@ -package serve - -import ( - "github.com/labstack/echo/v4" - "github.com/labstack/echo/v4/middleware" - "github.com/ssoda/captcha" - "github.com/uptrace/bun/extra/bundebug" - "github.com/urfave/cli/v2" - "sh.org.ru/pkg/config" - "sh.org.ru/pkg/db" - "sh.org.ru/pkg/handler" - "sh.org.ru/static" -) - -func Run(c *cli.Context) error { - configFile := c.String("config") - cfg, err := config.New(configFile) - if err != nil { - return err - } - db := db.New(cfg.DB) - db.AddQueryHook(bundebug.NewQueryHook(bundebug.WithVerbose(cfg.Debug))) - - h := handler.Handler{DB: db} - - e := echo.New() - - e.HTTPErrorHandler = handler.ErrorHandler - - e.Use(middleware.Recover()) - e.Use(middleware.Logger()) - - e.GET("/", h.Index) - e.GET("/quote/:id", h.Quote) - e.GET("/random", h.Random) - e.GET("/add", h.AddQuote) - e.POST("/add", h.AddQuotePost) - e.GET("/add/success", h.AddQuoteSuccess) - e.GET("/captcha/*", echo.WrapHandler(captcha.Server(400, 65))) - - func(g *echo.Group) { - g.GET("/", h.Admin) - g.POST("/action", h.AdminAction) - }(e.Group("/admin", middleware.BasicAuth(func(u, p string, ctx echo.Context) (bool, error) { - return cfg.Admins[u] == p, nil - }))) - - e.StaticFS("/", static.FS) - - return e.Start(cfg.Listen) -} diff --git a/cmd/bun/main.go b/cmd/bun/main.go deleted file mode 100644 index 62c9441..0000000 --- a/cmd/bun/main.go +++ /dev/null @@ -1,191 +0,0 @@ -package main - -import ( - "fmt" - "log" - "os" - "strings" - - "github.com/uptrace/bun/migrate" - "sh.org.ru/cmd/bun/migrations" - "sh.org.ru/pkg/config" - "sh.org.ru/pkg/db" - - "github.com/urfave/cli/v2" -) - -func main() { - app := &cli.App{ - Name: "bun", - Commands: []*cli.Command{ - newDBCommand(migrations.Migrations), - }, - } - if err := app.Run(os.Args); err != nil { - log.Fatal(err) - } -} - -func newDBCommand(migrations *migrate.Migrations) *cli.Command { - return &cli.Command{ - Name: "db", - Usage: "manage database migrations", - Subcommands: []*cli.Command{ - { - Name: "init", - Usage: "create migration tables", - Flags: []cli.Flag{ - &cli.StringFlag{ - Name: "config", - Value: "./config/dev.yaml", - Usage: "config", - }, - }, - Action: func(c *cli.Context) error { - migrator, err := newMigrator(c, migrations) - if err != nil { - return err - } - log.Println("init") - return migrator.Init(c.Context) - }, - }, - { - Name: "migrate", - Usage: "migrate database", - Flags: []cli.Flag{ - &cli.StringFlag{ - Name: "config", - Value: "./config/dev.yaml", - Usage: "config", - }, - }, - Action: func(c *cli.Context) error { - migrator, err := newMigrator(c, migrations) - if err != nil { - return err - } - - group, err := migrator.Migrate(c.Context) - if err != nil { - return err - } - - if group.ID == 0 { - fmt.Printf("there are no new migrations to run\n") - return nil - } - - fmt.Printf("migrated to %s\n", group) - return nil - }, - }, - { - Name: "rollback", - Usage: "rollback the last migration group", - Flags: []cli.Flag{ - &cli.StringFlag{ - Name: "config", - Value: "./config/dev.yaml", - Usage: "config", - }, - }, - Action: func(c *cli.Context) error { - migrator, err := newMigrator(c, migrations) - if err != nil { - return err - } - - group, err := migrator.Rollback(c.Context) - if err != nil { - return err - } - - if group.ID == 0 { - fmt.Printf("there are no groups to roll back\n") - return nil - } - - fmt.Printf("rolled back %s\n", group) - return nil - }, - }, - { - Name: "lock", - Usage: "lock migrations", - Flags: []cli.Flag{ - &cli.StringFlag{ - Name: "config", - Value: "./config/dev.yaml", - Usage: "config", - }, - }, - Action: func(c *cli.Context) error { - migrator, err := newMigrator(c, migrations) - if err != nil { - return err - } - - return migrator.Lock(c.Context) - }, - }, - { - Name: "unlock", - Usage: "unlock migrations", - Flags: []cli.Flag{ - &cli.StringFlag{ - Name: "config", - Value: "./config/dev.yaml", - Usage: "config", - }, - }, - Action: func(c *cli.Context) error { - migrator, err := newMigrator(c, migrations) - if err != nil { - return err - } - - return migrator.Unlock(c.Context) - }, - }, - { - Name: "create", - Usage: "create migration", - Flags: []cli.Flag{ - &cli.StringFlag{ - Name: "config", - Value: "./config/dev.yaml", - Usage: "config", - }, - }, - Action: func(c *cli.Context) error { - migrator, err := newMigrator(c, migrations) - if err != nil { - return err - } - - name := strings.Join(c.Args().Slice(), "_") - mf, err := migrator.CreateGoMigration(c.Context, name) - if err != nil { - return err - } - fmt.Printf("created migration %s (%s)\n", mf.Name, mf.Path) - - return nil - }, - }, - }, - } -} - -func newMigrator(c *cli.Context, migrations *migrate.Migrations) (*migrate.Migrator, error) { - configFile := c.String("config") - cfg, err := config.New(configFile) - if err != nil { - return nil, err - } - db := db.New(cfg.DB) - - migrator := migrate.NewMigrator(db, migrations) - return migrator, nil -} diff --git a/cmd/bun/migrations/20241005143542_1_init.go b/cmd/bun/migrations/20241005143542_1_init.go deleted file mode 100644 index dc92797..0000000 --- a/cmd/bun/migrations/20241005143542_1_init.go +++ /dev/null @@ -1,27 +0,0 @@ -package migrations - -import ( - "context" - "fmt" - - "github.com/uptrace/bun" - "sh.org.ru/pkg/model" -) - -func init() { - Migrations.MustRegister(func(ctx context.Context, db *bun.DB) error { - fmt.Print(" [up migration] ") - if _, err := db.NewCreateTable().Model((*model.Quote)(nil)).Exec(ctx); err != nil { - return err - } - - return nil - }, func(ctx context.Context, db *bun.DB) error { - fmt.Print(" [down migration] ") - if _, err := db.NewDropTable().Model((*model.Quote)(nil)).Exec(ctx); err != nil { - return err - } - - return nil - }) -} diff --git a/cmd/bun/migrations/main.go b/cmd/bun/migrations/main.go deleted file mode 100644 index f7346fb..0000000 --- a/cmd/bun/migrations/main.go +++ /dev/null @@ -1,7 +0,0 @@ -package migrations - -import ( - "github.com/uptrace/bun/migrate" -) - -var Migrations = migrate.NewMigrations() diff --git a/cmd/shorg/main.go b/cmd/shorg/main.go new file mode 100644 index 0000000..df36817 --- /dev/null +++ b/cmd/shorg/main.go @@ -0,0 +1,34 @@ +package main + +import ( + "log" + "os" + + "github.com/urfave/cli/v2" + + "sh.org.ru/cmd/shorg/migrator" + "sh.org.ru/cmd/shorg/serve" +) + +func main() { + app := &cli.App{ + Name: "app", + Commands: []*cli.Command{ + { + Name: "serve", + Action: serve.Run, + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/dev.yaml", + Usage: "config", + }, + }, + }, + migrator.Migrator(), + }, + } + if err := app.Run(os.Args); err != nil { + log.Fatal(err) + } +} diff --git a/cmd/shorg/migrator/migrator.go b/cmd/shorg/migrator/migrator.go new file mode 100644 index 0000000..01dd819 --- /dev/null +++ b/cmd/shorg/migrator/migrator.go @@ -0,0 +1,223 @@ +package migrator + +import ( + "encoding/json" + "fmt" + "log" + "os" + "strings" + + "github.com/uptrace/bun/migrate" + "github.com/urfave/cli/v2" + "sh.org.ru/migrations" + "sh.org.ru/pkg/config" + "sh.org.ru/pkg/db" + "sh.org.ru/pkg/model" +) + +func Migrator() *cli.Command { + return &cli.Command{ + Name: "db", + Usage: "manage database migrations", + Subcommands: []*cli.Command{ + { + Name: "init", + Usage: "create migration tables", + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/config.yaml", + Usage: "config", + }, + }, + Action: func(c *cli.Context) error { + migrator, err := newMigrator(c, migrations.Migrations) + if err != nil { + return err + } + log.Println("init") + return migrator.Init(c.Context) + }, + }, + { + Name: "migrate", + Usage: "migrate database", + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/config.yaml", + Usage: "config", + }, + }, + Action: func(c *cli.Context) error { + migrator, err := newMigrator(c, migrations.Migrations) + if err != nil { + return err + } + + group, err := migrator.Migrate(c.Context) + if err != nil { + return err + } + + if group.ID == 0 { + fmt.Printf("there are no new migrations to run\n") + return nil + } + + fmt.Printf("migrated to %s\n", group) + return nil + }, + }, + { + Name: "rollback", + Usage: "rollback the last migration group", + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/config.yaml", + Usage: "config", + }, + }, + Action: func(c *cli.Context) error { + migrator, err := newMigrator(c, migrations.Migrations) + if err != nil { + return err + } + + group, err := migrator.Rollback(c.Context) + if err != nil { + return err + } + + if group.ID == 0 { + fmt.Printf("there are no groups to roll back\n") + return nil + } + + fmt.Printf("rolled back %s\n", group) + return nil + }, + }, + { + Name: "lock", + Usage: "lock migrations", + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/config.yaml", + Usage: "config", + }, + }, + Action: func(c *cli.Context) error { + migrator, err := newMigrator(c, migrations.Migrations) + if err != nil { + return err + } + + return migrator.Lock(c.Context) + }, + }, + { + Name: "unlock", + Usage: "unlock migrations", + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/config.yaml", + Usage: "config", + }, + }, + Action: func(c *cli.Context) error { + migrator, err := newMigrator(c, migrations.Migrations) + if err != nil { + return err + } + + return migrator.Unlock(c.Context) + }, + }, + { + Name: "create", + Usage: "create migration", + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/config.yaml", + Usage: "config", + }, + }, + Action: func(c *cli.Context) error { + migrator, err := newMigrator(c, migrations.Migrations) + if err != nil { + return err + } + + name := strings.Join(c.Args().Slice(), "_") + mf, err := migrator.CreateGoMigration(c.Context, name) + if err != nil { + return err + } + fmt.Printf("created migration %s (%s)\n", mf.Name, mf.Path) + + return nil + }, + }, + { + Name: "import", + Usage: "import json with quotes", + Flags: []cli.Flag{ + &cli.StringFlag{ + Name: "config", + Value: "./config/config.yaml", + Usage: "config", + }, + }, + Action: func(c *cli.Context) error { + configFile := c.String("config") + cfg, err := config.New(configFile) + if err != nil { + return err + } + db := db.New(cfg.DB) + file := c.Args().First() + quotes := []string{} + fp, err := os.Open(file) + if err != nil { + return err + } + defer fp.Close() + + if err := json.NewDecoder(fp).Decode("es); err != nil { + return err + } + + for _, text := range quotes { + q := &model.Quote{ + Quote: text, + Approved: true, + Archive: true, + } + if _, err := db.NewInsert().Model(q).Exec(c.Context); err != nil { + return err + } + } + + return nil + }, + }, + }, + } +} + +func newMigrator(c *cli.Context, migrations *migrate.Migrations) (*migrate.Migrator, error) { + configFile := c.String("config") + cfg, err := config.New(configFile) + if err != nil { + return nil, err + } + db := db.New(cfg.DB) + + migrator := migrate.NewMigrator(db, migrations) + return migrator, nil +} diff --git a/cmd/shorg/serve/serve.go b/cmd/shorg/serve/serve.go new file mode 100644 index 0000000..13354b7 --- /dev/null +++ b/cmd/shorg/serve/serve.go @@ -0,0 +1,55 @@ +package serve + +import ( + "github.com/labstack/echo/v4" + "github.com/labstack/echo/v4/middleware" + "github.com/ssoda/captcha" + "github.com/uptrace/bun/extra/bundebug" + "github.com/urfave/cli/v2" + "sh.org.ru/pkg/config" + "sh.org.ru/pkg/db" + "sh.org.ru/pkg/handler" + "sh.org.ru/static" +) + +func Run(c *cli.Context) error { + configFile := c.String("config") + cfg, err := config.New(configFile) + if err != nil { + return err + } + db := db.New(cfg.DB) + db.AddQueryHook(bundebug.NewQueryHook(bundebug.WithVerbose(cfg.Debug))) + + h := handler.Handler{DB: db} + + e := echo.New() + + e.HTTPErrorHandler = handler.ErrorHandler + + e.Use( + middleware.Recover(), + middleware.Logger(), + middleware.RemoveTrailingSlash(), + ) + + e.GET("/", h.Index) + e.GET("/quote/:id", h.Quote) + e.GET("/random", h.Random) + e.GET("/add", h.AddQuote) + e.POST("/add", h.AddQuotePost) + e.GET("/add/success", h.AddQuoteSuccess) + e.GET("/captcha/*", echo.WrapHandler(captcha.Server(400, 65))) + + func(g *echo.Group) { + g.GET("/", h.Admin) + g.POST("/action", h.AdminAction) + g.GET("/export", h.AdminExport) + }(e.Group("/admin", middleware.BasicAuth(func(u, p string, ctx echo.Context) (bool, error) { + return cfg.Admins[u] == p, nil + }))) + + e.StaticFS("/", static.FS) + + return e.Start(cfg.Listen) +} diff --git a/migrations/20241005143542_1_init.go b/migrations/20241005143542_1_init.go new file mode 100644 index 0000000..dc92797 --- /dev/null +++ b/migrations/20241005143542_1_init.go @@ -0,0 +1,27 @@ +package migrations + +import ( + "context" + "fmt" + + "github.com/uptrace/bun" + "sh.org.ru/pkg/model" +) + +func init() { + Migrations.MustRegister(func(ctx context.Context, db *bun.DB) error { + fmt.Print(" [up migration] ") + if _, err := db.NewCreateTable().Model((*model.Quote)(nil)).Exec(ctx); err != nil { + return err + } + + return nil + }, func(ctx context.Context, db *bun.DB) error { + fmt.Print(" [down migration] ") + if _, err := db.NewDropTable().Model((*model.Quote)(nil)).Exec(ctx); err != nil { + return err + } + + return nil + }) +} diff --git a/migrations/main.go b/migrations/main.go new file mode 100644 index 0000000..f7346fb --- /dev/null +++ b/migrations/main.go @@ -0,0 +1,7 @@ +package migrations + +import ( + "github.com/uptrace/bun/migrate" +) + +var Migrations = migrate.NewMigrations() diff --git a/pkg/handler/admin.go b/pkg/handler/admin.go index 8531011..75fb650 100644 --- a/pkg/handler/admin.go +++ b/pkg/handler/admin.go @@ -55,3 +55,21 @@ func (h *Handler) AdminAction(c echo.Context) error { return c.Redirect(http.StatusFound, "/admin/") } + +func (h *Handler) AdminExport(c echo.Context) error { + quotes := []model.Quote{} + err := h.DB.NewSelect(). + Model((*model.Quote)(nil)). + Order("id ASC"). + Scan(c.Request().Context(), "es) + if err != nil { + return err + } + + quotesString := make([]string, 0, len(quotes)) + for _, q := range quotes { + quotesString = append(quotesString, q.Quote) + } + + return c.JSON(http.StatusOK, quotesString) +} diff --git a/pkg/tpl/add.templ b/pkg/tpl/add.templ index 0611d1b..14b57eb 100644 --- a/pkg/tpl/add.templ +++ b/pkg/tpl/add.templ @@ -14,27 +14,10 @@ templ AddQuotePage(form *AddQuoteForm, err string) {
-
- - - Прослушать - -
+ +
- } } diff --git a/pkg/tpl/add_templ.go b/pkg/tpl/add_templ.go index 04fb615..d47582b 100644 --- a/pkg/tpl/add_templ.go +++ b/pkg/tpl/add_templ.go @@ -92,33 +92,20 @@ func AddQuotePage(form *AddQuoteForm, err string) templ.Component { if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } - _, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString("\">
Прослушать
") + _, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString("\"> ") if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } diff --git a/pkg/tpl/quote.templ b/pkg/tpl/quote.templ index 58c0d4f..34429d1 100644 --- a/pkg/tpl/quote.templ +++ b/pkg/tpl/quote.templ @@ -8,13 +8,22 @@ import ( templ Quote(quote *model.Quote) {
-
#{ strconv.Itoa(int(quote.ID)) }
+
+ #{ strconv.Itoa(int(quote.ID)) } + { quote.CreatedAt.Format("02.01.06") } +
@templ.Raw(quote.Text())
- Поделиться:  -   -   + +  ·  +  ·  + + + if quote.Archive { + Архив + } +
} diff --git a/pkg/tpl/quote_templ.go b/pkg/tpl/quote_templ.go index 3aa96a1..fa139cd 100644 --- a/pkg/tpl/quote_templ.go +++ b/pkg/tpl/quote_templ.go @@ -51,48 +51,71 @@ func Quote(quote *model.Quote) templ.Component { var templ_7745c5c3_Var3 string templ_7745c5c3_Var3, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.Itoa(int(quote.ID))) if templ_7745c5c3_Err != nil { - return templ.Error{Err: templ_7745c5c3_Err, FileName: `pkg/tpl/quote.templ`, Line: 11, Col: 98} + return templ.Error{Err: templ_7745c5c3_Err, FileName: `pkg/tpl/quote.templ`, Line: 12, Col: 91} } _, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var3)) if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } - _, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString("") + _, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(" ") if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } - templ_7745c5c3_Err = templ.Raw(quote.Text()).Render(ctx, templ_7745c5c3_Buffer) + var templ_7745c5c3_Var4 string + templ_7745c5c3_Var4, templ_7745c5c3_Err = templ.JoinStringErrs(quote.CreatedAt.Format("02.01.06")) + if templ_7745c5c3_Err != nil { + return templ.Error{Err: templ_7745c5c3_Err, FileName: `pkg/tpl/quote.templ`, Line: 13, Col: 92} + } + _, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var4)) if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } - _, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString("") + _, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString("\"> ·  ") + if templ_7745c5c3_Err != nil { + return templ_7745c5c3_Err + } + if quote.Archive { + _, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString("Архив") + if templ_7745c5c3_Err != nil { + return templ_7745c5c3_Err + } + } + _, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString("") if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } @@ -116,12 +139,12 @@ func QuotePage(quote *model.Quote) templ.Component { }() } ctx = templ.InitializeContext(ctx) - templ_7745c5c3_Var7 := templ.GetChildren(ctx) - if templ_7745c5c3_Var7 == nil { - templ_7745c5c3_Var7 = templ.NopComponent + templ_7745c5c3_Var8 := templ.GetChildren(ctx) + if templ_7745c5c3_Var8 == nil { + templ_7745c5c3_Var8 = templ.NopComponent } ctx = templ.ClearChildren(ctx) - templ_7745c5c3_Var8 := templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) { + templ_7745c5c3_Var9 := templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) { templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W) if !templ_7745c5c3_IsBuffer { @@ -143,7 +166,7 @@ func QuotePage(quote *model.Quote) templ.Component { Title: "Цитата #" + strconv.Itoa(int(quote.ID)), URL: fmt.Sprintf("https://sh.org.ru/quote/%d", quote.ID), Description: templ.EscapeString(quote.Quote), - }).Render(templ.WithChildren(ctx, templ_7745c5c3_Var8), templ_7745c5c3_Buffer) + }).Render(templ.WithChildren(ctx, templ_7745c5c3_Var9), templ_7745c5c3_Buffer) if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } diff --git a/static/css/style.css b/static/css/style.css index ab24ab3..d1b4d40 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,14 +1,14 @@ -.row { +.captcha { + height: 65px; +} +article header { display: flex; flex-direction: row; - margin-bottom: var(--pico-spacing); + justify-content: space-between; } -.col { + +article footer { display: flex; + flex-direction: row; + justify-content: space-between; } -.captcha { - background-color: aliceblue; - height:65px; - border-top-left-radius: var(--pico-border-radius); - border-bottom-left-radius: var(--pico-border-radius); -} \ No newline at end of file -- cgit v1.2.3