From 739dacf6d4061ad1960423f2844b5319114741a3 Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Wed, 11 Dec 2024 01:25:59 +0300 Subject: Auto-commit 2024-12-11 --- content/go/collection.md | 20 +++++++++++++++++++- layouts/go/list.html | 29 +++++++++++++++++++++++++++++ layouts/go/partials/list.html | 24 ++++++++++++++++++++++++ 3 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 layouts/go/list.html create mode 100644 layouts/go/partials/list.html diff --git a/content/go/collection.md b/content/go/collection.md index 9375e05..560f88f 100644 --- a/content/go/collection.md +++ b/content/go/collection.md @@ -4,4 +4,22 @@ name = "collection" repository = "https://git.neonxp.ru/collection.git" description = "Генерики для коллекций" gomod = true -+++ \ No newline at end of file ++++ + +Go >= 1.18 required. + +# Installation + +`go get neonxp.ru/go/collection@latest` + +# Methods + +|Method|Description|Example| +|:-----|:----------|------:| +|`Map`|Async map over slice|[example_map_test.go](./example_map_test.go)| +|`MapSync`|Sync map over slice|[example_map_test.go](./example_map_test.go)| +|`Each`|Async call cb over each element|[example_each_test.go](./example_each_test.go)| +|`MapEach`|Sync call cb over each element|[example_each_test.go](./example_each_test.go)| +|`Filter`|Returns filtered elements async|TODO| +|`FilterSync`|Returns filtered elements|TODO| +|`Reduce`|Produce one single result from a sequence of elements|TODO| \ No newline at end of file diff --git a/layouts/go/list.html b/layouts/go/list.html new file mode 100644 index 0000000..860fd5c --- /dev/null +++ b/layouts/go/list.html @@ -0,0 +1,29 @@ +{{ define "main" }} +
+ +
+ {{ if .Title }} + + {{ end }} + {{ $paginator := .Paginate .Pages 7 }} + {{ range $paginator.Pages }} + {{ partial "list.html" . }} + {{ end }} + +
+
+ +{{ end }} diff --git a/layouts/go/partials/list.html b/layouts/go/partials/list.html new file mode 100644 index 0000000..bfdf13b --- /dev/null +++ b/layouts/go/partials/list.html @@ -0,0 +1,24 @@ +
+
+ +
+ {{ if .Params.Image }} + + {{ end }} + {{ if .Description }} + {{ .Description }} + {{ else }} + {{ .Summary }} + {{ if .Truncated }} + Далее... + {{ end }} + {{ end }} + +
\ No newline at end of file -- cgit v1.2.3