2020-05-22 05:08:09 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SnippetInputActionCollection
|
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
|
|
|
|
attr_reader :actions
|
|
|
|
|
2020-05-26 14:08:20 -04:00
|
|
|
delegate :empty?, :any?, :[], to: :actions
|
2020-05-22 05:08:09 -04:00
|
|
|
|
|
|
|
def initialize(actions = [])
|
|
|
|
@actions = actions.map { |action| SnippetInputAction.new(action) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_commit_actions
|
|
|
|
strong_memoize(:commit_actions) do
|
|
|
|
actions.map { |action| action.to_commit_action }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid?
|
|
|
|
strong_memoize(:valid) do
|
|
|
|
actions.all?(&:valid?)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|