1
0
Fork 0
discourse-custom-wizard-unl.../plugin.rb
Angus McLeod dd26ac63af various
2017-10-09 13:52:09 +08:00

124 Zeilen
3,5 KiB
Ruby

# name: discourse-custom-wizard
# about: Create custom wizards
# version: 0.1
# authors: Angus McLeod
register_asset 'stylesheets/custom_wizard.scss'
config = Rails.application.config
config.assets.paths << Rails.root.join("plugins", "discourse-custom-wizard", "assets", "javascripts")
after_initialize do
require_dependency "application_controller"
module ::CustomWizard
class Engine < ::Rails::Engine
engine_name "custom_wizard"
isolate_namespace CustomWizard
end
end
load File.expand_path('../lib/builder.rb', __FILE__)
load File.expand_path('../lib/field.rb', __FILE__)
load File.expand_path('../lib/wizard.rb', __FILE__)
load File.expand_path('../app/controllers/wizard.rb', __FILE__)
load File.expand_path('../app/controllers/steps.rb', __FILE__)
load File.expand_path('../app/controllers/admin.rb', __FILE__)
CustomWizard::Engine.routes.draw do
get ':wizard_id' => 'wizard#index'
get ':wizard_id/steps' => 'steps#index'
get ':wizard_id/steps/:step_id' => 'wizard#index'
put ':wizard_id/steps/:step_id' => 'steps#update'
end
require_dependency 'admin_constraint'
Discourse::Application.routes.append do
namespace :wizard do
mount ::CustomWizard::Engine, at: 'custom'
end
scope module: 'custom_wizard', constraints: AdminConstraint.new do
get 'admin/wizards' => 'admin#index'
get 'admin/wizards/field-types' => 'admin#field_types'
get 'admin/wizards/custom' => 'admin#index'
get 'admin/wizards/custom/new' => 'admin#index'
get 'admin/wizards/custom/all' => 'admin#custom_wizards'
get 'admin/wizards/custom/:wizard_id' => 'admin#find_wizard'
put 'admin/wizards/custom/save' => 'admin#save'
delete 'admin/wizards/custom/remove' => 'admin#remove'
get 'admin/wizards/submissions' => 'admin#index'
get 'admin/wizards/submissions/all' => 'admin#submissions'
get 'admin/wizards/submissions/:wizard_id' => 'admin#find_submissions'
end
end
class ::Wizard
attr_accessor :id, :background, :save_submissions
end
class ::Wizard::Step
attr_accessor :title, :description, :translation_key
end
class ::Wizard::StepUpdater
attr_accessor :result, :step
end
require_dependency 'wizard/field'
Wizard::Field.class_eval do
attr_reader :label, :description, :translation_key
def initialize(attrs)
attrs = attrs || {}
@id = attrs[:id]
@type = attrs[:type]
@required = !!attrs[:required]
@label = attrs[:label]
@description = attrs[:description]
@translation_key = attrs[:translation_key]
@value = attrs[:value]
@choices = []
end
end
::WizardSerializer.class_eval do
attributes :id, :background
def id
object.id
end
def background
object.background
end
def include_start?
object.start
end
end
::WizardStepSerializer.class_eval do
def title
return object.title if object.title
I18n.t("#{object.translation_key || i18n_key}.title", default: '')
end
def description
return object.description if object.description
I18n.t("#{object.translation_key || i18n_key}.description", default: '')
end
end
::WizardFieldSerializer.class_eval do
def label
return object.label if object.label
I18n.t("#{object.translation_key || i18n_key}.label", default: '')
end
def description
return object.description if object.description
I18n.t("#{object.translation_key || i18n_key}.description", default: '')
end
end
end