Sha256: 2ccc36e828c2e27440a47de0d6872262ea11f64ac09f7f37f2afdcd04730c94d
Contents?: true
Size: 1.55 KB
Versions: 2
Compression:
Stored size: 1.55 KB
Contents
# frozen_string_literal: true module Vedeu module Presentation # Provides style related presentation behaviour. # # @api private # module Styles include Vedeu::Common include Vedeu::Presentation::Parent # @return [NilClass|String|Symbol] def name if present?(@name) @name elsif parent && present?(parent.name) parent.name end end # When the style for the model exists, return it, otherwise # returns the parent style, or an empty # {Vedeu::Presentation::Style}. # # @return [Vedeu::Presentation::Style] def style @_style ||= if @style Vedeu::Presentation::Style.coerce(@style) elsif parent && present?(parent.style) Vedeu::Presentation::Style.coerce(parent.style) else Vedeu::Presentation::Style.new end end # Allows the setting of the style by coercing the given value # into a {Vedeu::Presentation::Style}. # # @return [Vedeu::Presentation::Style] def style=(value) @_style = @style = Vedeu::Presentation::Style.coerce(value) end private # Renders the style attributes of the receiver and yields (to # then render the next model, or finally, the content). # # @macro param_block # @return [String] def render_style(&block) "#{style}#{yield}" end end # Style end # Presentation end # Vedeu
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vedeu-0.8.26 | lib/vedeu/presentation/styles.rb |
vedeu-0.8.25 | lib/vedeu/presentation/styles.rb |