summaryrefslogtreecommitdiffstats
path: root/services/f3/driver/issues.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--services/f3/driver/issues.go40
1 files changed, 40 insertions, 0 deletions
diff --git a/services/f3/driver/issues.go b/services/f3/driver/issues.go
new file mode 100644
index 0000000..3a5a64e
--- /dev/null
+++ b/services/f3/driver/issues.go
@@ -0,0 +1,40 @@
+// Copyright Earl Warren <contact@earl-warren.org>
+// Copyright Loïc Dachary <loic@dachary.org>
+// SPDX-License-Identifier: MIT
+
+package driver
+
+import (
+ "context"
+ "fmt"
+
+ "code.gitea.io/gitea/models/db"
+ issues_model "code.gitea.io/gitea/models/issues"
+
+ f3_tree "code.forgejo.org/f3/gof3/v3/tree/f3"
+ "code.forgejo.org/f3/gof3/v3/tree/generic"
+)
+
+type issues struct {
+ container
+}
+
+func (o *issues) ListPage(ctx context.Context, page int) generic.ChildrenSlice {
+ pageSize := o.getPageSize()
+
+ project := f3_tree.GetProjectID(o.GetNode())
+
+ forgejoIssues, err := issues_model.Issues(ctx, &issues_model.IssuesOptions{
+ Paginator: &db.ListOptions{Page: page, PageSize: pageSize},
+ RepoIDs: []int64{project},
+ })
+ if err != nil {
+ panic(fmt.Errorf("error while listing issues: %v", err))
+ }
+
+ return f3_tree.ConvertListed(ctx, o.GetNode(), f3_tree.ConvertToAny(forgejoIssues...)...)
+}
+
+func newIssues() generic.NodeDriverInterface {
+ return &issues{}
+}