diagram 0.2.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/diagram.rb +3 -0
- data/lib/diagrams/base.rb +244 -0
- data/lib/diagrams/class_diagram.rb +123 -2
- data/lib/diagrams/elements/class_entity.rb +24 -0
- data/lib/diagrams/elements/edge.rb +28 -0
- data/lib/diagrams/elements/event.rb +22 -0
- data/lib/diagrams/elements/git_branch.rb +27 -0
- data/lib/diagrams/elements/git_commit.rb +36 -0
- data/lib/diagrams/elements/node.rb +30 -0
- data/lib/diagrams/elements/relationship.rb +33 -0
- data/lib/diagrams/elements/slice.rb +23 -0
- data/lib/diagrams/elements/state.rb +24 -0
- data/lib/diagrams/elements/task.rb +23 -0
- data/lib/diagrams/elements/timeline_event.rb +21 -0
- data/lib/diagrams/elements/timeline_period.rb +23 -0
- data/lib/diagrams/elements/timeline_section.rb +23 -0
- data/lib/diagrams/elements/transition.rb +27 -0
- data/lib/diagrams/elements.rb +12 -0
- data/lib/diagrams/flowchart_diagram.rb +119 -4
- data/lib/diagrams/gantt_diagram.rb +94 -3
- data/lib/diagrams/gitgraph_diagram.rb +345 -0
- data/lib/diagrams/pie_diagram.rb +108 -29
- data/lib/diagrams/state_diagram.rb +157 -4
- data/lib/diagrams/timeline_diagram.rb +161 -0
- data/lib/diagrams/version.rb +1 -1
- data/lib/diagrams.rb +6 -1
- data/sig/diagrams/base.rbs +86 -0
- data/sig/diagrams/class_diagram.rbs +33 -0
- data/sig/diagrams/elements/class_entity.rbs +15 -0
- data/sig/diagrams/elements/edge.rbs +16 -0
- data/sig/diagrams/elements/event.rbs +14 -0
- data/sig/diagrams/elements/git_branch.rbs +19 -0
- data/sig/diagrams/elements/git_commit.rbs +23 -0
- data/sig/diagrams/elements/node.rbs +14 -0
- data/sig/diagrams/elements/relationship.rbs +16 -0
- data/sig/diagrams/elements/slice.rbs +14 -0
- data/sig/diagrams/elements/state.rbs +14 -0
- data/sig/diagrams/elements/task.rbs +16 -0
- data/sig/diagrams/elements/timeline_event.rbs +17 -0
- data/sig/diagrams/elements/timeline_period.rbs +18 -0
- data/sig/diagrams/elements/timeline_section.rbs +18 -0
- data/sig/diagrams/elements/transition.rbs +15 -0
- data/sig/diagrams/elements/types.rbs +18 -0
- data/sig/diagrams/flowchart_diagram.rbs +32 -0
- data/sig/diagrams/gantt_diagram.rbs +29 -0
- data/sig/diagrams/gitgraph_diagram.rbs +35 -0
- data/sig/diagrams/pie_diagram.rbs +36 -0
- data/sig/diagrams/state_diagram.rbs +40 -0
- data/sig/diagrams/timeline_diagram.rbs +33 -0
- metadata +228 -22
- data/lib/diagrams/abstract_diagram.rb +0 -26
- data/lib/diagrams/class_diagram/class/field.rb +0 -15
- data/lib/diagrams/class_diagram/class/function/argument.rb +0 -14
- data/lib/diagrams/class_diagram/class/function.rb +0 -16
- data/lib/diagrams/class_diagram/class.rb +0 -12
- data/lib/diagrams/comparable.rb +0 -20
- data/lib/diagrams/flowchart_diagram/link.rb +0 -11
- data/lib/diagrams/flowchart_diagram/node.rb +0 -10
- data/lib/diagrams/gantt_diagram/section/task.rb +0 -13
- data/lib/diagrams/gantt_diagram/section.rb +0 -10
- data/lib/diagrams/pie_diagram/section.rb +0 -10
- data/lib/diagrams/plot.rb +0 -23
- data/lib/diagrams/state_diagram/event.rb +0 -10
- data/lib/diagrams/state_diagram/state.rb +0 -12
- data/lib/diagrams/state_diagram/transition.rb +0 -11
@@ -0,0 +1,19 @@
|
|
1
|
+
module Diagrams
|
2
|
+
module Elements
|
3
|
+
# Represents a branch in a Gitgraph diagram.
|
4
|
+
class GitBranch < ::Dry::Struct
|
5
|
+
include Elements::Types
|
6
|
+
|
7
|
+
# Attributes
|
8
|
+
attr_reader name: String
|
9
|
+
attr_reader head_commit_id: String?
|
10
|
+
attr_reader start_commit_id: String
|
11
|
+
|
12
|
+
# Methods
|
13
|
+
def initialize: (name: String, ?head_commit_id: String?, start_commit_id: String) -> void
|
14
|
+
| (Hash[Symbol, untyped]) -> void # Allow hash initialization
|
15
|
+
|
16
|
+
def to_h: () -> Hash[Symbol, String]
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Diagrams
|
2
|
+
module Elements
|
3
|
+
# Represents a commit in a Gitgraph diagram.
|
4
|
+
class GitCommit < ::Dry::Struct
|
5
|
+
include Elements::Types
|
6
|
+
|
7
|
+
# Attributes
|
8
|
+
attr_reader id: String
|
9
|
+
attr_reader parent_ids: Array[String]
|
10
|
+
attr_reader branch_name: String
|
11
|
+
attr_reader message: String?
|
12
|
+
attr_reader tag: String?
|
13
|
+
attr_reader type: Symbol # :NORMAL | :REVERSE | :HIGHLIGHT | :MERGE | :CHERRY_PICK
|
14
|
+
attr_reader cherry_pick_source_id: String?
|
15
|
+
|
16
|
+
# Methods
|
17
|
+
def initialize: (id: String, ?parent_ids: Array[String], branch_name: String, ?message: String?, ?tag: String?, ?type: Symbol, ?cherry_pick_source_id: String?) -> void
|
18
|
+
| (Hash[Symbol, untyped]) -> void # Allow hash initialization
|
19
|
+
|
20
|
+
def to_h: () -> Hash[Symbol, String | Array[String] | Symbol]
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module Diagrams
|
2
|
+
module Elements
|
3
|
+
class Node < ::Dry::Struct
|
4
|
+
include Diagrams::Elements::Types
|
5
|
+
|
6
|
+
# Attributes
|
7
|
+
def id: () -> ::String
|
8
|
+
def label: () -> ::String
|
9
|
+
|
10
|
+
# Methods
|
11
|
+
def to_h: () -> { id: ::String, label: ::String }
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
module Diagrams
|
2
|
+
module Elements
|
3
|
+
class Relationship < ::Dry::Struct
|
4
|
+
include Diagrams::Elements::Types
|
5
|
+
|
6
|
+
# Attributes
|
7
|
+
def source_class_name: () -> ::String
|
8
|
+
def target_class_name: () -> ::String
|
9
|
+
def type: () -> ::String
|
10
|
+
def label: () -> ::String?
|
11
|
+
|
12
|
+
# Methods
|
13
|
+
def to_h: () -> { source_class_name: ::String, target_class_name: ::String, type: ::String, ?label: ::String }
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module Diagrams
|
2
|
+
module Elements
|
3
|
+
class Slice < ::Dry::Struct
|
4
|
+
include Diagrams::Elements::Types
|
5
|
+
|
6
|
+
# Attributes
|
7
|
+
def label: () -> ::String
|
8
|
+
def value: () -> ::Float
|
9
|
+
|
10
|
+
# Methods
|
11
|
+
def to_h: () -> { label: ::String, value: ::Float }
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module Diagrams
|
2
|
+
module Elements
|
3
|
+
class State < ::Dry::Struct
|
4
|
+
include Diagrams::Elements::Types
|
5
|
+
|
6
|
+
# Attributes
|
7
|
+
def id: () -> ::String
|
8
|
+
def label: () -> ::String?
|
9
|
+
|
10
|
+
# Methods
|
11
|
+
def to_h: () -> { id: ::String, ?label: ::String }
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
module Diagrams
|
2
|
+
module Elements
|
3
|
+
class Task < ::Dry::Struct
|
4
|
+
include Diagrams::Elements::Types
|
5
|
+
|
6
|
+
# Attributes
|
7
|
+
def id: () -> ::String
|
8
|
+
def name: () -> ::String
|
9
|
+
def start_date: () -> ::String # Or ::Date if type is changed
|
10
|
+
def end_date: () -> ::String # Or ::Date if type is changed
|
11
|
+
|
12
|
+
# Methods
|
13
|
+
def to_h: () -> { id: ::String, name: ::String, start_date: ::String, end_date: ::String }
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Diagrams
|
2
|
+
module Elements
|
3
|
+
# Represents a single event description within a timeline period.
|
4
|
+
class TimelineEvent < ::Dry::Struct
|
5
|
+
include Elements::Types
|
6
|
+
|
7
|
+
# Attributes
|
8
|
+
attr_reader description: String
|
9
|
+
|
10
|
+
# Methods
|
11
|
+
def initialize: (description: String) -> void
|
12
|
+
| (Hash[Symbol, untyped]) -> void # Allow hash initialization
|
13
|
+
|
14
|
+
def to_h: () -> Hash[Symbol, String]
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Diagrams
|
2
|
+
module Elements
|
3
|
+
# Represents a specific time period on the timeline, containing one or more events.
|
4
|
+
class TimelinePeriod < ::Dry::Struct
|
5
|
+
include Elements::Types
|
6
|
+
|
7
|
+
# Attributes
|
8
|
+
attr_reader label: String
|
9
|
+
attr_reader events: Array[TimelineEvent]
|
10
|
+
|
11
|
+
# Methods
|
12
|
+
def initialize: (label: String, events: Array[TimelineEvent]) -> void
|
13
|
+
| (Hash[Symbol, untyped]) -> void # Allow hash initialization
|
14
|
+
|
15
|
+
def to_h: () -> Hash[Symbol, String | Array[Hash[Symbol, String]]]
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Diagrams
|
2
|
+
module Elements
|
3
|
+
# Represents a section or age within the timeline, grouping multiple time periods.
|
4
|
+
class TimelineSection < ::Dry::Struct
|
5
|
+
include Elements::Types
|
6
|
+
|
7
|
+
# Attributes
|
8
|
+
attr_reader title: String
|
9
|
+
attr_reader periods: Array[TimelinePeriod]
|
10
|
+
|
11
|
+
# Methods
|
12
|
+
def initialize: (title: String, ?periods: Array[TimelinePeriod]) -> void
|
13
|
+
| (Hash[Symbol, untyped]) -> void # Allow hash initialization
|
14
|
+
|
15
|
+
def to_h: () -> Hash[Symbol, String | Array[Hash[Symbol, untyped]]]
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module Diagrams
|
2
|
+
module Elements
|
3
|
+
class Transition < ::Dry::Struct
|
4
|
+
include Diagrams::Elements::Types
|
5
|
+
|
6
|
+
# Attributes
|
7
|
+
def source_state_id: () -> ::String
|
8
|
+
def target_state_id: () -> ::String
|
9
|
+
def label: () -> ::String?
|
10
|
+
|
11
|
+
# Methods
|
12
|
+
def to_h: () -> { source_state_id: ::String, target_state_id: ::String, ?label: ::String }
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# Signatures for the shared Dry::Types module used by elements.
|
2
|
+
# Note: Dry::Types integration with RBS can be complex. This is a basic representation.
|
3
|
+
module Diagrams
|
4
|
+
module Elements
|
5
|
+
module Types
|
6
|
+
# Define common types used in elements if needed, or rely on Dry::Types inference.
|
7
|
+
# Example:
|
8
|
+
# type StrictString = ::String
|
9
|
+
# type StrictFloat = ::Float
|
10
|
+
# type StrictArray[T] = ::Array[T]
|
11
|
+
# type String? = StrictString?
|
12
|
+
# ... etc ...
|
13
|
+
|
14
|
+
# Include the Dry::Types module interface (basic representation)
|
15
|
+
include ::Dry::Types
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module Diagrams
|
2
|
+
class FlowchartDiagram < Base
|
3
|
+
attr_reader nodes: ::Array[Element::Node]
|
4
|
+
attr_reader edges: ::Array[Element::Edge]
|
5
|
+
|
6
|
+
# Initializes a new FlowchartDiagram.
|
7
|
+
def initialize: (?nodes: ::Array[Element::Node]?, ?edges: ::Array[Element::Edge]?, ?version: Integer | String?) -> void
|
8
|
+
|
9
|
+
# Adds a node to the diagram.
|
10
|
+
def add_node: (Element::Node node) -> Element::Node
|
11
|
+
|
12
|
+
# Adds an edge to the diagram.
|
13
|
+
def add_edge: (Element::Edge edge) -> Element::Edge
|
14
|
+
|
15
|
+
# Finds a node by its ID.
|
16
|
+
def find_node: (::String node_id) -> Element::Node?
|
17
|
+
|
18
|
+
# Returns the specific content of the flowchart diagram as a hash.
|
19
|
+
def to_h_content: () -> { nodes: ::Array[Hash[Symbol, untyped]], edges: ::Array[Hash[Symbol, untyped]] }
|
20
|
+
|
21
|
+
# Returns a hash mapping element types to their collections for diffing.
|
22
|
+
def identifiable_elements: () -> { nodes: ::Array[Elements::Node], edges: ::Array[Elements::Edge] }
|
23
|
+
|
24
|
+
# Class method to create a FlowchartDiagram from a hash.
|
25
|
+
def self.from_h: (Hash[Symbol | String, untyped] data_hash, version: Integer | String?, checksum: String?) -> FlowchartDiagram
|
26
|
+
|
27
|
+
private
|
28
|
+
|
29
|
+
# Validates the consistency of nodes and edges during initialization.
|
30
|
+
def validate_elements!: () -> void
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Diagrams
|
2
|
+
class GanttDiagram < Base
|
3
|
+
attr_reader title: ::String
|
4
|
+
attr_reader tasks: ::Array[Elements::Task]
|
5
|
+
|
6
|
+
# Initializes a new GanttDiagram.
|
7
|
+
def initialize: (?title: ::String?, ?tasks: ::Array[Elements::Task]?, ?version: Integer | String?) -> void
|
8
|
+
|
9
|
+
# Adds a task to the diagram.
|
10
|
+
def add_task: (Elements::Task task) -> Elements::Task
|
11
|
+
|
12
|
+
# Finds a task by its ID.
|
13
|
+
def find_task: (::String task_id) -> Elements::Task?
|
14
|
+
|
15
|
+
# Returns the specific content of the Gantt diagram as a hash.
|
16
|
+
def to_h_content: () -> { title: ::String, tasks: ::Array[Hash[Symbol, untyped]] }
|
17
|
+
|
18
|
+
# Returns a hash mapping element types to their collections for diffing.
|
19
|
+
def identifiable_elements: () -> { tasks: ::Array[Elements::Task] }
|
20
|
+
|
21
|
+
# Class method to create a GanttDiagram from a hash.
|
22
|
+
def self.from_h: (Hash[Symbol | String, untyped] data_hash, version: Integer | String?, checksum: String?) -> GanttDiagram
|
23
|
+
|
24
|
+
private
|
25
|
+
|
26
|
+
# Validates the consistency of tasks during initialization.
|
27
|
+
def validate_elements!: () -> void
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
module Diagrams
|
2
|
+
# Represents a Gitgraph diagram, tracking commits, branches, and their relationships.
|
3
|
+
class GitgraphDiagram < Base
|
4
|
+
# Instance Variables (via attr_reader)
|
5
|
+
attr_reader commits: Hash[String, Elements::GitCommit]
|
6
|
+
attr_reader branches: Hash[String, Elements::GitBranch]
|
7
|
+
attr_reader commit_order: Array[String]
|
8
|
+
attr_reader current_branch_name: String
|
9
|
+
|
10
|
+
# Initialization
|
11
|
+
def initialize: (?version: String | Integer) -> void
|
12
|
+
|
13
|
+
# --- Git Operations ---
|
14
|
+
def commit: (?id: String?, ?message: String?, ?tag: String?, ?type: Symbol) -> Elements::GitCommit
|
15
|
+
def branch: (name: String, ?start_commit_id: String?) -> Elements::GitBranch
|
16
|
+
def checkout: (name: String) -> String
|
17
|
+
def merge: (from_branch_name: String, ?id: String?, ?tag: String?, ?type: Symbol) -> Elements::GitCommit
|
18
|
+
def cherry_pick: (commit_id: String, ?parent_override_id: String?) -> Elements::GitCommit
|
19
|
+
|
20
|
+
# --- Base Class Implementation ---
|
21
|
+
def to_h_content: () -> Hash[Symbol, untyped] # More specific: Hash[Symbol, Array[Hash[Symbol, untyped]] | Array[String] | String]
|
22
|
+
def identifiable_elements: () -> Hash[Symbol, Array[Elements::GitCommit | Elements::GitBranch]]
|
23
|
+
|
24
|
+
# Class method for deserialization
|
25
|
+
def self.from_h: (Hash[Symbol, untyped] data_hash, version: String | Integer | nil, checksum: String?) -> GitgraphDiagram
|
26
|
+
|
27
|
+
# --- Private/Protected Methods ---
|
28
|
+
private
|
29
|
+
def generate_commit_id: (Array[String] parent_ids, String? message) -> String
|
30
|
+
def current_head_commit_id: () -> String?
|
31
|
+
|
32
|
+
# Inherited protected method
|
33
|
+
# def update_checksum!: () -> String # Defined in Base, but accessible via send in from_h
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
module Diagrams
|
2
|
+
class PieDiagram < Base
|
3
|
+
attr_reader title: ::String
|
4
|
+
attr_reader slices: ::Array[Elements::Slice]
|
5
|
+
|
6
|
+
# Initializes a new PieDiagram.
|
7
|
+
def initialize: (?title: ::String?, ?slices: ::Array[Elements::Slice]?, ?version: Integer | String?) -> void
|
8
|
+
|
9
|
+
# Adds a slice to the diagram.
|
10
|
+
# Note: update_checksum and initial_load are internal flags.
|
11
|
+
def add_slice: (Elements::Slice slice, ?update_checksum: bool, ?initial_load: bool) -> Elements::Slice
|
12
|
+
|
13
|
+
# Finds a slice by its label.
|
14
|
+
def find_slice: (::String label) -> Elements::Slice?
|
15
|
+
|
16
|
+
# Calculates the total raw value of all slices.
|
17
|
+
def total_value: () -> ::Float
|
18
|
+
|
19
|
+
# Returns the specific content of the pie diagram as a hash.
|
20
|
+
def to_h_content: () -> { title: ::String, slices: ::Array[Hash[Symbol, untyped]] }
|
21
|
+
|
22
|
+
# Returns a hash mapping element types to their collections for diffing.
|
23
|
+
def identifiable_elements: () -> { slices: ::Array[Elements::Slice] }
|
24
|
+
|
25
|
+
# Class method to create a PieDiagram from a hash.
|
26
|
+
def self.from_h: (Hash[Symbol | String, untyped] data_hash, version: Integer | String?, checksum: String?) -> PieDiagram
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
# Validates the consistency of slices during initialization.
|
31
|
+
def validate_elements!: () -> void
|
32
|
+
|
33
|
+
# Recalculates the percentage for each slice based on the total value.
|
34
|
+
def recalculate_percentages!: () -> void
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
module Diagrams
|
2
|
+
class StateDiagram < Base
|
3
|
+
attr_reader title: ::String
|
4
|
+
attr_reader states: ::Array[Elements::State]
|
5
|
+
attr_reader transitions: ::Array[Elements::Transition]
|
6
|
+
attr_reader events: ::Array[Elements::Event]
|
7
|
+
|
8
|
+
# Initializes a new StateDiagram.
|
9
|
+
def initialize: (?title: ::String?, ?states: ::Array[Elements::State]?, ?transitions: ::Array[Elements::Transition]?, ?events: ::Array[Elements::Event]?, ?version: Integer | String?) -> void
|
10
|
+
|
11
|
+
# Adds a state to the diagram.
|
12
|
+
def add_state: (Elements::State state) -> Elements::State
|
13
|
+
|
14
|
+
# Adds a transition to the diagram.
|
15
|
+
def add_transition: (Elements::Transition transition) -> Elements::Transition
|
16
|
+
|
17
|
+
# Adds an event to the diagram.
|
18
|
+
def add_event: (Elements::Event event) -> Elements::Event
|
19
|
+
|
20
|
+
# Finds a state by its ID.
|
21
|
+
def find_state: (::String state_id) -> Elements::State?
|
22
|
+
|
23
|
+
# Finds an event by its ID.
|
24
|
+
def find_event: (::String event_id) -> Elements::Event?
|
25
|
+
|
26
|
+
# Returns the specific content of the state diagram as a hash.
|
27
|
+
def to_h_content: () -> { title: ::String, states: ::Array[Hash[Symbol, untyped]], transitions: ::Array[Hash[Symbol, untyped]], events: ::Array[Hash[Symbol, untyped]] }
|
28
|
+
|
29
|
+
# Returns a hash mapping element types to their collections for diffing.
|
30
|
+
def identifiable_elements: () -> { states: ::Array[Elements::State], transitions: ::Array[Elements::Transition], events: ::Array[Elements::Event] }
|
31
|
+
|
32
|
+
# Class method to create a StateDiagram from a hash.
|
33
|
+
def self.from_h: (Hash[Symbol | String, untyped] data_hash, version: Integer | String?, checksum: String?) -> StateDiagram
|
34
|
+
|
35
|
+
private
|
36
|
+
|
37
|
+
# Validates the consistency of elements during initialization.
|
38
|
+
def validate_elements!: () -> void
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module Diagrams
|
2
|
+
# Represents a timeline diagram illustrating a chronology of events.
|
3
|
+
class TimelineDiagram < Base
|
4
|
+
DEFAULT_SECTION_TITLE: String
|
5
|
+
|
6
|
+
# Instance Variables (via attr_reader)
|
7
|
+
attr_reader title: String?
|
8
|
+
attr_reader sections: Array[Elements::TimelineSection]
|
9
|
+
|
10
|
+
# Initialization
|
11
|
+
def initialize: (?title: String?, ?sections: Array[Elements::TimelineSection], ?version: String | Integer) -> void
|
12
|
+
|
13
|
+
# Public Methods
|
14
|
+
def set_title: (String new_title) -> String
|
15
|
+
def add_section: (String section_title) -> Elements::TimelineSection
|
16
|
+
def add_period: (period_label: String, events: String | Array[String]) -> Elements::TimelinePeriod
|
17
|
+
|
18
|
+
# --- Base Class Implementation ---
|
19
|
+
def to_h_content: () -> Hash[Symbol, untyped] # More specific: Hash[:title?, String | :sections, Array[Hash]]
|
20
|
+
def identifiable_elements: () -> Hash[Symbol, Array[Elements::TimelineSection | Elements::TimelinePeriod]]
|
21
|
+
|
22
|
+
# Class method for deserialization
|
23
|
+
def self.from_h: (Hash[Symbol, untyped] data_hash, version: String | Integer | nil, checksum: String?) -> TimelineDiagram
|
24
|
+
|
25
|
+
# --- Private Methods ---
|
26
|
+
private
|
27
|
+
def ensure_default_section: () -> void
|
28
|
+
def find_section: (String section_title) -> Elements::TimelineSection?
|
29
|
+
|
30
|
+
# Inherited protected method
|
31
|
+
# def update_checksum!: () -> String
|
32
|
+
end
|
33
|
+
end
|