# frozen_string_literal: true module Kitchen::Directions::MoveSolutionsToAnswerKey class V1 # rubocop:disable Metrics/ParameterLists # This direction may need refactoring to simplify parameters def bake(chapter:, metadata_source:, strategy:, append_to:, strategy_options: {}, solutions_plural: true) strategy = case strategy when :calculus Strategies::Calculus.new when :contemporary_math Strategies::ContemporaryMath.new when :uphysics Strategies::UPhysics.new when :precalculus Strategies::Precalculus.new when :default Strategies::Default.new(strategy_options) else raise 'No such strategy' end solutions_or_solution = solutions_plural ? 'solutions' : 'solution' uuid_key = ".#{solutions_or_solution}#{chapter.count_in(:book)}" append_to.append(child: <<~HTML

#{I18n.t(:chapter)} #{chapter.count_in(:book)}

#{I18n.t(:chapter)} #{chapter.count_in(:book)}

#{metadata_source.children_to_keep.copy.paste}
HTML ) strategy.bake( chapter: chapter, append_to: append_to.first("div[data-uuid-key='#{uuid_key}']") ) end # rubocop:enable Metrics/ParameterLists end end