Sha256: f088649968a120355309891651200acc6b28c74efc72830b9910dc655021a02c
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
# frozen_string_literal: true require "view_component/version" module Primer # @private class Component < ViewComponent::Base include ViewComponent::SlotableV2 unless ViewComponent::Base < ViewComponent::SlotableV2 include ClassNameHelper include FetchOrFallbackHelper include TestSelectorHelper include JoinStyleArgumentsHelper include ViewHelper include Status::Dsl include Audited::Dsl private def raise_on_invalid_options? Rails.application.config.primer_view_components.raise_on_invalid_options end def deprecated_component_warning(new_class: nil, version: nil) return if Rails.env.production? || silence_deprecations? message = "#{self.class.name} is deprecated" message += " and will be removed in v#{version}." if version message += " Use #{new_class.name} instead." if new_class ActiveSupport::Deprecation.warn(message) end def aria(val, system_arguments) system_arguments[:"aria-#{val}"] || system_arguments.dig(:aria, val.to_sym) end def validate_aria_label aria_label = aria("label", @system_arguments) raise ArgumentError, "`aria-label` is required." if aria_label.nil? && !Rails.env.production? end def silence_deprecations? Rails.application.config.primer_view_components.silence_deprecations end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
primer_view_components-0.0.61 | app/components/primer/component.rb |