v0.0.307
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 1m20s
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 1m20s
This commit is contained in:
parent
1672e8f8fd
commit
afcc89bf9e
@ -1,5 +1,5 @@
|
||||
package goext
|
||||
|
||||
const GoextVersion = "0.0.306"
|
||||
const GoextVersion = "0.0.307"
|
||||
|
||||
const GoextVersionTimestamp = "2023-11-09T09:36:41+0100"
|
||||
const GoextVersionTimestamp = "2023-11-09T10:00:01+0100"
|
||||
|
@ -1,29 +1,28 @@
|
||||
package pagination
|
||||
|
||||
import (
|
||||
"go.mongodb.org/mongo-driver/bson"
|
||||
"go.mongodb.org/mongo-driver/mongo"
|
||||
ct "gogs.mikescher.com/BlackForestBytes/goext/cursortoken"
|
||||
)
|
||||
|
||||
type Filter interface {
|
||||
FilterQuery() mongo.Pipeline
|
||||
Pagination() (string, ct.SortDirection)
|
||||
Sort() bson.D
|
||||
}
|
||||
|
||||
type dynamicFilter struct {
|
||||
pipeline mongo.Pipeline
|
||||
sortField string
|
||||
sortDir ct.SortDirection
|
||||
pipeline mongo.Pipeline
|
||||
sort bson.D
|
||||
}
|
||||
|
||||
func (d dynamicFilter) FilterQuery() mongo.Pipeline {
|
||||
return d.pipeline
|
||||
}
|
||||
|
||||
func (d dynamicFilter) Pagination() (string, ct.SortDirection) {
|
||||
return d.sortField, d.sortDir
|
||||
func (d dynamicFilter) Sort() bson.D {
|
||||
return d.sort
|
||||
}
|
||||
|
||||
func CreateFilter(pipeline mongo.Pipeline, sortField string, sortdir ct.SortDirection) Filter {
|
||||
return dynamicFilter{pipeline: pipeline, sortField: sortField, sortDir: sortdir}
|
||||
func CreateFilter(pipeline mongo.Pipeline, sort bson.D) Filter {
|
||||
return dynamicFilter{pipeline: pipeline, sort: sort}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user