2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
module Gitlab
|
|
|
|
module Graphql
|
|
|
|
module Connections
|
|
|
|
class KeysetConnection < GraphQL::Relay::BaseConnection
|
|
|
|
def cursor_from_node(node)
|
|
|
|
encode(node[order_field].to_s)
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2018-11-08 19:23:39 +05:30
|
|
|
def sliced_nodes
|
|
|
|
@sliced_nodes ||=
|
|
|
|
begin
|
|
|
|
sliced = nodes
|
|
|
|
|
|
|
|
sliced = sliced.where(before_slice) if before.present?
|
|
|
|
sliced = sliced.where(after_slice) if after.present?
|
|
|
|
|
|
|
|
sliced
|
|
|
|
end
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2018-11-08 19:23:39 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2018-11-08 19:23:39 +05:30
|
|
|
def paged_nodes
|
|
|
|
if first && last
|
|
|
|
raise Gitlab::Graphql::Errors::ArgumentError.new("Can only provide either `first` or `last`, not both")
|
|
|
|
end
|
|
|
|
|
|
|
|
if last
|
|
|
|
sliced_nodes.last(limit_value)
|
|
|
|
else
|
|
|
|
sliced_nodes.limit(limit_value)
|
|
|
|
end
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def before_slice
|
|
|
|
if sort_direction == :asc
|
|
|
|
table[order_field].lt(decode(before))
|
|
|
|
else
|
|
|
|
table[order_field].gt(decode(before))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_slice
|
|
|
|
if sort_direction == :asc
|
|
|
|
table[order_field].gt(decode(after))
|
|
|
|
else
|
|
|
|
table[order_field].lt(decode(after))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def limit_value
|
|
|
|
@limit_value ||= [first, last, max_page_size].compact.min
|
|
|
|
end
|
|
|
|
|
|
|
|
def table
|
|
|
|
nodes.arel_table
|
|
|
|
end
|
|
|
|
|
|
|
|
def order_info
|
|
|
|
@order_info ||= nodes.order_values.first
|
|
|
|
end
|
|
|
|
|
|
|
|
def order_field
|
|
|
|
@order_field ||= order_info&.expr&.name || nodes.primary_key
|
|
|
|
end
|
|
|
|
|
|
|
|
def sort_direction
|
|
|
|
@order_direction ||= order_info&.direction || :desc
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|