Sha256: 0681f4207da3a9f8da3f89d19ed8979b4a6072f5a75a5c7b8df902728c7cf19b

Contents?: true

Size: 955 Bytes

Versions: 6

Compression:

Stored size: 955 Bytes

Contents

module ContentState
  class New < Base
    include Reloadable
    include Singleton
    class << self
      def derivable_from(content)
        content.new_record? &&
          !content.published &&
          content.published_at.nil?
      end
    end

    def serialize_on(content)
      content[:published] = false
      content[:published_at] = nil
      true
    end

    def before_save(content)
      super
      content.state = Draft.instance
    end

    def change_published_state(content, boolean)
      content[:published] = boolean
      if content.published
        content.state = JustPublished.instance
      end
    end

    def set_published_at(content, new_time)
      content[:published_at] = new_time
      return if new_time.nil?
      if new_time <= Time.now
        content.state = JustPublished.instance
      else
        content.state = PublicationPending.instance
      end
    end

    def draft?
      true
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
typo-3.99.0 app/models/content_state/new.rb
typo-3.99.3 app/models/content_state/new.rb
typo-3.99.1 app/models/content_state/new.rb
typo-3.99.2 app/models/content_state/new.rb
typo-3.99.4 app/models/content_state/new.rb
typo-4.0.0 app/models/content_state/new.rb