diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-29 20:58:22 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-29 20:58:22 +0200 |
commit | c58aa18a2d0683b0a1e6f0597724e67b500503a0 (patch) | |
tree | 06b7611ebce2a4cbe0c99f72729517cb8114e3f1 /graphql/connections | |
parent | 08f03ecf3cbbc350585acf0492966681ec449a94 (diff) | |
download | git-bug-c58aa18a2d0683b0a1e6f0597724e67b500503a0.tar.gz |
graphql: lazy loading for the bug relay connection
Diffstat (limited to 'graphql/connections')
-rw-r--r-- | graphql/connections/connection_template.go | 8 | ||||
-rw-r--r-- | graphql/connections/connections.go | 2 | ||||
-rw-r--r-- | graphql/connections/gen_bug.go | 21 | ||||
-rw-r--r-- | graphql/connections/lazy_bug.go | 10 |
4 files changed, 23 insertions, 18 deletions
diff --git a/graphql/connections/connection_template.go b/graphql/connections/connection_template.go index 3dfaca8f..7f97c00b 100644 --- a/graphql/connections/connection_template.go +++ b/graphql/connections/connection_template.go @@ -11,13 +11,13 @@ type EdgeType generic.Type type ConnectionType generic.Type type NodeTypeEdger func(value NodeType, offset int) Edge -type NodeTypeConMaker func(edges []EdgeType, info models.PageInfo, totalCount int) ConnectionType +type NodeTypeConMaker func(edges []EdgeType, info models.PageInfo, totalCount int) (ConnectionType, error) func NodeTypeCon(source []NodeType, edger NodeTypeEdger, conMaker NodeTypeConMaker, input models.ConnectionInput) (ConnectionType, error) { var edges []EdgeType var pageInfo models.PageInfo - emptyCon := conMaker(edges, pageInfo, 0) + emptyCon, _ := conMaker(edges, pageInfo, 0) offset := 0 @@ -76,7 +76,5 @@ func NodeTypeCon(source []NodeType, edger NodeTypeEdger, conMaker NodeTypeConMak } } - con := conMaker(edges, pageInfo, len(source)) - - return con, nil + return conMaker(edges, pageInfo, len(source)) } diff --git a/graphql/connections/connections.go b/graphql/connections/connections.go index 145bfbbe..84dc3750 100644 --- a/graphql/connections/connections.go +++ b/graphql/connections/connections.go @@ -1,4 +1,4 @@ -//go:generate genny -in=connection_template.go -out=gen_bug.go gen "NodeType=bug.Snapshot EdgeType=models.BugEdge ConnectionType=models.BugConnection" +//go:generate genny -in=connection_template.go -out=gen_bug.go gen "NodeType=string EdgeType=LazyBugEdge ConnectionType=models.BugConnection" //go:generate genny -in=connection_template.go -out=gen_operation.go gen "NodeType=bug.Operation EdgeType=models.OperationEdge ConnectionType=models.OperationConnection" //go:generate genny -in=connection_template.go -out=gen_comment.go gen "NodeType=bug.Comment EdgeType=models.CommentEdge ConnectionType=models.CommentConnection" diff --git a/graphql/connections/gen_bug.go b/graphql/connections/gen_bug.go index b43d5c11..64458669 100644 --- a/graphql/connections/gen_bug.go +++ b/graphql/connections/gen_bug.go @@ -7,18 +7,17 @@ package connections import ( "fmt" - "github.com/MichaelMure/git-bug/bug" "github.com/MichaelMure/git-bug/graphql/models" ) -type BugSnapshotEdger func(value bug.Snapshot, offset int) Edge -type BugSnapshotConMaker func(edges []models.BugEdge, info models.PageInfo, totalCount int) models.BugConnection +type StringEdger func(value string, offset int) Edge +type StringConMaker func(edges []LazyBugEdge, info models.PageInfo, totalCount int) (models.BugConnection, error) -func BugSnapshotCon(source []bug.Snapshot, edger BugSnapshotEdger, conMaker BugSnapshotConMaker, input models.ConnectionInput) (models.BugConnection, error) { - var edges []models.BugEdge +func StringCon(source []string, edger StringEdger, conMaker StringConMaker, input models.ConnectionInput) (models.BugConnection, error) { + var edges []LazyBugEdge var pageInfo models.PageInfo - emptyCon := conMaker(edges, pageInfo, 0) + emptyCon, _ := conMaker(edges, pageInfo, 0) offset := 0 @@ -43,13 +42,13 @@ func BugSnapshotCon(source []bug.Snapshot, edger BugSnapshotEdger, conMaker BugS break } - edges = append(edges, edge.(models.BugEdge)) + edges = append(edges, edge.(LazyBugEdge)) } } else { - edges = make([]models.BugEdge, len(source)) + edges = make([]LazyBugEdge, len(source)) for i, value := range source { - edges[i] = edger(value, i+offset).(models.BugEdge) + edges[i] = edger(value, i+offset).(LazyBugEdge) } } @@ -77,7 +76,5 @@ func BugSnapshotCon(source []bug.Snapshot, edger BugSnapshotEdger, conMaker BugS } } - con := conMaker(edges, pageInfo, len(source)) - - return con, nil + return conMaker(edges, pageInfo, len(source)) } diff --git a/graphql/connections/lazy_bug.go b/graphql/connections/lazy_bug.go new file mode 100644 index 00000000..35dcb687 --- /dev/null +++ b/graphql/connections/lazy_bug.go @@ -0,0 +1,10 @@ +package connections + +type LazyBugEdge struct { + Id string + Cursor string +} + +func (lbe LazyBugEdge) GetCursor() string { + return lbe.Cursor +} |