Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-22 17:30:29 +01:00
Merge branch 'master' into pro-release
Dieser Commit ist enthalten in:
Commit
10fb3ee176
6 geänderte Dateien mit 14 neuen und 8 gelöschten Zeilen
|
@ -1 +1,2 @@
|
||||||
|
2.7.8: e07a57e398b6b1676ab42a7e34467556fca5416b
|
||||||
2.5.1: bb85b3a0d2c0ab6b59bcb405731c39089ec6731c
|
2.5.1: bb85b3a0d2c0ab6b59bcb405731c39089ec6731c
|
|
@ -58,6 +58,7 @@
|
||||||
{{tag-chooser
|
{{tag-chooser
|
||||||
tags=value
|
tags=value
|
||||||
onChange=(action "changeValue")
|
onChange=(action "changeValue")
|
||||||
|
everyTag=true
|
||||||
options=(hash
|
options=(hash
|
||||||
none=placeholderKey
|
none=placeholderKey
|
||||||
filterable=true
|
filterable=true
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
//= require_tree_discourse discourse/app/lib
|
//= require_tree_discourse discourse/app/lib
|
||||||
|
//= require_tree_discourse discourse/app/mixins
|
||||||
|
//
|
||||||
|
|
||||||
//= require discourse/app/mixins/singleton
|
//= require discourse/app/mixins/singleton
|
||||||
//= require discourse/app/mixins/upload
|
//= require discourse/app/mixins/upload
|
||||||
//= require discourse/app/mixins/composer-upload
|
//= require discourse/app/mixins/composer-upload
|
||||||
|
//= require discourse/app/mixins/textarea-text-manipulation
|
||||||
|
|
||||||
//= require discourse/app/adapters/rest
|
//= require discourse/app/adapters/rest
|
||||||
|
|
||||||
|
@ -61,10 +64,10 @@
|
||||||
|
|
||||||
//= require markdown-it-bundle
|
//= require markdown-it-bundle
|
||||||
//= require lodash.js
|
//= require lodash.js
|
||||||
//= require mousetrap.js
|
|
||||||
//= require template_include.js
|
//= require template_include.js
|
||||||
//= require caret_position.js
|
//= require caret_position.js
|
||||||
//= require popper.js
|
//= require popper.js
|
||||||
|
//= require uppy.js
|
||||||
//= require bootstrap-modal.js
|
//= require bootstrap-modal.js
|
||||||
//= require bootbox.js
|
//= require bootbox.js
|
||||||
//= require discourse-shims
|
//= require discourse-shims
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
{{tag-chooser tags=field.value maximum=field.limit tabindex=field.tabindex}}
|
{{tag-chooser tags=field.value maximum=field.limit tabindex=field.tabindex everyTag=true}}
|
||||||
|
|
|
@ -48,20 +48,21 @@ class CustomWizard::AdminManagerController < CustomWizard::AdminController
|
||||||
|
|
||||||
imported = []
|
imported = []
|
||||||
failures = []
|
failures = []
|
||||||
|
templates = template_json.is_a?(Array) ? template_json : [template_json]
|
||||||
|
|
||||||
template_json.each do |json|
|
templates.each do |raw_template|
|
||||||
template = CustomWizard::Template.new(json)
|
template = CustomWizard::Template.new(raw_template)
|
||||||
template.save(skip_jobs: true, create: true)
|
template.save(skip_jobs: true, create: true)
|
||||||
|
|
||||||
if template.errors.any?
|
if template.errors.any?
|
||||||
failures.push(
|
failures.push(
|
||||||
id: json['id'],
|
id: template.data['id'],
|
||||||
messages: template.errors.full_messages.join(', ')
|
messages: template.errors.full_messages.join(', ')
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
imported.push(
|
imported.push(
|
||||||
id: json['id'],
|
id: template.data['id'],
|
||||||
name: json['name']
|
name: template.data['name']
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -226,7 +226,7 @@ class CustomWizard::Mapper
|
||||||
end
|
end
|
||||||
|
|
||||||
def interpolate(string, opts = { user: true, wizard: true, value: true, template: false })
|
def interpolate(string, opts = { user: true, wizard: true, value: true, template: false })
|
||||||
return string if string.blank?
|
return string if string.blank? || string.frozen?
|
||||||
|
|
||||||
if opts[:user]
|
if opts[:user]
|
||||||
string.gsub!(/u\{(.*?)\}/) { |match| map_user_field($1) || '' }
|
string.gsub!(/u\{(.*?)\}/) { |match| map_user_field($1) || '' }
|
||||||
|
|
Laden …
In neuem Issue referenzieren