lib/lookbook/utils.rb in lookbook-1.2.1 vs lib/lookbook/utils.rb in lookbook-1.3.0

- old
+ new

@@ -2,34 +2,11 @@ module Utils include Lookbook::Engine.routes.url_helpers POSITION_PREFIX_REGEX = /^(\d+?)[-_]/ FRONTMATTER_REGEX = /\A---(.|\n)*?---/ - ACTION_VIEW_ANNOTATIONS_REGEX = /<!-- (BEGIN|END) (.*) -->/ - def self.strip_action_view_annotations!(text) - text&.gsub!(ACTION_VIEW_ANNOTATIONS_REGEX, "") - end - - def self.without_action_view_annotations - original_value = ActionView::Base.annotate_rendered_view_with_filenames - ActionView::Base.annotate_rendered_view_with_filenames = false - res = yield - ActionView::Base.annotate_rendered_view_with_filenames = original_value - res - end - - def self.with_optional_action_view_annotations - if ActionView::Base.respond_to?(:annotate_rendered_view_with_filenames) && Lookbook.config.preview_disable_action_view_annotations - without_action_view_annotations do - yield - end - else - yield - end - end - protected def generate_id(*args) parts = args.map { |arg| arg.to_s.force_encoding("UTF-8").parameterize.underscore } parts.join("-").tr("/_", "-").delete_prefix("-").delete_suffix("-").gsub("--", "-") @@ -57,18 +34,10 @@ def remove_position_prefix(str) parse_position_prefix(str).last end - def get_frontmatter(str) - parse_frontmatter(str).first - end - - def strip_frontmatter(str) - parse_frontmatter(str).last - end - def to_lookup_path(path) path.split("/").map { |segment| remove_position_prefix(segment) }.join("/") end def to_preview_path(*args) @@ -80,18 +49,9 @@ def default_url_options {} end private - - def parse_frontmatter(content) - frontmatter = content.match(FRONTMATTER_REGEX) - if frontmatter.nil? - [{}, content] - else - [YAML.safe_load(frontmatter[0]), content.gsub(FRONTMATTER_REGEX, "")] - end - end def parse_position_prefix(str) pos = str.match(POSITION_PREFIX_REGEX) if pos.nil? [10000, str]