Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-15 14:22:53 +01:00
ceef3f4bc9
* Re structure builder logic to allow for step conditionality Concerns - Performance. Look at whether the additional build in the steps controller can be reduced - Does not work if applied to the last step. - Certain conditions will not work with the first step(?) - How should this be scoped to known functionality? * Add indexes and conditions to steps and fields * Complete and add spec * Complete backend * Complete step conditionality and field indexing * Fix failing spec * Update coverage * Apply rubocop * Apply prettier * Apply prettier to wizard js * Fix schema issues created in merge * Remove setting label for force_final * Improve client wizard cache naming * Improve steps controller and spec conditionality * Improve final step attribute naming * Fix failing spec * Linting * Add one more final step test * Linting * Fix eslint issues * Apply prettier * Linting, syntax, merge and copy cleanups * Update wizard-admin.scss * Fix template linting * Rubocop fixes
123 Zeilen
2 KiB
Ruby
123 Zeilen
2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class CustomWizard::FieldSerializer < ::ApplicationSerializer
|
|
|
|
attributes :id,
|
|
:index,
|
|
:type,
|
|
:required,
|
|
:value,
|
|
:label,
|
|
:placeholder,
|
|
:description,
|
|
:image,
|
|
:file_types,
|
|
:format,
|
|
:limit,
|
|
:property,
|
|
:content,
|
|
:validations,
|
|
:max_length,
|
|
:char_counter
|
|
|
|
def id
|
|
object.id
|
|
end
|
|
|
|
def index
|
|
object.index
|
|
end
|
|
|
|
def type
|
|
object.type
|
|
end
|
|
|
|
def required
|
|
object.required
|
|
end
|
|
|
|
def value
|
|
object.value
|
|
end
|
|
|
|
def include_value?
|
|
object.value.present?
|
|
end
|
|
|
|
def i18n_key
|
|
@i18n_key ||= "wizard.step.#{object.step.id}.fields.#{object.id}".underscore
|
|
end
|
|
|
|
def label
|
|
return object.label if object.label.present?
|
|
I18n.t("#{object.key || i18n_key}.label", default: '')
|
|
end
|
|
|
|
def include_label?
|
|
label.present?
|
|
end
|
|
|
|
def description
|
|
return object.description if object.description.present?
|
|
I18n.t("#{object.key || i18n_key}.description", default: '', base_url: Discourse.base_url)
|
|
end
|
|
|
|
def include_description?
|
|
description.present?
|
|
end
|
|
|
|
def image
|
|
object.image
|
|
end
|
|
|
|
def include_image?
|
|
object.image.present?
|
|
end
|
|
|
|
def placeholder
|
|
I18n.t("#{object.key || i18n_key}.placeholder", default: '')
|
|
end
|
|
|
|
def include_placeholder?
|
|
placeholder.present?
|
|
end
|
|
|
|
def file_types
|
|
object.file_types
|
|
end
|
|
|
|
def format
|
|
object.format
|
|
end
|
|
|
|
def limit
|
|
object.limit
|
|
end
|
|
|
|
def property
|
|
object.property
|
|
end
|
|
|
|
def content
|
|
object.content
|
|
end
|
|
|
|
def validations
|
|
validations = {}
|
|
object.validations&.each do |type, props|
|
|
next unless props["status"]
|
|
validations[props["position"]] ||= {}
|
|
validations[props["position"]][type] = props.merge CustomWizard::RealtimeValidation.types[type.to_sym]
|
|
end
|
|
|
|
validations
|
|
end
|
|
|
|
def max_length
|
|
object.max_length
|
|
end
|
|
|
|
def char_counter
|
|
object.char_counter
|
|
end
|
|
end
|