Sha256: 3c4f946e3ab2667d4499d9e1d53ffd249b79e0657e7efda7861d70387061db59

Contents?: true

Size: 2 KB

Versions: 17

Compression:

Stored size: 2 KB

Contents

module Parliament
  module Grom
    module Decorator
      # Decorator namespace for Grom::Node instances with type: http://id.ukpds.org/schema/Incumbency
      module Incumbency
        include Helpers::DateHelper

        # Alias incumbencyStartDate with fallback.
        #
        # @return [DateTime, nil] the start date of the Grom::Node or nil.
        def start_date
          @start_date ||= respond_to?(:incumbencyStartDate) ? DateTime.parse(incumbencyStartDate) : nil
        end

        # Alias incumbencyEndDate with fallback.
        #
        # @return [DateTime, nil] the end date of the Grom::Node or nil.
        def end_date
          @end_date ||= respond_to?(:incumbencyEndDate) ? DateTime.parse(incumbencyEndDate) : nil
        end

        # Checks if Grom::Node has an end date.
        #
        # @return [Boolean] a boolean depending on whether or not the Grom::Node has an end date.
        def current?
          end_date.nil?
        end

        # Alias incumbencyHasMember with fallback.
        #
        # @return [Grom::Node, nil] the member connected to the Grom::Node or nil.
        def member
          respond_to?(:incumbencyHasMember) ? incumbencyHasMember.first : nil
        end

        # Alias incumbencyHasContactPoint with fallback.
        #
        # @return [Array, Array] the contact points of the Grom::Node or an empty array.
        def contact_points
          respond_to?(:incumbencyHasContactPoint) ? incumbencyHasContactPoint : []
        end

        # Alias seatIncumbencyHasHouseSeat with fallback.
        #
        # @return [Grom::Node, nil] the seat of the Grom::Node or nil.
        def seat
          respond_to?(:seatIncumbencyHasHouseSeat) ? seatIncumbencyHasHouseSeat.first : nil
        end

        # Alias houseIncumbencyHasHouse with fallback.
        #
        # @return [Grom::Node, nil] the house of the Grom::Node or nil.
        def house
          respond_to?(:houseIncumbencyHasHouse) ? houseIncumbencyHasHouse.first : nil
        end
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
parliament-grom-decorators-0.9.0 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.8.0 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.7.0 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.6.1 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.6.0 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.4.0 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.3.0 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.2.8 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.2.7 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.2.6.pre lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.2.5.pre lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.2.4.pre lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.2.3 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.2.1 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.2.0 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.1.8 lib/parliament/grom/decorator/incumbency.rb
parliament-grom-decorators-0.1.7 lib/parliament/grom/decorator/incumbency.rb