-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Additional conveniences for offset pagination
- Loading branch information
Showing
5 changed files
with
306 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
apollo-ios-pagination/Sources/ApolloPagination/OffsetBasedPagination/Bidirectional.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
extension OffsetPagination { | ||
public struct Bidirectional: PaginationInfo, Hashable { | ||
public let offset: Int | ||
public var canLoadNext: Bool | ||
public let canLoadPrevious: Bool | ||
|
||
public init(offset: Int, canLoadNext: Bool, canLoadPrevious: Bool) { | ||
self.offset = offset | ||
self.canLoadNext = canLoadNext | ||
self.canLoadPrevious = canLoadPrevious | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
apollo-ios-pagination/Sources/ApolloPagination/OffsetBasedPagination/ForwardOffset.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
extension OffsetPagination { | ||
public struct Forward: PaginationInfo, Hashable { | ||
public let offset: Int | ||
public let canLoadNext: Bool | ||
public var canLoadPrevious: Bool { false } | ||
|
||
public init(offset: Int, canLoadNext: Bool) { | ||
self.offset = offset | ||
self.canLoadNext = canLoadNext | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.