openstax_kitchen 3.0.0 → 4.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -1
- data/CHANGELOG.md +77 -3
- data/Gemfile.lock +13 -14
- data/README.md +23 -0
- data/codecov.yaml +1 -0
- data/docker/ci +0 -1
- data/lib/kitchen/book_document.rb +1 -1
- data/lib/kitchen/book_element.rb +16 -2
- data/lib/kitchen/chapter_element.rb +10 -13
- data/lib/kitchen/chapter_element_enumerator.rb +1 -1
- data/lib/kitchen/composite_chapter_element.rb +7 -11
- data/lib/kitchen/composite_chapter_element_enumerator.rb +21 -0
- data/lib/kitchen/composite_page_element.rb +15 -10
- data/lib/kitchen/composite_page_element_enumerator.rb +1 -1
- data/lib/kitchen/config.rb +14 -0
- data/lib/kitchen/directions/bake_chapter_glossary/main.rb +18 -0
- data/lib/kitchen/directions/bake_chapter_glossary/v1.rb +30 -0
- data/lib/kitchen/directions/bake_chapter_introductions.rb +1 -1
- data/lib/kitchen/directions/bake_chapter_key_concepts/main.rb +16 -0
- data/lib/kitchen/directions/bake_chapter_key_concepts/v1.rb +35 -0
- data/lib/kitchen/directions/bake_chapter_key_equations.rb +27 -20
- data/lib/kitchen/directions/bake_chapter_references/main.rb +16 -0
- data/lib/kitchen/directions/bake_chapter_references/v1.rb +35 -0
- data/lib/kitchen/directions/bake_chapter_section_exercises/main.rb +11 -0
- data/lib/kitchen/directions/bake_chapter_section_exercises/v1.rb +28 -0
- data/lib/kitchen/directions/bake_chapter_summary.rb +48 -42
- data/lib/kitchen/directions/bake_checkpoint.rb +44 -0
- data/lib/kitchen/directions/bake_composite_chapters.rb +14 -0
- data/lib/kitchen/directions/bake_composite_pages.rb +1 -1
- data/lib/kitchen/directions/bake_equations.rb +37 -0
- data/lib/kitchen/directions/bake_example.rb +34 -8
- data/lib/kitchen/directions/bake_figure.rb +1 -1
- data/lib/kitchen/directions/bake_first_elements.rb +16 -0
- data/lib/kitchen/directions/bake_footnotes/v1.rb +2 -1
- data/lib/kitchen/directions/bake_free_response/free_response.xhtml.erb +10 -0
- data/lib/kitchen/directions/bake_free_response/main.rb +11 -0
- data/lib/kitchen/directions/bake_free_response/v1.rb +29 -0
- data/lib/kitchen/directions/bake_further_research.rb +59 -0
- data/lib/kitchen/directions/bake_index/v1.rb +35 -14
- data/lib/kitchen/directions/bake_link_placeholders.rb +1 -1
- data/lib/kitchen/directions/bake_non_introduction_pages.rb +26 -0
- data/lib/kitchen/directions/bake_notes/bake_autotitled_notes.rb +29 -0
- data/lib/kitchen/directions/bake_notes/bake_note_subtitle.rb +22 -0
- data/lib/kitchen/directions/bake_notes/bake_numbered_notes.rb +51 -0
- data/lib/kitchen/directions/bake_notes/bake_unclassified_notes.rb +30 -0
- data/lib/kitchen/directions/bake_numbered_exercise/main.rb +15 -0
- data/lib/kitchen/directions/bake_numbered_exercise/v1.rb +47 -0
- data/lib/kitchen/directions/bake_numbered_table/main.rb +2 -2
- data/lib/kitchen/directions/bake_numbered_table/v1.rb +18 -4
- data/lib/kitchen/directions/bake_page_abstracts.rb +16 -0
- data/lib/kitchen/directions/bake_references/main.rb +16 -0
- data/lib/kitchen/directions/bake_references/v1.rb +48 -0
- data/lib/kitchen/directions/bake_stepwise.rb +1 -5
- data/lib/kitchen/directions/bake_suggested_reading.rb +5 -0
- data/lib/kitchen/directions/bake_theorem/main.rb +11 -0
- data/lib/kitchen/directions/bake_theorem/v1.rb +28 -0
- data/lib/kitchen/directions/bake_toc.rb +10 -2
- data/lib/kitchen/directions/book_answer_key_container/eob_solutions_container.xhtml.erb +9 -0
- data/lib/kitchen/directions/{bake_exercises → book_answer_key_container}/main.rb +1 -1
- data/lib/kitchen/directions/book_answer_key_container/v1.rb +13 -0
- data/lib/kitchen/directions/chapter_review_container/chapter_review.xhtml.erb +9 -0
- data/lib/kitchen/directions/chapter_review_container/main.rb +11 -0
- data/lib/kitchen/directions/chapter_review_container/v1.rb +13 -0
- data/lib/kitchen/directions/eoc_section_title_link_snippet.rb +20 -0
- data/lib/kitchen/directions/move_exercises_to_eoc/main.rb +27 -0
- data/lib/kitchen/directions/move_exercises_to_eoc/v1.rb +36 -0
- data/lib/kitchen/directions/move_exercises_to_eoc/v2.rb +49 -0
- data/lib/kitchen/directions/move_solutions_to_answer_key/main.rb +14 -0
- data/lib/kitchen/directions/move_solutions_to_answer_key/strategies/american_government.rb +19 -0
- data/lib/kitchen/directions/move_solutions_to_answer_key/strategies/calculus.rb +41 -0
- data/lib/kitchen/directions/move_solutions_to_answer_key/strategies/uphysics.rb +63 -0
- data/lib/kitchen/directions/move_solutions_to_answer_key/v1.rb +34 -0
- data/lib/kitchen/document.rb +3 -0
- data/lib/kitchen/element.rb +9 -3
- data/lib/kitchen/element_base.rb +118 -16
- data/lib/kitchen/element_enumerator_base.rb +118 -8
- data/lib/kitchen/element_enumerator_factory.rb +28 -12
- data/lib/kitchen/element_factory.rb +3 -3
- data/lib/kitchen/example_element.rb +8 -11
- data/lib/kitchen/example_element_enumerator.rb +1 -1
- data/lib/kitchen/exercise_element.rb +42 -0
- data/lib/kitchen/exercise_element_enumerator.rb +21 -0
- data/lib/kitchen/figure_element.rb +8 -11
- data/lib/kitchen/figure_element_enumerator.rb +1 -1
- data/lib/kitchen/metadata_element.rb +8 -2
- data/lib/kitchen/metadata_element_enumerator.rb +1 -1
- data/lib/kitchen/note_element.rb +25 -27
- data/lib/kitchen/note_element_enumerator.rb +1 -1
- data/lib/kitchen/oven.rb +2 -0
- data/lib/kitchen/page_element.rb +33 -9
- data/lib/kitchen/page_element_enumerator.rb +1 -1
- data/lib/kitchen/patches/nokogiri.rb +55 -0
- data/lib/kitchen/patches/nokogiri_profiling.rb +60 -0
- data/lib/kitchen/recipe.rb +35 -2
- data/lib/kitchen/reference_element.rb +27 -0
- data/lib/kitchen/references_element_enumerator.rb +20 -0
- data/lib/kitchen/search_query.rb +31 -3
- data/lib/kitchen/selector.rb +25 -0
- data/lib/kitchen/selectors/base.rb +39 -0
- data/lib/kitchen/selectors/standard_1.rb +13 -0
- data/lib/kitchen/table_element.rb +8 -11
- data/lib/kitchen/table_element_enumerator.rb +1 -1
- data/lib/kitchen/templates/eob_section_title_template.xhtml.erb +10 -0
- data/lib/kitchen/templates/eoc_section_title_template.xhtml.erb +10 -0
- data/lib/kitchen/term_element.rb +5 -8
- data/lib/kitchen/term_element_enumerator.rb +1 -1
- data/lib/kitchen/unit_element.rb +13 -7
- data/lib/kitchen/unit_element_enumerator.rb +1 -1
- data/lib/kitchen/version.rb +1 -1
- data/lib/locales/en.yml +12 -7
- data/lib/locales/pl.yml +24 -0
- data/lib/openstax_kitchen.rb +2 -1
- metadata +54 -6
- data/lib/kitchen/directions/bake_chapter_glossary.rb +0 -37
- data/lib/kitchen/directions/bake_exercises/v1.rb +0 -166
- data/lib/kitchen/directions/bake_notes.rb +0 -58
@@ -11,7 +11,7 @@ module Kitchen
|
|
11
11
|
#
|
12
12
|
def self.factory
|
13
13
|
ElementEnumeratorFactory.new(
|
14
|
-
default_css_or_xpath:
|
14
|
+
default_css_or_xpath: Selector.named(:composite_page),
|
15
15
|
sub_element_class: CompositePageElement,
|
16
16
|
enumerator_class: self
|
17
17
|
)
|
data/lib/kitchen/config.rb
CHANGED
@@ -11,6 +11,18 @@ module Kitchen
|
|
11
11
|
#
|
12
12
|
attr_reader :selectors
|
13
13
|
|
14
|
+
# @!attribute [rw] enable_all_namespaces
|
15
|
+
#
|
16
|
+
# @return [Boolean]
|
17
|
+
#
|
18
|
+
attr_accessor :enable_all_namespaces
|
19
|
+
|
20
|
+
# @!attribute [rw] enable_search_cache
|
21
|
+
#
|
22
|
+
# @return [Boolean]
|
23
|
+
#
|
24
|
+
attr_accessor :enable_search_cache
|
25
|
+
|
14
26
|
# Creates a new config from a file (not implemented)
|
15
27
|
#
|
16
28
|
def self.new_from_file(_file)
|
@@ -21,6 +33,8 @@ module Kitchen
|
|
21
33
|
#
|
22
34
|
def initialize(hash: {}, selectors: nil)
|
23
35
|
@selectors = selectors || Kitchen::Selectors::Standard1.new
|
36
|
+
@enable_all_namespaces = hash[:enable_all_namespaces] || true
|
37
|
+
@enable_search_cache = hash[:enable_search_cache] || false
|
24
38
|
@hash = hash
|
25
39
|
end
|
26
40
|
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kitchen
|
4
|
+
module Directions
|
5
|
+
# Bake directons for eoc glossary
|
6
|
+
#
|
7
|
+
module BakeChapterGlossary
|
8
|
+
def self.v1(chapter:, metadata_source:, append_to: nil, uuid_prefix: nil)
|
9
|
+
V1.new.bake(
|
10
|
+
chapter: chapter,
|
11
|
+
metadata_source: metadata_source,
|
12
|
+
append_to: append_to,
|
13
|
+
uuid_prefix: uuid_prefix
|
14
|
+
)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kitchen::Directions::BakeChapterGlossary
|
4
|
+
class V1
|
5
|
+
renderable
|
6
|
+
|
7
|
+
def bake(chapter:, metadata_source:, append_to: nil, uuid_prefix: '')
|
8
|
+
@metadata = metadata_source.children_to_keep.copy
|
9
|
+
@klass = 'glossary'
|
10
|
+
@title = I18n.t(:eoc_key_terms_title)
|
11
|
+
@uuid_prefix = uuid_prefix
|
12
|
+
|
13
|
+
definitions = chapter.glossaries.search('dl').cut
|
14
|
+
return if definitions.none?
|
15
|
+
definitions.sort_by! do |definition|
|
16
|
+
[definition.first('dt').text.downcase, definition.first('dd').text.downcase]
|
17
|
+
end
|
18
|
+
|
19
|
+
chapter.glossaries.trash
|
20
|
+
|
21
|
+
@content = definitions.paste
|
22
|
+
|
23
|
+
append_to_element = append_to || chapter
|
24
|
+
@in_composite_chapter = append_to_element.is?(:composite_chapter)
|
25
|
+
|
26
|
+
append_to_element.append(child: render(file:
|
27
|
+
'../../templates/eoc_section_title_template.xhtml.erb'))
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -28,7 +28,7 @@ module Kitchen
|
|
28
28
|
title.name = 'h2'
|
29
29
|
MoveTitleTextIntoSpan.v1(title: title)
|
30
30
|
|
31
|
-
intro_content = introduction_page.search("> :not([data-type='metadata']):not(
|
31
|
+
intro_content = introduction_page.search("> :not([data-type='metadata']):not(.splash):not(.has-splash)").cut
|
32
32
|
|
33
33
|
introduction_page.append(child:
|
34
34
|
<<~HTML
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kitchen
|
4
|
+
module Directions
|
5
|
+
module BakeChapterKeyConcepts
|
6
|
+
def self.v1(chapter:, metadata_source:, append_to: nil, uuid_prefix: '.')
|
7
|
+
V1.new.bake(
|
8
|
+
chapter: chapter,
|
9
|
+
metadata_source: metadata_source,
|
10
|
+
append_to: append_to,
|
11
|
+
uuid_prefix: uuid_prefix
|
12
|
+
)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kitchen::Directions::BakeChapterKeyConcepts
|
4
|
+
class V1
|
5
|
+
renderable
|
6
|
+
def bake(chapter:, metadata_source:, append_to:, uuid_prefix:)
|
7
|
+
@metadata = metadata_source.children_to_keep.copy
|
8
|
+
@klass = 'key-concepts'
|
9
|
+
@title = I18n.t(:eoc_key_concepts)
|
10
|
+
@uuid_prefix = uuid_prefix
|
11
|
+
|
12
|
+
key_concepts_clipboard = Kitchen::Clipboard.new
|
13
|
+
chapter.non_introduction_pages.each do |page|
|
14
|
+
key_concepts = page.key_concepts
|
15
|
+
next if key_concepts.none?
|
16
|
+
|
17
|
+
key_concepts.search('h3').trash
|
18
|
+
title = Kitchen::Directions::EocSectionTitleLinkSnippet.v1(page: page)
|
19
|
+
key_concepts.each do |key_concept|
|
20
|
+
key_concept.prepend(child: title)
|
21
|
+
key_concept.wrap("<div class='os-section-area'>")
|
22
|
+
page.search('div.os-section-area').first.cut(to: key_concepts_clipboard)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
@content = "<div class=\"os-key-concepts\"> #{key_concepts_clipboard.paste} </div>"
|
27
|
+
|
28
|
+
append_to_element = append_to || chapter
|
29
|
+
@in_composite_chapter = append_to_element.is?(:composite_chapter)
|
30
|
+
|
31
|
+
append_to_element.append(child: render(file:
|
32
|
+
'../../templates/eoc_section_title_template.xhtml.erb'))
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -2,31 +2,38 @@
|
|
2
2
|
|
3
3
|
module Kitchen
|
4
4
|
module Directions
|
5
|
-
# Bake
|
5
|
+
# Bake directons for eoc key equations
|
6
6
|
#
|
7
7
|
module BakeChapterKeyEquations
|
8
|
-
def self.v1(chapter:, metadata_source:)
|
9
|
-
|
8
|
+
def self.v1(chapter:, metadata_source:, append_to: nil, uuid_prefix: '.')
|
9
|
+
V1.new.bake(
|
10
|
+
chapter: chapter,
|
11
|
+
metadata_source: metadata_source,
|
12
|
+
append_to: append_to,
|
13
|
+
uuid_prefix: uuid_prefix
|
14
|
+
)
|
15
|
+
end
|
10
16
|
|
11
|
-
|
12
|
-
|
17
|
+
class V1
|
18
|
+
renderable
|
19
|
+
def bake(chapter:, metadata_source:, append_to:, uuid_prefix:)
|
20
|
+
@metadata = metadata_source.children_to_keep.copy
|
21
|
+
@klass = 'key-equations'
|
22
|
+
@title = I18n.t(:eoc_key_equations)
|
23
|
+
@uuid_prefix = uuid_prefix
|
13
24
|
|
14
|
-
|
25
|
+
chapter.key_equations.search('h3').trash
|
15
26
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
#{key_equations.paste}
|
27
|
-
</div>
|
28
|
-
HTML
|
29
|
-
)
|
27
|
+
return if chapter.key_equations.none?
|
28
|
+
|
29
|
+
@content = chapter.key_equations.cut.paste
|
30
|
+
|
31
|
+
append_to_element = append_to || chapter
|
32
|
+
@in_composite_chapter = append_to_element.is?(:composite_chapter)
|
33
|
+
|
34
|
+
append_to_element.append(child: render(file:
|
35
|
+
'../templates/eoc_section_title_template.xhtml.erb'))
|
36
|
+
end
|
30
37
|
end
|
31
38
|
end
|
32
39
|
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kitchen
|
4
|
+
module Directions
|
5
|
+
module BakeChapterReferences
|
6
|
+
def self.v1(chapter:, metadata_source:, uuid_prefix: '.', klass: 'references')
|
7
|
+
V1.new.bake(
|
8
|
+
chapter: chapter,
|
9
|
+
metadata_source: metadata_source,
|
10
|
+
uuid_prefix: uuid_prefix,
|
11
|
+
klass: klass
|
12
|
+
)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kitchen::Directions::BakeChapterReferences
|
4
|
+
class V1
|
5
|
+
renderable
|
6
|
+
|
7
|
+
def bake(chapter:, metadata_source:, uuid_prefix: '.', klass: 'references')
|
8
|
+
@metadata = metadata_source.children_to_keep.copy
|
9
|
+
@klass = klass
|
10
|
+
@title = I18n.t(:references)
|
11
|
+
@uuid_prefix = uuid_prefix
|
12
|
+
|
13
|
+
chapter.references.search('h3').trash
|
14
|
+
|
15
|
+
chapter.non_introduction_pages.each do |page|
|
16
|
+
references = page.references
|
17
|
+
next if references.none?
|
18
|
+
|
19
|
+
references.search('h3').trash
|
20
|
+
title = Kitchen::Directions::EocSectionTitleLinkSnippet.v1(page: page)
|
21
|
+
|
22
|
+
references.each do |reference|
|
23
|
+
reference.prepend(child: title)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
@content = chapter.pages.references.cut.paste
|
28
|
+
|
29
|
+
@in_composite_chapter = false
|
30
|
+
|
31
|
+
chapter.append(child: render(file:
|
32
|
+
'../../templates/eoc_section_title_template.xhtml.erb'))
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kitchen::Directions::BakeChapterSectionExercises
|
4
|
+
class V1
|
5
|
+
def bake(chapter:)
|
6
|
+
chapter.pages.each do |page|
|
7
|
+
page.search('section.section-exercises').each do |section|
|
8
|
+
section.wrap(
|
9
|
+
%(<div class="os-eos os-section-exercises-container"
|
10
|
+
data-uuid-key=".section-exercises">)
|
11
|
+
)
|
12
|
+
|
13
|
+
section_title = I18n.t(
|
14
|
+
:section_exercises,
|
15
|
+
number: "#{chapter.count_in(:book)}.#{section.count_in(:chapter)}")
|
16
|
+
|
17
|
+
section.prepend(sibling:
|
18
|
+
<<~HTML
|
19
|
+
<h3 data-type="document-title">
|
20
|
+
<span class="os-text">#{section_title}</span>
|
21
|
+
</h3>
|
22
|
+
HTML
|
23
|
+
)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -5,50 +5,56 @@ module Kitchen
|
|
5
5
|
# Bake directions for eoc summary
|
6
6
|
#
|
7
7
|
module BakeChapterSummary
|
8
|
-
def self.v1(chapter:, metadata_source:)
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
8
|
+
def self.v1(chapter:, metadata_source:, klass: 'summary', uuid_prefix: '.')
|
9
|
+
V1.new.bake(
|
10
|
+
chapter: chapter,
|
11
|
+
metadata_source: metadata_source,
|
12
|
+
uuid_prefix: uuid_prefix,
|
13
|
+
klass: klass
|
14
|
+
)
|
15
|
+
end
|
16
|
+
|
17
|
+
class V1
|
18
|
+
renderable
|
19
|
+
def bake(chapter:, metadata_source:, uuid_prefix: '.', klass: 'summary')
|
20
|
+
@metadata = metadata_source.children_to_keep.copy
|
21
|
+
@klass = klass
|
22
|
+
@title = I18n.t(:eoc_summary_title)
|
23
|
+
@uuid_prefix = uuid_prefix
|
24
|
+
|
25
|
+
summaries = Clipboard.new
|
26
|
+
|
27
|
+
# TODO: include specific page types somehow without writing it out
|
28
|
+
chapter.non_introduction_pages.each do |page|
|
29
|
+
summary = page.summary
|
30
|
+
summary.first("[data-type='title']")&.trash # get rid of old title if exists
|
31
|
+
summary_title = page.title.copy
|
32
|
+
summary_title.name = 'h3'
|
33
|
+
summary_title.replace_children(with: <<~HTML
|
34
|
+
<span class="os-number">#{chapter.count_in(:book)}.#{page.count_in(:chapter)}</span>
|
35
|
+
<span class="os-divider"> </span>
|
36
|
+
<span class="os-text" data-type="" itemprop="">#{summary_title.children}</span>
|
31
37
|
HTML
|
32
|
-
|
33
|
-
summary.cut(to: summaries)
|
34
|
-
end
|
38
|
+
)
|
35
39
|
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
40
|
+
summary.prepend(child:
|
41
|
+
<<~HTML
|
42
|
+
<a href="##{page.title.id}">
|
43
|
+
#{summary_title.paste}
|
44
|
+
</a>
|
45
|
+
HTML
|
46
|
+
)
|
47
|
+
summary.cut(to: summaries)
|
48
|
+
end
|
49
|
+
|
50
|
+
return if summaries.none?
|
51
|
+
|
52
|
+
@content = summaries.paste
|
53
|
+
@in_composite_chapter = false
|
54
|
+
|
55
|
+
chapter.append(child: render(file:
|
56
|
+
'../templates/eoc_section_title_template.xhtml.erb'))
|
57
|
+
end
|
52
58
|
end
|
53
59
|
end
|
54
60
|
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kitchen
|
4
|
+
module Directions
|
5
|
+
module BakeCheckpoint
|
6
|
+
def self.v1(checkpoint:, number:)
|
7
|
+
checkpoint.wrap_children(class: 'os-note-body')
|
8
|
+
|
9
|
+
checkpoint.prepend(child:
|
10
|
+
<<~HTML
|
11
|
+
<div class="os-title">
|
12
|
+
<span class="os-title-label">#{I18n.t(:checkpoint)} </span>
|
13
|
+
<span class="os-number">#{number}</span>
|
14
|
+
<span class="os-divider"> </span>
|
15
|
+
</div>
|
16
|
+
HTML
|
17
|
+
)
|
18
|
+
|
19
|
+
exercise = checkpoint.exercises.first!
|
20
|
+
exercise.search("[data-type='commentary']").trash
|
21
|
+
|
22
|
+
problem = exercise.problem
|
23
|
+
problem.wrap_children(class: 'os-problem-container')
|
24
|
+
|
25
|
+
solution = exercise.solution
|
26
|
+
exercise.add_class('unnumbered') unless solution.present?
|
27
|
+
return unless solution.present?
|
28
|
+
|
29
|
+
solution.id = "#{exercise.id}-solution"
|
30
|
+
exercise.add_class('os-hasSolution')
|
31
|
+
|
32
|
+
solution.replace_children(with:
|
33
|
+
<<~HTML
|
34
|
+
<span class="os-divider"> </span>
|
35
|
+
<a class="os-number" href="##{exercise.id}">#{number}</a>
|
36
|
+
<div class="os-solution-container">#{solution.children}</div>
|
37
|
+
HTML
|
38
|
+
)
|
39
|
+
|
40
|
+
exercise.add_class('unnumbered')
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|