Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 11:52:54 +01:00
Merge pull request #60 from OrbitalOwen/bug-fix/min-length-composer
Add composer to valid text fields for min length option
Dieser Commit ist enthalten in:
Commit
542195a0e0
2 geänderte Dateien mit 18 neuen und 3 gelöschten Zeilen
|
@ -333,7 +333,7 @@ class CustomWizard::Builder
|
|||
end
|
||||
|
||||
def is_text_type(field)
|
||||
['text', 'textarea'].include? field['type']
|
||||
['text', 'textarea', 'composer'].include? field['type']
|
||||
end
|
||||
|
||||
def is_url_type(field)
|
||||
|
|
|
@ -318,11 +318,26 @@ describe CustomWizard::Builder do
|
|||
end
|
||||
|
||||
context 'validation' do
|
||||
it 'applies min length' do
|
||||
it 'applies min length to fields that support min length' do
|
||||
min_length = 3
|
||||
|
||||
@template[:steps][0][:fields][0][:min_length] = min_length
|
||||
@template[:steps][0][:fields][1][:min_length] = min_length
|
||||
@template[:steps][0][:fields][2][:min_length] = min_length
|
||||
CustomWizard::Template.save(@template.as_json)
|
||||
|
||||
expect(
|
||||
perform_update('step_1', step_1_field_1: 'Te')
|
||||
.errors.messages[:step_1_field_1].first
|
||||
).to eq(I18n.t('wizard.field.too_short', label: 'Text', min: 3))
|
||||
).to eq(I18n.t('wizard.field.too_short', label: 'Text', min: min_length))
|
||||
expect(
|
||||
perform_update('step_1', step_1_field_2: 'Te')
|
||||
.errors.messages[:step_1_field_2].first
|
||||
).to eq(I18n.t('wizard.field.too_short', label: 'Textarea', min: min_length))
|
||||
expect(
|
||||
perform_update('step_1', step_1_field_3: 'Te')
|
||||
.errors.messages[:step_1_field_3].first
|
||||
).to eq(I18n.t('wizard.field.too_short', label: 'Composer', min: min_length))
|
||||
end
|
||||
|
||||
it 'standardises boolean entries' do
|
||||
|
|
Laden …
In neuem Issue referenzieren