aboutsummaryrefslogblamecommitdiffstats
path: root/graphql/connections/gen_operation.go
blob: 3fbd724f793fff823dc6b7f9cdf6b797b330eb69 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                        
                                                                                      
                  
                                                                  
 

                                                                               



                                                           
 

                                                                                                                                                                       
                                 
                                        
                            
                                    
                                    
 
                                                          




                                              
                                                   



                                                                                        
                                                               






                                              
                                                          


                                                                                      
                                                           



                                                                          
                                                                   
                                                    


                                                                 
                                                     
                              

                                              


                                                              










                                                                                            
                                                        
                                                    











                                                                                             
                                                                    
                                                              



                                                       





                                                            
                                                           
 
// This file was automatically generated by genny.
// Any changes will be lost if this file is regenerated.
// see https://github.com/cheekybits/genny

package connections

import (
	"fmt"

	"github.com/MichaelMure/git-bug/bug"
	"github.com/MichaelMure/git-bug/graphql/models"
)

// BugOperationEdgeMaker define a function that take a bug.Operation and an offset and
// create an Edge.
type OperationEdgeMaker func(value bug.Operation, offset int) Edge

// OperationConMaker define a function that create a models.OperationConnection
type OperationConMaker func(
	edges []models.OperationEdge,
	nodes []bug.Operation,
	info models.PageInfo,
	totalCount int) (models.OperationConnection, error)

// OperationCon will paginate a source according to the input of a relay connection
func OperationCon(source []bug.Operation, edgeMaker OperationEdgeMaker, conMaker OperationConMaker, input models.ConnectionInput) (models.OperationConnection, error) {
	var nodes []bug.Operation
	var edges []models.OperationEdge
	var cursors []string
	var pageInfo models.PageInfo
	var totalCount = len(source)

	emptyCon, _ := conMaker(edges, nodes, pageInfo, 0)

	offset := 0

	if input.After != nil {
		for i, value := range source {
			edge := edgeMaker(value, i)
			if edge.GetCursor() == *input.After {
				// remove all previous element including the "after" one
				source = source[i+1:]
				offset = i + 1
				pageInfo.HasPreviousPage = true
				break
			}
		}
	}

	if input.Before != nil {
		for i, value := range source {
			edge := edgeMaker(value, i+offset)

			if edge.GetCursor() == *input.Before {
				// remove all after element including the "before" one
				pageInfo.HasNextPage = true
				break
			}

			edges = append(edges, edge.(models.OperationEdge))
			cursors = append(cursors, edge.GetCursor())
			nodes = append(nodes, value)
		}
	} else {
		edges = make([]models.OperationEdge, len(source))
		cursors = make([]string, len(source))
		nodes = source

		for i, value := range source {
			edge := edgeMaker(value, i+offset)
			edges[i] = edge.(models.OperationEdge)
			cursors[i] = edge.GetCursor()
		}
	}

	if input.First != nil {
		if *input.First < 0 {
			return emptyCon, fmt.Errorf("first less than zero")
		}

		if len(edges) > *input.First {
			// Slice result to be of length first by removing edges from the end
			edges = edges[:*input.First]
			cursors = cursors[:*input.First]
			nodes = nodes[:*input.First]
			pageInfo.HasNextPage = true
		}
	}

	if input.Last != nil {
		if *input.Last < 0 {
			return emptyCon, fmt.Errorf("last less than zero")
		}

		if len(edges) > *input.Last {
			// Slice result to be of length last by removing edges from the start
			edges = edges[len(edges)-*input.Last:]
			cursors = cursors[len(cursors)-*input.Last:]
			nodes = nodes[len(nodes)-*input.Last:]
			pageInfo.HasPreviousPage = true
		}
	}

	// Fill up pageInfo cursors
	if len(cursors) > 0 {
		pageInfo.StartCursor = cursors[0]
		pageInfo.EndCursor = cursors[len(cursors)-1]
	}

	return conMaker(edges, nodes, pageInfo, totalCount)
}