surveillance 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +42 -0
- data/Rakefile +23 -0
- data/app/assets/javascripts/surveillance.js +6 -0
- data/app/assets/javascripts/surveillance/admin.coffee +4 -0
- data/app/assets/javascripts/surveillance/admin/matrix-questions.coffee +18 -0
- data/app/assets/javascripts/surveillance/application.js +17 -0
- data/app/assets/javascripts/surveillance/collections/branch_rule_collection.coffee +2 -0
- data/app/assets/javascripts/surveillance/form.coffee +7 -0
- data/app/assets/javascripts/surveillance/manifest.coffee +7 -0
- data/app/assets/javascripts/surveillance/models/branch_rule.coffee +21 -0
- data/app/assets/javascripts/surveillance/models/question.coffee +19 -0
- data/app/assets/javascripts/surveillance/models/questions/choosable_question.coffee +15 -0
- data/app/assets/javascripts/surveillance/models/questions/matrix.coffee +19 -0
- data/app/assets/javascripts/surveillance/models/questions/matrix_question.coffee +7 -0
- data/app/assets/javascripts/surveillance/models/questions/number.coffee +17 -0
- data/app/assets/javascripts/surveillance/vendor/backbone.min.js +1 -0
- data/app/assets/javascripts/surveillance/vendor/bootstrap.js +2118 -0
- data/app/assets/javascripts/surveillance/vendor/jquery-ui-sortable.js +2256 -0
- data/app/assets/javascripts/surveillance/vendor/jquery.scrollto.js +210 -0
- data/app/assets/javascripts/surveillance/vendor/underscore.min.js +5 -0
- data/app/assets/javascripts/surveillance/views/attempt_view.coffee +74 -0
- data/app/assets/javascripts/surveillance/views/question_view.coffee +53 -0
- data/app/assets/javascripts/surveillance/views/questions/choice_view.coffee +52 -0
- data/app/assets/javascripts/surveillance/views/questions/matrix_question_view.coffee +26 -0
- data/app/assets/javascripts/surveillance/views/questions/matrix_view.coffee +21 -0
- data/app/assets/javascripts/surveillance/views/questions/number_view.coffee +19 -0
- data/app/assets/javascripts/surveillance/views/questions/order.coffee +9 -0
- data/app/assets/javascripts/surveillance/views/questions/select_matrix_view.coffee +31 -0
- data/app/assets/javascripts/surveillance/views/section_view.coffee +54 -0
- data/app/assets/stylesheets/surveillance/admin.sass +1 -0
- data/app/assets/stylesheets/surveillance/application.css +14 -0
- data/app/assets/stylesheets/surveillance/fonts/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/stylesheets/surveillance/fonts/glyphicons-halflings-regular.svg +229 -0
- data/app/assets/stylesheets/surveillance/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/stylesheets/surveillance/fonts/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/stylesheets/surveillance/overrides.sass +2 -0
- data/app/assets/stylesheets/surveillance/vendor/bootstrap.css +6175 -0
- data/app/controllers/concerns/surveillance/attempts_management_concern.rb +51 -0
- data/app/controllers/concerns/surveillance/base_controller_concern.rb +37 -0
- data/app/controllers/surveillance/admin/attempts_controller.rb +38 -0
- data/app/controllers/surveillance/admin/base_controller.rb +15 -0
- data/app/controllers/surveillance/admin/exports_controller.rb +24 -0
- data/app/controllers/surveillance/admin/options_controller.rb +44 -0
- data/app/controllers/surveillance/admin/questions_controller.rb +59 -0
- data/app/controllers/surveillance/admin/sections_controller.rb +46 -0
- data/app/controllers/surveillance/admin/surveys_controller.rb +43 -0
- data/app/controllers/surveillance/application_controller.rb +7 -0
- data/app/controllers/surveillance/response/attempts_controller.rb +50 -0
- data/app/controllers/surveillance/response/base_controller.rb +38 -0
- data/app/controllers/surveillance/response/partial_attempts_controller.rb +15 -0
- data/app/controllers/surveillance/surveys_controller.rb +6 -0
- data/app/helpers/surveillance/admin/exports_helper.rb +37 -0
- data/app/helpers/surveillance/application_helper.rb +84 -0
- data/app/models/surveillance/answer.rb +56 -0
- data/app/models/surveillance/answer_content.rb +7 -0
- data/app/models/surveillance/attempt.rb +146 -0
- data/app/models/surveillance/branch_rule.rb +52 -0
- data/app/models/surveillance/field_setting.rb +6 -0
- data/app/models/surveillance/option.rb +18 -0
- data/app/models/surveillance/question.rb +50 -0
- data/app/models/surveillance/section.rb +16 -0
- data/app/models/surveillance/survey.rb +38 -0
- data/app/views/layouts/surveillance/application.html.haml +11 -0
- data/app/views/surveillance/admin/attempts/index.html.haml +47 -0
- data/app/views/surveillance/admin/attempts/list.html.haml +11 -0
- data/app/views/surveillance/admin/attempts/overview.html.haml +6 -0
- data/app/views/surveillance/admin/attempts/show.html.haml +62 -0
- data/app/views/surveillance/admin/exports/show.rxls +39 -0
- data/app/views/surveillance/admin/options/_field.html.haml +11 -0
- data/app/views/surveillance/admin/options/_form.html.haml +8 -0
- data/app/views/surveillance/admin/options/_list.html.haml +10 -0
- data/app/views/surveillance/admin/options/_option.html.haml +13 -0
- data/app/views/surveillance/admin/options/edit.html.haml +7 -0
- data/app/views/surveillance/admin/options/new.html.haml +7 -0
- data/app/views/surveillance/admin/questions/_form.html.haml +35 -0
- data/app/views/surveillance/admin/questions/_list.html.haml +17 -0
- data/app/views/surveillance/admin/questions/_question.html.haml +27 -0
- data/app/views/surveillance/admin/questions/edit.html.haml +7 -0
- data/app/views/surveillance/admin/questions/new.html.haml +4 -0
- data/app/views/surveillance/admin/sections/_form.html.haml +16 -0
- data/app/views/surveillance/admin/sections/_list.html.haml +13 -0
- data/app/views/surveillance/admin/sections/_section.html.haml +16 -0
- data/app/views/surveillance/admin/sections/edit.html.haml +7 -0
- data/app/views/surveillance/admin/sections/new.html.haml +4 -0
- data/app/views/surveillance/admin/surveys/_form.html.haml +22 -0
- data/app/views/surveillance/admin/surveys/_list.html.haml +13 -0
- data/app/views/surveillance/admin/surveys/_survey.html.haml +32 -0
- data/app/views/surveillance/admin/surveys/edit.html.haml +7 -0
- data/app/views/surveillance/admin/surveys/index.html.haml +1 -0
- data/app/views/surveillance/admin/surveys/new.html.haml +4 -0
- data/app/views/surveillance/field/date/_form.html.haml +5 -0
- data/app/views/surveillance/field/date/_overview.html.haml +2 -0
- data/app/views/surveillance/field/date/_show.html.haml +10 -0
- data/app/views/surveillance/field/matrix/_form.html.haml +40 -0
- data/app/views/surveillance/field/matrix/_overview.html.haml +19 -0
- data/app/views/surveillance/field/matrix/_questions_fields.html.haml +11 -0
- data/app/views/surveillance/field/matrix/_settings.html.haml +18 -0
- data/app/views/surveillance/field/matrix/_show.html.haml +22 -0
- data/app/views/surveillance/field/multiple_choices/_form.html.haml +18 -0
- data/app/views/surveillance/field/multiple_choices/_settings.html.haml +21 -0
- data/app/views/surveillance/field/multiple_choices/_show.html.haml +21 -0
- data/app/views/surveillance/field/multiple_choices_matrix/_form.html.haml +33 -0
- data/app/views/surveillance/field/multiple_choices_matrix/_show.html.haml +1 -0
- data/app/views/surveillance/field/number/_form.html.haml +5 -0
- data/app/views/surveillance/field/number/_overview.html.haml +2 -0
- data/app/views/surveillance/field/number/_settings.html.haml +2 -0
- data/app/views/surveillance/field/number/_show.html.haml +10 -0
- data/app/views/surveillance/field/order/_form.html.haml +17 -0
- data/app/views/surveillance/field/order/_overview.html.haml +22 -0
- data/app/views/surveillance/field/order/_settings.html.haml +11 -0
- data/app/views/surveillance/field/order/_show.html.haml +8 -0
- data/app/views/surveillance/field/select_matrix/_form.html.haml +17 -0
- data/app/views/surveillance/field/shared/_rules_form.html.haml +30 -0
- data/app/views/surveillance/field/shared/settings/_boolean.html.haml +9 -0
- data/app/views/surveillance/field/shared/settings/_number.html.haml +5 -0
- data/app/views/surveillance/field/single_choice/_form.html.haml +16 -0
- data/app/views/surveillance/field/single_choice/_overview.html.haml +14 -0
- data/app/views/surveillance/field/single_choice/_settings.html.haml +2 -0
- data/app/views/surveillance/field/single_choice/_show.html.haml +21 -0
- data/app/views/surveillance/field/single_select/_form.html.haml +4 -0
- data/app/views/surveillance/field/single_select/_overview.html.haml +14 -0
- data/app/views/surveillance/field/single_select/_show.html.haml +13 -0
- data/app/views/surveillance/field/text/_form.html.haml +5 -0
- data/app/views/surveillance/field/text/_overview.html.haml +2 -0
- data/app/views/surveillance/field/text/_show.html.haml +10 -0
- data/app/views/surveillance/field/text_area/_form.html.haml +5 -0
- data/app/views/surveillance/field/text_area/_overview.html.haml +1 -0
- data/app/views/surveillance/field/text_area/_show.html.haml +10 -0
- data/app/views/surveillance/response/attempts/complete.html.haml +11 -0
- data/app/views/surveillance/response/attempts/edit.html.haml +15 -0
- data/app/views/surveillance/sections/_section.html.haml +24 -0
- data/app/views/surveillance/surveys/_survey.html.haml +4 -0
- data/app/views/surveillance/surveys/index.html.haml +8 -0
- data/app/views/surveillance/surveys/show.html.haml +15 -0
- data/config/locales/surveillance.fr.yml +165 -0
- data/config/routes.rb +30 -0
- data/db/migrate/20130626115136_create_surveillance_surveys.rb +13 -0
- data/db/migrate/20130626115805_create_surveillance_sections.rb +12 -0
- data/db/migrate/20130626130351_create_surveillance_questions.rb +14 -0
- data/db/migrate/20130702111125_create_surveillance_options.rb +11 -0
- data/db/migrate/20130703113456_create_surveillance_attempts.rb +11 -0
- data/db/migrate/20130703115649_create_surveillance_answers.rb +11 -0
- data/db/migrate/20130703115723_create_surveillance_answer_contents.rb +10 -0
- data/db/migrate/20130710151627_create_surveillance_field_settings.rb +11 -0
- data/db/migrate/20130711100032_create_surveillance_answers_options_join_table.rb +7 -0
- data/db/migrate/20130729143002_create_surveillance_branch_rules.rb +14 -0
- data/db/migrate/20140212153506_add_state_to_surveillance_attempts.rb +6 -0
- data/db/migrate/20140213101147_add_access_token_to_surveillance_attempts.rb +5 -0
- data/db/migrate/20140213133036_add_partial_to_surveillance_questions.rb +5 -0
- data/lib/generators/surveillance/install/install_generator.rb +34 -0
- data/lib/generators/surveillance/install/templates/initializer.rb +51 -0
- data/lib/surveillance.rb +61 -0
- data/lib/surveillance/branch_action.rb +5 -0
- data/lib/surveillance/branch_condition.rb +5 -0
- data/lib/surveillance/engine.rb +13 -0
- data/lib/surveillance/field.rb +58 -0
- data/lib/surveillance/field/base.rb +149 -0
- data/lib/surveillance/field/date.rb +17 -0
- data/lib/surveillance/field/matrix.rb +66 -0
- data/lib/surveillance/field/matrix_question.rb +13 -0
- data/lib/surveillance/field/multiple_choices.rb +29 -0
- data/lib/surveillance/field/multiple_choices_matrix.rb +13 -0
- data/lib/surveillance/field/number.rb +34 -0
- data/lib/surveillance/field/order.rb +40 -0
- data/lib/surveillance/field/order_question.rb +22 -0
- data/lib/surveillance/field/other_choice.rb +28 -0
- data/lib/surveillance/field/select_matrix.rb +13 -0
- data/lib/surveillance/field/single_choice.rb +36 -0
- data/lib/surveillance/field/single_select.rb +31 -0
- data/lib/surveillance/field/text.rb +13 -0
- data/lib/surveillance/field/text_area.rb +6 -0
- data/lib/surveillance/partials_collection.rb +7 -0
- data/lib/surveillance/setting.rb +24 -0
- data/lib/surveillance/settings_collection.rb +17 -0
- data/lib/surveillance/validators.rb +7 -0
- data/lib/surveillance/validators/answer_validator.rb +9 -0
- data/lib/surveillance/version.rb +3 -0
- data/lib/tasks/surveillance_tasks.rake +4 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +28 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/locales/rails.fr.yml +226 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20140113224541_create_surveillance_surveys.surveillance.rb +14 -0
- data/spec/dummy/db/migrate/20140113224542_create_surveillance_sections.surveillance.rb +13 -0
- data/spec/dummy/db/migrate/20140113224543_create_surveillance_questions.surveillance.rb +15 -0
- data/spec/dummy/db/migrate/20140113224544_create_surveillance_options.surveillance.rb +12 -0
- data/spec/dummy/db/migrate/20140113224545_create_surveillance_attempts.surveillance.rb +12 -0
- data/spec/dummy/db/migrate/20140113224546_create_surveillance_answers.surveillance.rb +12 -0
- data/spec/dummy/db/migrate/20140113224547_create_surveillance_answer_contents.surveillance.rb +11 -0
- data/spec/dummy/db/migrate/20140113224548_create_surveillance_field_settings.surveillance.rb +12 -0
- data/spec/dummy/db/migrate/20140113224549_create_surveillance_answers_options_join_table.surveillance.rb +8 -0
- data/spec/dummy/db/migrate/20140113224550_create_surveillance_branch_rules.surveillance.rb +15 -0
- data/spec/dummy/db/schema.rb +103 -0
- data/spec/dummy/log/development.log +38066 -0
- data/spec/dummy/public/404.html +58 -0
- data/spec/dummy/public/422.html +58 -0
- data/spec/dummy/public/500.html +57 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/spec +1 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/0018421aaf29044fbd13363bbdfd8f44 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/017d7a30ec05c0fb0265fb5167c73ee9 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/034b76adeb89d6ca63cd9eea649331f5 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/05de8fbfacab66a0efe4f9790b2ac723 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/0811effcff3b9107d49398bdba7488e5 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/0d45beae32861dc508fc2db09b9d95b3 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/0d4961f3da5a0d5234736a6abbf42226 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/0f491ed240e1a27bbc05e5213afd48bb +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/10e2a0dbdbb68c055e8b7ccd6f2906d8 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/1173cdef6c662a55ef590489fe26e8fe +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/1b3e93127523ec0f3c93bcd91d4390dc +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/1bb56fbf17ccbb14dcbaa4d6d639e620 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/2bd0ba6a1598c9fa67081d8f906db6f8 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/3fbe053f103de46cc1b320f059b99c1f +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/4144b095447efb810a548b99e41df9eb +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/421d097cb8d88f975d8ccf75c9e5e306 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/474bc1c9055df6cc1cdff58817a6cb41 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/4829d251eeb22cdbd05b27b6ba809538 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/4f584ca3f0c8ec62906e6f03bc5963c2 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/55d647d88e01b91b2a146e7db0481c09 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/62db8b5885b79c5dc0667fab0fbf46bb +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/7080a4d265fe784c9704db71f81da832 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/7220af243fd39e3dffd233252e4a8c17 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/7cd0e5bfe12b86ed494d02e8e5b62bbf +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/7e37a8ae2a50653b388d57c573d12548 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/8113790dad1da8858c82cfc3eb14ef87 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/83997102fc04f275cd6cd8c1ddb55835 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/8a7b047a16adbc640e03eaabe4a4fe93 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/90b48fb4bfa22ddcd063734065d27086 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/935886b24c90d344752d2a80e3657801 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/9606a6d70af63ce3fea26ded0a69d5c2 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/97db73fdf0bbab24fb92892c61ec7a9b +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/a23bb60554e715c228ae3cdfb5d81807 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/ad17e102b9f9288a9e919b0b0a2ab05b +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/c26ae1f6640b52c232bd392a6e2f7110 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/c6cb3deca0f08bd9569d00fca09272da +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/d39b4eebbd0042342e10497a34fd6378 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/d5ee573b2abdcdc245a830bde2dd76f3 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/d6487e59842ff206d84f6de5e3a7400c +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/dafa124ddd0e828d7c5c0a5c4db455ba +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/e5bbd03518f9abc3e9bc1373c74fd3f1 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/ed5aa255edff522c2e36e6f0151ff747 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/ee263a426f6530013f86aa860448fa91 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/efa0c4d855d425fdf4b63ab26c45e94c +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/f2881259fd5bad1c0a5b1ab5dff97c47 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/f34108e540cff2fbc32036da452ca6ae +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/f7e7e00ef8efc13c6a2628e453344440 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/f9a44009076e46b0f35af5e7031a1871 +0 -0
- data/spec/spec_helper.rb +87 -0
- metadata +598 -0
@@ -0,0 +1,16 @@
|
|
1
|
+
module Surveillance
|
2
|
+
class Section < ActiveRecord::Base
|
3
|
+
belongs_to :survey, class_name: "Surveillance::Survey",
|
4
|
+
inverse_of: :sections
|
5
|
+
|
6
|
+
has_many :questions, -> { ordered }, as: :parent,
|
7
|
+
class_name: "Surveillance::Question", dependent: :destroy,
|
8
|
+
inverse_of: :parent
|
9
|
+
accepts_nested_attributes_for :questions
|
10
|
+
|
11
|
+
validates_presence_of :title, :position
|
12
|
+
|
13
|
+
scope :includes_all, -> { includes(questions: :questions) }
|
14
|
+
scope :ordered, -> { order("surveillance_sections.position ASC") }
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
module Surveillance
|
2
|
+
class Survey < ActiveRecord::Base
|
3
|
+
has_many :sections, -> { ordered }, foreign_key: "survey_id",
|
4
|
+
dependent: :destroy, inverse_of: :survey
|
5
|
+
accepts_nested_attributes_for :sections, allow_destroy: true
|
6
|
+
|
7
|
+
has_many :questions, through: :sections
|
8
|
+
|
9
|
+
has_many :attempts, class_name: "Surveillance::Attempt",
|
10
|
+
foreign_key: "survey_id", dependent: :destroy, inverse_of: :survey
|
11
|
+
|
12
|
+
validates_presence_of :title
|
13
|
+
|
14
|
+
scope :includes_all, -> {
|
15
|
+
includes(
|
16
|
+
sections: {
|
17
|
+
questions: [:questions, :options, :settings, :branch_rules]
|
18
|
+
}
|
19
|
+
)
|
20
|
+
}
|
21
|
+
|
22
|
+
scope :published, -> { where(published: true) }
|
23
|
+
|
24
|
+
scope :all_with_answers, -> {
|
25
|
+
includes(
|
26
|
+
sections: { questions: [:questions, { options: :answers} ] }
|
27
|
+
)
|
28
|
+
}
|
29
|
+
|
30
|
+
def closed?
|
31
|
+
!published || (end_date && end_date < Time.now.to_date)
|
32
|
+
end
|
33
|
+
|
34
|
+
def attempt_from_ip(ip_address)
|
35
|
+
attempts.find_by_ip_address(ip_address)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
%h1
|
2
|
+
= "Sondage #{ survey.title }"
|
3
|
+
= link_to admin_surveys_path, class: "btn btn-default pull-right" do
|
4
|
+
%i.fa.fa-arrow-left
|
5
|
+
Retour à la liste des sondages
|
6
|
+
|
7
|
+
%ul.nav.nav-tabs
|
8
|
+
%li.active
|
9
|
+
%a{"data-toggle" => "tab", :href => "#liste-reponses"}
|
10
|
+
Liste des réponses
|
11
|
+
%li
|
12
|
+
%a{"data-toggle" => "tab", :href => "#recap"}
|
13
|
+
Recapitulatif
|
14
|
+
|
15
|
+
.tab-content.inside-shadow
|
16
|
+
|
17
|
+
#liste-reponses.tab-pane.fade.in.active
|
18
|
+
%table.table.table-striped.table-hover
|
19
|
+
%thead
|
20
|
+
%tr
|
21
|
+
%th= t("surveillance.attempts.answer_date")
|
22
|
+
%th= t("surveillance.attempts.state")
|
23
|
+
%th= t("surveillance.attempts.ip_address")
|
24
|
+
%th
|
25
|
+
%tbody
|
26
|
+
- attempts.each do |attempt|
|
27
|
+
%tr.attempt
|
28
|
+
%td
|
29
|
+
= l(attempt.created_at)
|
30
|
+
%td
|
31
|
+
= attempt.state_label
|
32
|
+
%td
|
33
|
+
= attempt.ip_address
|
34
|
+
%td
|
35
|
+
= link_to "Voir les réponses", admin_attempt_path(attempt), class: "btn btn-default"
|
36
|
+
= link_to admin_attempt_path(attempt), class: "btn btn-danger", method: 'delete', data: { confirm: t("flashes.surveillance/admin/attempts.destroy.confirm_message") } do
|
37
|
+
%i.fa.fa-times
|
38
|
+
Supprimer
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
#recap.tab-pane.fade
|
43
|
+
|
44
|
+
- survey.sections.each do |section|
|
45
|
+
%h1= section.title
|
46
|
+
- section.questions.each do |question|
|
47
|
+
= survey_overview_for question
|
@@ -0,0 +1,11 @@
|
|
1
|
+
= link_to "Retour à la liste des sondages", admin_project_surveys_path(@project), class: "btn btn-default"
|
2
|
+
%br
|
3
|
+
%br
|
4
|
+
- @attempts.each do |attempt|
|
5
|
+
.attempt
|
6
|
+
.title.pull-left
|
7
|
+
Répondu le :
|
8
|
+
%label.pull-left
|
9
|
+
= l(attempt.created_at)
|
10
|
+
= link_to "Voir les réponses", show_admin_survey_attempts_path(@survey, attempt), class: "btn btn-primary pull-right"
|
11
|
+
.clear
|
@@ -0,0 +1,62 @@
|
|
1
|
+
.attempt
|
2
|
+
.pull-right
|
3
|
+
= link_to "Retour", admin_survey_attempts_path(attempt.survey), class: "btn btn-primary"
|
4
|
+
|
5
|
+
%h2.title
|
6
|
+
Questionnaire
|
7
|
+
%strong
|
8
|
+
= surround '"' do
|
9
|
+
= attempt.survey.title
|
10
|
+
|
11
|
+
.clearfix
|
12
|
+
|
13
|
+
.attempt-additional-data.well
|
14
|
+
.date
|
15
|
+
= t("surveillance.attempts.answer_date")
|
16
|
+
\:
|
17
|
+
%strong= l(attempt.created_at)
|
18
|
+
.state
|
19
|
+
= t("surveillance.attempts.state")
|
20
|
+
\:
|
21
|
+
%strong= attempt.state_label
|
22
|
+
|
23
|
+
.ip-address
|
24
|
+
= t("surveillance.attempts.ip_address")
|
25
|
+
\:
|
26
|
+
%strong= attempt.ip_address
|
27
|
+
|
28
|
+
.ip-address
|
29
|
+
= t("surveillance.attempts.last_answered_section")
|
30
|
+
\:
|
31
|
+
%strong
|
32
|
+
- if (last_answered_section = survey.sections[attempt.last_answered_section])
|
33
|
+
= last_answered_section.title
|
34
|
+
- else
|
35
|
+
= t("surveillance.attempts.no_last_answered_section")
|
36
|
+
|
37
|
+
|
38
|
+
%hr
|
39
|
+
|
40
|
+
%h2
|
41
|
+
Réponses
|
42
|
+
|
43
|
+
%hr
|
44
|
+
|
45
|
+
- survey.sections.each_with_index do |section, index|
|
46
|
+
.attempt-section{ class: ("not-answered" if index > attempt.last_answered_section) }
|
47
|
+
%h3
|
48
|
+
= section.title
|
49
|
+
|
50
|
+
- section.questions.each do |question|
|
51
|
+
.survey-answer
|
52
|
+
= survey_answer_for(attempt, question)
|
53
|
+
%br
|
54
|
+
%hr
|
55
|
+
%br
|
56
|
+
|
57
|
+
%br
|
58
|
+
%hr
|
59
|
+
%br
|
60
|
+
= link_to "Retour", admin_survey_attempts_path(attempt.survey), class: "btn btn-primary"
|
61
|
+
%br
|
62
|
+
%br
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# Create sheet
|
2
|
+
@sheet = workbook.create_worksheet
|
3
|
+
|
4
|
+
questions = sections.reduce([]) do |headers, section|
|
5
|
+
headers + section.questions.reduce([]) do |section_headers, question|
|
6
|
+
section_headers + if question.field.has_sub_questions?
|
7
|
+
sub_questions = question.questions
|
8
|
+
|
9
|
+
if question.field.display_other_field?(question)
|
10
|
+
sub_questions + [question]
|
11
|
+
else
|
12
|
+
sub_questions
|
13
|
+
end
|
14
|
+
else
|
15
|
+
[question]
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
columns = [t("surveillance.attempts.state")] + questions.map(&:column_header)
|
21
|
+
last_column_index = columns.length - 1
|
22
|
+
|
23
|
+
@sheet.row(0).concat(columns)
|
24
|
+
set_format(0, (0..last_column_index), :black_background)
|
25
|
+
(0..last_column_index).each { |n| @sheet.column(n).width = 30 }
|
26
|
+
|
27
|
+
attempts.each_with_index do |attempt, index|
|
28
|
+
row = index + 1
|
29
|
+
|
30
|
+
answers = questions.map do |question|
|
31
|
+
if question.field(rebuild: true, attempt: attempt).answer
|
32
|
+
question.field.answer_string
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
@sheet.row(row).concat([attempt.state_label] + answers)
|
37
|
+
end
|
38
|
+
|
39
|
+
@sheet
|
@@ -0,0 +1,11 @@
|
|
1
|
+
%fieldset.option-field
|
2
|
+
.form-group
|
3
|
+
.col-sm-12
|
4
|
+
.input-group
|
5
|
+
= f.text_field :title, class: "form-control"
|
6
|
+
|
7
|
+
= f.hidden_field :_destroy, data: { destroy: true }
|
8
|
+
= link_to "#", class: "btn btn-danger input-group-addon", data: { "destroy-field" => true } do
|
9
|
+
%i.fa.fa-times
|
10
|
+
|
11
|
+
Supprimer
|
@@ -0,0 +1,8 @@
|
|
1
|
+
= simple_form_for option, url: path, html: { class: "form-horizontal "} do |f|
|
2
|
+
= f.input :title
|
3
|
+
|
4
|
+
= f.hidden_field :question_id, value: option.question_id || question.id
|
5
|
+
|
6
|
+
.form-group
|
7
|
+
%button.btn.btn-primary{ type: "submit" }
|
8
|
+
= option.new_record? ? "Ajouter" : "Mettre à jour"
|
@@ -0,0 +1,10 @@
|
|
1
|
+
.project-survey-options.form-group
|
2
|
+
.col-sm-12
|
3
|
+
%legend
|
4
|
+
Options
|
5
|
+
|
6
|
+
= link_to new_admin_question_option_path(question), class: "btn btn-default" do
|
7
|
+
Ajouter une option
|
8
|
+
|
9
|
+
.sections-list
|
10
|
+
= render partial: "surveillance/admin/options/option", collection: question.options
|
@@ -0,0 +1,13 @@
|
|
1
|
+
.list-item.survey-container{ data: { id: option.id } }
|
2
|
+
.list-item-inner
|
3
|
+
.name.pull-left.padding5
|
4
|
+
= option.title
|
5
|
+
|
6
|
+
.drag-handle.pull-right
|
7
|
+
%i.icon-resize-vertical
|
8
|
+
|
9
|
+
.btn-group.pull-right
|
10
|
+
= link_to "Supprimer", admin_option_path(option), class: "btn btn-danger delete-btn", method: 'delete'
|
11
|
+
= link_to "Modifier", edit_admin_option_path(option), class: "btn btn-primary"
|
12
|
+
|
13
|
+
.clearfix
|
@@ -0,0 +1,35 @@
|
|
1
|
+
= simple_form_for question, url: path, html: { class: "form-horizontal "} do |f|
|
2
|
+
= f.input :field_type, collection: Surveillance::Field.field_types_enum
|
3
|
+
|
4
|
+
= f.input :title, input_html: { rows: 5 }
|
5
|
+
|
6
|
+
= f.input :mandatory
|
7
|
+
|
8
|
+
= f.input :description, hint: "Affiché en dessous de la question.", input_html: { rows: 5 }
|
9
|
+
|
10
|
+
- if Surveillance.partials.length > 0
|
11
|
+
= f.input :partial, collection: Surveillance.partials
|
12
|
+
|
13
|
+
= settings_fields_for(f, question)
|
14
|
+
|
15
|
+
- if question.persisted? && question.field.choosable?
|
16
|
+
.quesiton-options
|
17
|
+
%legend
|
18
|
+
Choix de réponse
|
19
|
+
|
20
|
+
%p.help-block
|
21
|
+
Définissez-ici les choix de réponse possibles pour cette question
|
22
|
+
|
23
|
+
= f.fields_for :options do |fo|
|
24
|
+
= render partial: "surveillance/admin/options/field", locals: { f: fo } if fo.object
|
25
|
+
|
26
|
+
= link_to_add_fields "<i class=\"fa fa-plus\"></i> Ajouter une option", "#question-option-#{ f.object.id }", builder: f, relation: :options, partial: "surveillance/admin/options/field"
|
27
|
+
|
28
|
+
.form-group.form-actions
|
29
|
+
%button.btn.btn-primary{ type: "submit" }
|
30
|
+
%i.fa.fa-check
|
31
|
+
= question.new_record? ? "Ajouter" : "Mettre à jour"
|
32
|
+
|
33
|
+
= link_to edit_admin_section_path(question.parent || section), class: "btn btn-default" do
|
34
|
+
%i.fa.fa-arrow-left
|
35
|
+
Retour
|
@@ -0,0 +1,17 @@
|
|
1
|
+
.project-survey-questions
|
2
|
+
%legend
|
3
|
+
Questions
|
4
|
+
|
5
|
+
.row
|
6
|
+
.col-sm-12
|
7
|
+
%p.help-block
|
8
|
+
Ajoutez ici les questions de la section du questionnaire
|
9
|
+
= link_to new_admin_section_question_path(section), class: "btn btn-primary" do
|
10
|
+
%i.fa.fa-plus
|
11
|
+
Ajouter une question
|
12
|
+
%br
|
13
|
+
%br
|
14
|
+
.row
|
15
|
+
.col-sm-12
|
16
|
+
.sections-list
|
17
|
+
= render partial: "surveillance/admin/questions/question", collection: section.questions, locals: { f: f }
|
@@ -0,0 +1,27 @@
|
|
1
|
+
.panel.panel-default.list-item.survey-container{ data: { id: question.id } }
|
2
|
+
.panel-heading.list-item-inner
|
3
|
+
.name.pull-left.padding5
|
4
|
+
= question.title.html_safe
|
5
|
+
|
6
|
+
.drag-handle.pull-right
|
7
|
+
%i.icon-resize-vertical
|
8
|
+
|
9
|
+
.btn-group.pull-right
|
10
|
+
%button.btn.btn-default{ type: "button", data: { toggle: "collapse", target: "#question-branch-rules-#{ question.id }" } }
|
11
|
+
Actions conditionnelles
|
12
|
+
|
13
|
+
= link_to "Modifier", edit_admin_question_path(question), class: "btn btn-primary"
|
14
|
+
|
15
|
+
= link_to admin_question_path(question), class: "btn btn-danger delete-btn", method: 'delete', data: { confirm: "Êtes-vous sûrs de bien vouloir supperimer cette question ?" } do
|
16
|
+
%i.fa.fa-times
|
17
|
+
Supprimer
|
18
|
+
|
19
|
+
.clearfix
|
20
|
+
|
21
|
+
.panel-body.collapse{ id: "question-branch-rules-#{ question.id }" }
|
22
|
+
= f.fields_for :questions, [question] do |fq|
|
23
|
+
.branch-rules{ id: "branch-rules-#{ fq.object.id }" }
|
24
|
+
= fq.fields_for :branch_rules do |fbr|
|
25
|
+
= render partial: question.field.rules_form_path, locals: { f: fbr, question: question } if fbr.object
|
26
|
+
|
27
|
+
= link_to_add_fields "<i class=\"fa fa-plus\"></i>Ajouter une action conditionnelle", "#branch-rules-#{ fq.object.id }", builder: fq, relation: :branch_rules, partial: question.field.rules_form_path, locals: { question: question }
|
@@ -0,0 +1,16 @@
|
|
1
|
+
= simple_form_for section, url: path, html: { class: "form-horizontal glyph-form" } do |f|
|
2
|
+
= f.input :title
|
3
|
+
/ = f.input :description, as: :rich, input_html: { rows: 5 }
|
4
|
+
= f.input :description, input_html: { rows: 5 }
|
5
|
+
|
6
|
+
- unless section.new_record?
|
7
|
+
= render partial: "surveillance/admin/questions/list", locals: { f: f }
|
8
|
+
|
9
|
+
.form-group.form-actions
|
10
|
+
%button.btn.btn-primary{ type: "submit" }
|
11
|
+
%i.fa.fa-check
|
12
|
+
= section.new_record? ? "Ajouter" : "Mettre à jour"
|
13
|
+
|
14
|
+
= link_to edit_admin_survey_path(section.survey || survey), class: "btn btn-default" do
|
15
|
+
%i.fa.fa-arrow-left
|
16
|
+
Retour
|
@@ -0,0 +1,13 @@
|
|
1
|
+
.survey-sections
|
2
|
+
%legend
|
3
|
+
Sections
|
4
|
+
|
5
|
+
= link_to new_admin_survey_section_path(survey), class: "btn btn-primary" do
|
6
|
+
%i.fa.fa-plus
|
7
|
+
Ajouter une section
|
8
|
+
|
9
|
+
%br
|
10
|
+
%br
|
11
|
+
|
12
|
+
.sections-list
|
13
|
+
= render partial: "surveillance/admin/sections/section", collection: survey.sections
|
@@ -0,0 +1,16 @@
|
|
1
|
+
.panel.panel-default.list-item.survey-container{ data: { id: section.id } }
|
2
|
+
.panel-heading.list-item-inner
|
3
|
+
.name.pull-left.padding5
|
4
|
+
= section.title
|
5
|
+
|
6
|
+
.drag-handle.pull-right
|
7
|
+
%i.icon-resize-vertical
|
8
|
+
|
9
|
+
.pull-right
|
10
|
+
= link_to "Modifier", edit_admin_section_path(section), class: "btn btn-primary"
|
11
|
+
|
12
|
+
= link_to admin_section_path(section), class: "btn btn-danger delete-btn", method: 'delete', data: { confirm: "Êtes-vous sûrs de vouloir supprimer cette section ?" } do
|
13
|
+
%i.fa.fa-times
|
14
|
+
Supprimer
|
15
|
+
|
16
|
+
.clearfix
|