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
50 Zeilen
1,5 KiB
Ruby
50 Zeilen
1,5 KiB
Ruby
# frozen_string_literal: true
|
|
require_relative '../../plugin_helper'
|
|
|
|
describe CustomWizard::Field do
|
|
let(:field_hash) do
|
|
JSON.parse(File.open(
|
|
"#{Rails.root}/plugins/discourse-custom-wizard/spec/fixtures/field/field.json"
|
|
).read).with_indifferent_access
|
|
end
|
|
|
|
before do
|
|
CustomWizard::Field.register(
|
|
'location',
|
|
'discourse-locations',
|
|
['components', 'helpers', 'lib', 'stylesheets', 'templates'],
|
|
type_opts: {
|
|
prefill: { "coordinates": [35.3082, 149.1244] }
|
|
}
|
|
)
|
|
end
|
|
|
|
it "initialize custom field attributes" do
|
|
field = CustomWizard::Field.new(field_hash)
|
|
expect(field.id).to eq("field_id")
|
|
expect(field.index).to eq(0)
|
|
expect(field.label).to eq("<p>Field Label</p>")
|
|
expect(field.image).to eq("field_image_url.png")
|
|
expect(field.description).to eq("Field description")
|
|
expect(field.required).to eq(true)
|
|
expect(field.key).to eq("field.locale.key")
|
|
expect(field.type).to eq("field_type")
|
|
expect(field.content).to eq([])
|
|
end
|
|
|
|
it "registers custom field types" do
|
|
expect(CustomWizard::Field.types[:location].present?).to eq(true)
|
|
end
|
|
|
|
it "allows custom field types to set default attributes" do
|
|
expect(
|
|
CustomWizard::Field.types[:location][:prefill]
|
|
).to eq({ "coordinates": [35.3082, 149.1244] })
|
|
end
|
|
|
|
it "registers custom field assets" do
|
|
expect(
|
|
CustomWizard::Field.require_assets['discourse-locations']
|
|
).to eq(['components', 'helpers', 'lib', 'stylesheets', 'templates'])
|
|
end
|
|
end
|