sunrise-cms 1.0.3 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +25 -0
- data/.rubocop.yml +87 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.rdoc +11 -3
- data/Gemfile +49 -0
- data/README.md +6 -0
- data/Rakefile +4 -2
- data/app/assets/images/sunrise/icons/export.svg +4 -0
- data/app/assets/images/sunrise/icons/import.svg +5 -0
- data/app/assets/javascripts/sunrise/application.js +2 -3
- data/app/assets/javascripts/sunrise/jquery-ui-timepicker-addon.js +2143 -831
- data/app/assets/javascripts/sunrise/jquery.dialog.js.coffee +113 -40
- data/app/assets/javascripts/sunrise/jquery.editable.js.coffee +21 -21
- data/app/assets/javascripts/sunrise/manage.js.coffee +29 -28
- data/app/assets/stylesheets/sunrise/application.css +4 -4
- data/app/assets/stylesheets/sunrise/customize.css +7 -16
- data/app/assets/stylesheets/sunrise/jquery-ui-timepicker-addon.css +11 -0
- data/app/assets/stylesheets/sunrise/main.css +883 -606
- data/app/controllers/sunrise/activities_controller.rb +7 -5
- data/app/controllers/sunrise/application_controller.rb +17 -17
- data/app/controllers/sunrise/dashboard_controller.rb +6 -5
- data/app/controllers/sunrise/manager_controller.rb +145 -104
- data/app/controllers/sunrise/settings_controller.rb +5 -3
- data/app/helpers/sunrise/activities_helper.rb +8 -7
- data/app/helpers/sunrise/application_helper.rb +11 -9
- data/app/helpers/sunrise/dashboard_helper.rb +3 -1
- data/app/helpers/sunrise/manager_helper.rb +28 -27
- data/app/helpers/sunrise/structure_helper.rb +11 -8
- data/app/views/layouts/sunrise/application.html.erb +7 -6
- data/app/views/sunrise/manager/buttons/_export.html.erb +9 -2
- data/app/views/sunrise/manager/buttons/_import.html.erb +25 -0
- data/app/views/sunrise/manager/buttons/_sort.html.erb +3 -3
- data/app/views/sunrise/manager/tree/index.html.erb +1 -1
- data/config/locales/defaults/datetime.rb +7 -7
- data/config/locales/defaults/pluralize.rb +5 -3
- data/config/routes.rb +23 -20
- data/db/migrate/20111216144515_create_assets.rb +9 -7
- data/db/migrate/20111216144915_create_structures.rb +14 -12
- data/db/migrate/20111216145015_create_users.rb +20 -18
- data/db/migrate/20120611095315_create_settings.rb +7 -5
- data/lib/generators/sunrise/install_generator.rb +51 -49
- data/lib/generators/sunrise/templates/config/active_record/sunrise.rb +12 -10
- data/lib/generators/sunrise/templates/config/mongoid/sunrise.rb +14 -12
- data/lib/generators/sunrise/templates/config/seeds.rb +7 -7
- data/lib/generators/sunrise/templates/models/active_record/ability.rb +4 -3
- data/lib/generators/sunrise/templates/models/active_record/asset.rb +5 -3
- data/lib/generators/sunrise/templates/models/active_record/attachment_file.rb +4 -2
- data/lib/generators/sunrise/templates/models/active_record/avatar.rb +7 -5
- data/lib/generators/sunrise/templates/models/active_record/picture.rb +6 -4
- data/lib/generators/sunrise/templates/models/active_record/position_type.rb +5 -3
- data/lib/generators/sunrise/templates/models/active_record/role_type.rb +6 -4
- data/lib/generators/sunrise/templates/models/active_record/settings.rb +5 -3
- data/lib/generators/sunrise/templates/models/active_record/structure.rb +3 -1
- data/lib/generators/sunrise/templates/models/active_record/structure_type.rb +7 -5
- data/lib/generators/sunrise/templates/models/active_record/user.rb +5 -3
- data/lib/generators/sunrise/templates/models/mongoid/ability.rb +4 -3
- data/lib/generators/sunrise/templates/models/mongoid/asset.rb +18 -16
- data/lib/generators/sunrise/templates/models/mongoid/attachment_file.rb +4 -2
- data/lib/generators/sunrise/templates/models/mongoid/avatar.rb +7 -5
- data/lib/generators/sunrise/templates/models/mongoid/picture.rb +4 -2
- data/lib/generators/sunrise/templates/models/mongoid/position_type.rb +5 -3
- data/lib/generators/sunrise/templates/models/mongoid/role_type.rb +6 -4
- data/lib/generators/sunrise/templates/models/mongoid/settings.rb +9 -7
- data/lib/generators/sunrise/templates/models/mongoid/structure.rb +12 -10
- data/lib/generators/sunrise/templates/models/mongoid/structure_type.rb +7 -5
- data/lib/generators/sunrise/templates/models/mongoid/user.rb +37 -35
- data/lib/generators/sunrise/templates/models/sunrise/sunrise_navigation.rb +9 -7
- data/lib/generators/sunrise/templates/models/sunrise/sunrise_page.rb +5 -3
- data/lib/generators/sunrise/templates/models/sunrise/sunrise_structure.rb +10 -9
- data/lib/generators/sunrise/templates/models/sunrise/sunrise_user.rb +15 -13
- data/lib/generators/sunrise/templates/spec/controllers/pages_controller_spec.rb +12 -10
- data/lib/generators/sunrise/templates/spec/controllers/welcome_controller_spec.rb +8 -6
- data/lib/generators/sunrise/templates/spec/factories/structure_factory.rb +6 -5
- data/lib/generators/sunrise/templates/spec/factories/user_factory.rb +19 -18
- data/lib/generators/sunrise/templates/spec/spec_helper.rb +9 -7
- data/lib/generators/sunrise/templates/spec/support/helpers/controller_macros.rb +10 -9
- data/lib/generators/sunrise/templates/uploaders/attachment_file_uploader.rb +4 -2
- data/lib/generators/sunrise/templates/uploaders/avatar_uploader.rb +10 -7
- data/lib/generators/sunrise/templates/uploaders/picture_uploader.rb +9 -6
- data/lib/sunrise-cms.rb +2 -0
- data/lib/sunrise.rb +20 -13
- data/lib/sunrise/abstract_model.rb +103 -106
- data/lib/sunrise/carrierwave/base_uploader.rb +43 -46
- data/lib/sunrise/carrierwave/file_size_validator.rb +16 -11
- data/lib/sunrise/carrierwave/glue.rb +9 -9
- data/lib/sunrise/config.rb +14 -12
- data/lib/sunrise/config/association.rb +4 -3
- data/lib/sunrise/config/base.rb +15 -13
- data/lib/sunrise/config/export.rb +5 -3
- data/lib/sunrise/config/field.rb +26 -24
- data/lib/sunrise/config/form.rb +2 -0
- data/lib/sunrise/config/group.rb +9 -6
- data/lib/sunrise/config/has_fields.rb +6 -5
- data/lib/sunrise/config/has_groups.rb +4 -2
- data/lib/sunrise/config/index.rb +9 -7
- data/lib/sunrise/config/model.rb +20 -14
- data/lib/sunrise/config/navigation.rb +21 -19
- data/lib/sunrise/config/navigation_item.rb +7 -5
- data/lib/sunrise/config/nested_field.rb +13 -12
- data/lib/sunrise/config/page_presenter.rb +5 -2
- data/lib/sunrise/config/show.rb +2 -0
- data/lib/sunrise/core_ext.rb +2 -0
- data/lib/sunrise/core_ext/i18n.rb +9 -9
- data/lib/sunrise/core_ext/string.rb +4 -2
- data/lib/sunrise/engine.rb +22 -16
- data/lib/sunrise/hooks/adapters/active_record.rb +3 -1
- data/lib/sunrise/hooks/adapters/mongoid.rb +4 -2
- data/lib/sunrise/models/ability.rb +12 -10
- data/lib/sunrise/models/asset.rb +43 -43
- data/lib/sunrise/models/position_type.rb +7 -6
- data/lib/sunrise/models/role_type.rb +8 -7
- data/lib/sunrise/models/structure.rb +27 -28
- data/lib/sunrise/models/structure_type.rb +7 -6
- data/lib/sunrise/models/user.rb +39 -37
- data/lib/sunrise/utils.rb +16 -17
- data/lib/sunrise/utils/csv_document.rb +23 -23
- data/lib/sunrise/utils/eval_helpers.rb +41 -39
- data/lib/sunrise/utils/search_wrapper.rb +8 -7
- data/lib/sunrise/utils/transliteration.rb +42 -41
- data/lib/sunrise/version.rb +3 -1
- data/lib/sunrise/views/date_time_input.rb +19 -17
- data/lib/sunrise/views/form_builder.rb +15 -13
- data/lib/sunrise/views/helper.rb +32 -32
- data/lib/sunrise/views/search_wrapper.rb +5 -3
- data/lib/tasks/assets.rake +11 -9
- data/sunrise-cms.gemspec +50 -0
- metadata +85 -596
- data/spec/controllers/sunrise/activities_controller_spec.rb +0 -33
- data/spec/controllers/sunrise/manager_controller_spec.rb +0 -64
- data/spec/controllers/sunrise/settings_controller_spec.rb +0 -45
- data/spec/dummy/Rakefile +0 -7
- data/spec/dummy/app/assets/javascripts/application.js +0 -9
- data/spec/dummy/app/assets/javascripts/sunrise/plugins.js +0 -0
- data/spec/dummy/app/assets/javascripts/welcome.js +0 -2
- data/spec/dummy/app/assets/stylesheets/application.css +0 -7
- data/spec/dummy/app/assets/stylesheets/sunrise/plugins.css +0 -0
- data/spec/dummy/app/assets/stylesheets/welcome.css +0 -4
- data/spec/dummy/app/controllers/application_controller.rb +0 -3
- data/spec/dummy/app/controllers/welcome_controller.rb +0 -5
- data/spec/dummy/app/helpers/application_helper.rb +0 -12
- data/spec/dummy/app/helpers/welcome_helper.rb +0 -2
- data/spec/dummy/app/models/active_record/post.rb +0 -18
- data/spec/dummy/app/models/mongoid/post.rb +0 -27
- data/spec/dummy/app/sunrise/sunrise_post.rb +0 -34
- data/spec/dummy/app/views/layouts/application.html.erb +0 -20
- data/spec/dummy/app/views/public_activity/post/_create.html.erb +0 -5
- data/spec/dummy/app/views/public_activity/post/_destroy.html.erb +0 -5
- data/spec/dummy/app/views/public_activity/post/_update.html.erb +0 -5
- data/spec/dummy/app/views/sunrise/manager/users/thumbs/_record.html.erb +0 -34
- data/spec/dummy/app/views/welcome/index.html.erb +0 -2
- data/spec/dummy/config.ru +0 -4
- data/spec/dummy/config/application.rb +0 -55
- data/spec/dummy/config/boot.rb +0 -10
- data/spec/dummy/config/database.yml +0 -42
- data/spec/dummy/config/database.yml.sample +0 -34
- data/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -33
- data/spec/dummy/config/environments/production.rb +0 -66
- data/spec/dummy/config/environments/test.rb +0 -41
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/config/initializers/devise.rb +0 -216
- data/spec/dummy/config/initializers/inflections.rb +0 -10
- data/spec/dummy/config/initializers/mime_types.rb +0 -5
- data/spec/dummy/config/initializers/secret_token.rb +0 -7
- data/spec/dummy/config/initializers/session_store.rb +0 -8
- data/spec/dummy/config/initializers/sunrise.rb +0 -51
- data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/spec/dummy/config/locales/en.yml +0 -5
- data/spec/dummy/config/mongoid.yml +0 -80
- data/spec/dummy/config/routes.rb +0 -10
- data/spec/dummy/db/migrate/20111227111941_install_acts_as_audited.rb +0 -28
- data/spec/dummy/db/migrate/20111227143901_create_page_parts.rb +0 -20
- data/spec/dummy/db/migrate/20111228152051_create_posts.rb +0 -14
- data/spec/dummy/db/migrate/20120105114018_create_meta_tags.rb +0 -21
- data/spec/dummy/db/migrate/20130214090723_create_activities.rb +0 -23
- data/spec/dummy/db/schema.rb +0 -90
- data/spec/dummy/log/test.log +0 -235
- data/spec/dummy/public/404.html +0 -26
- data/spec/dummy/public/422.html +0 -26
- data/spec/dummy/public/500.html +0 -26
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +0 -6
- data/spec/dummy/tmp/cache/696/1F0/settings%3Ato_key +0 -1
- data/spec/dummy/tmp/cache/87C/5D0/settings%3Apersisted%3F +0 -1
- data/spec/dummy/tmp/cache/91C/830/settings%3Asome_setting +0 -1
- data/spec/dummy/tmp/cache/94E/D10/settings%3Asome_setting2 +0 -1
- data/spec/dummy/tmp/cache/assets/test/sass/f4a02ee710d6db0936c29533f2166c1526a55a9e/select2.scssc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/03bae0b322a9c8706915fdb4f8d50961 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0a4412d6feb107cf35e452cc82a01134 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0c538631f0f094ca39bdb1448da8a4bc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0c94e795dfbbbf3599fdf312aeb577b9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0e7270936d642e566d747ab335c44ec2 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0f894abd40c0b6114a9dff3a0599af7e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0fdc292bf2b2ddb2d0bf079950c8e770 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/10bb80e2753b3d1716765b02ad9a2db3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1349c61c2b491567c1632fcae44110a0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/13e20c0d57b7b851a7f025f5606f833f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/146ce2f3522fd98d4a8a1501f16c7092 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/172c139e25cc08516d5a8c72c777dd4d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/18b64b11b8b00cc21a396da25a5ff156 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/197d8d604ec08a638b656e053944b734 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1b73ae25962d8ff98f9f008b73c64bf4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1bdb903463fe67323dbadb0f78337c70 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1ea532f332f1ff667097010cda704c99 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/20215d59350863282208d478ea94cf08 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/212fc15df4fd708ebdef5bd3be2191c1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/256dcb01e7f35659d770584fd71a85d2 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/27ec6453d976c5e273e6f2c25830492c +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3006732de695a5dfe249dcbf6852b543 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3008328e1cba59ad00ac79ac20275f17 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/31ffcb9d2aba762160a2f4341e5cfd50 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/32ae3cda2e7c692fc9711ab76fcf1c62 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/35948a84ebda6147e5e5b67191ae37d8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/37766ae8287a873cb196a187f3253e66 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/37b44bd55598f75d532d9edbe8c98336 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/383908afbabb6096b774ab7c1856a102 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/38611f05ed0bf72a4755c136796ff5d4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3b99bacd5915b4ff7fb2664bc2aa30d0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/443ca9dc693ccf91d6e1cecaffe0fa9a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/45c759123f4f6b42cdcff44b446655a5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4ca01587005a9b895bca383881bec87d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4cffdba2a7aac80c1765e060b152b382 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4d38783b41d7c000fed2419b5173f87a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/51fe2df168cee49df9d4136f59c87872 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/564db16c8d964c3505bfca526e3fccf2 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/56e5bd2f3c94d7a9d0da7c4e05c7ad78 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5807e61754ed8b16702f6ad7ba34d439 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/593d990734170367188181754939b317 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5a44970074ecbfeae2cc9798ed7da7aa +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5e7901fbee32b66040fd6376a8c981d8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5ecbfe03cab317594d2bc1c6866d26db +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/609ce9936a503352d73f954f68be7f81 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/65224b6e799d399f4e6cf4bf98155de2 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6a1e72555b75237fffccb5de8937b4d4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6a8187f5c6f2e115d1a1c21ca2ec81a0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6c9a2f7ab6f8d1f8e3e4cf1d7d6cc68a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6f4f668f70fb14b2132289fed6718f0e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/727e0f830601f307d4c8b9a76e464c1a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/749bd767d6654c80265f5ca0959dc8e1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7a92952d5fff10f09ce91b852d6a744f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7ad564910e515e335bb008989a97efb7 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7b55037b89f2debe558b43fe7542e409 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7bb04b7318793726b5414daaa4f049d4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7c5f37d1af8a5557b67d6ffb8afcc2b5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7f5092f53db371ea56be62557677a506 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7f9ced6d264f71631c80df15194abf4d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/80870efa2a2ddb1de325c224daff5712 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/831e225c0e792be993a1d1dc58f20e54 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/83f98047f864c578534b34068cb015e0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/84361af51e20dcfad7fae0f32f284ab7 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/894aeaae9cc8483fa9f7a5146ff6ff6f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/89567cbb5e7770a065e88360dcd02833 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/89a5be65dc0d00fa22be4375c029d69c +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8bf0319a2b612416dfde2d3b939dbf99 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8cfeb6443a5f7398e67010a202ee2de2 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8e3769f6378278754105f0924e6dd1ff +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/96c321f84bd796096692021bc4a87eed +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/97e875e2282fba5939cf71198faab1f0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9911ee0fc41f519a1c4faa7912547cce +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9ac84ed11232b2f7fc9f80c18844abc8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9ba0cab624f25b68f79447e62fbc6112 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9e9edfa954375fd0cc6498f70b883e8e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a3863764f2fbc185e0d2ea584c7e2174 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a4c4a00b0d2b8334de3ee3169064adad +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a744e8f2a7ce02e7af9784f40c711ed5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a78a33e8cea959257da93b3e67786300 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a9956bd25bbe4c811a1a758f71aec748 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/aa4822def20c419f0e50e2a38e73a1df +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/aaa24da6bd0fcf694077519e189b7392 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b0493d9dbe3afb3268b7ffce2b87bf78 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b2c398b7a51a65be12ba944bdea13415 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b81381e4a978aa69cc2ab1f892a40e97 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b82707486d5133da748e4382c62de995 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/bb83cb3c179681d65c77a41e98f1c70f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/bbc50f2009705d8fd7b91330bc24dcb8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/bcb7548b203cc2c5a484ef7649911c2d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/becade26fead85d486f136be49b45e23 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/bfc0fef30976427a03ddccb1ce78d6e7 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c0dd93a468e038b3653ed4d28874e0cb +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c1d2340cbfe5e80d388f95e7a08698d9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c25afdb537c84a18bd62fc782164d298 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c3dc3ada4560805584739bfe7c2b24d9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c4dc50a79ec929d33d9e2835d1926fd9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c5f990ee58d3727faeb4cfd3f5667e8a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c622effcf1aa225bf2920d2b63ca525c +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d09dc20f2dc66183aa23ce1fd8fc9f2c +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d60bdefb444e91b75e4cc2f3fc49228b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d7c40ebee2fb9471bab352337570ba40 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d9bc94e1e0cc114986f8760bc4eb42ce +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/da4488b32bd6fb75c655a077956c9034 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/daeb51b1ca3de2a1f2146dea431249d3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/dd0e13880601ea049b7c6d8c76ea535f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/dd15d7b9860a8a187c4a6c167dc56547 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/dd8ed9b0203321fd815ba48a5867620e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e1e036b04a3a20b2fb589420ad03b926 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e4f46080338c0c52e3933999a7f8106d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e59a3c2ff941e0fdc7987168580bf4cc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e6cfe2e09e34ec2b24494a74eed5243a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e8e088454cc6f38324bd168e299cf08f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e949207f9e9578cfd48ab90bb82ea384 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/ee5a41236d43159aac87f9224a0bcfb8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/ef5f76363cd723089ce62b8c207415a4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f2de4855fd4840abb2f6e80afee5f4ed +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f5165c4d7cee0e7cb99bc069fd4c09b9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f660938bc4a80358883ba6c576e1dd13 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7379cc2d3a2fc4b87d64c68d2d8684f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f81b83e98592ff24dd8518985baa48cd +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f94b13174ed1cc7f087a66c0094ef4cf +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f975cba8c490022ddfc45bab0b512879 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/face6eb5e3ee8802296bdc38e5704d72 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fc9155176668e1a56a5ca3843febe3c3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fd7e46e0b42a510b40f17d1f1bacf80e +0 -0
- data/spec/factories/asset_factory.rb +0 -21
- data/spec/factories/files/rails.png +0 -0
- data/spec/factories/files/silicon_valley.jpg +0 -0
- data/spec/factories/page_factory.rb +0 -10
- data/spec/factories/post_factory.rb +0 -9
- data/spec/factories/structure_factory.rb +0 -22
- data/spec/factories/user_factory.rb +0 -49
- data/spec/generators/install_generator_spec.rb +0 -55
- data/spec/models/avatar_spec.rb +0 -138
- data/spec/models/i18n_backend.rb +0 -30
- data/spec/models/structure_spec.rb +0 -120
- data/spec/models/sunrise/abstract_model_spec.rb +0 -88
- data/spec/models/sunrise/carrierwave/picture_uploader_spec.rb +0 -49
- data/spec/models/sunrise/search_wrapper_spec.rb +0 -21
- data/spec/models/user_spec.rb +0 -63
- data/spec/orm/active_record.rb +0 -5
- data/spec/orm/kaminari/active_record.rb +0 -18
- data/spec/orm/kaminari/mongoid.rb +0 -20
- data/spec/orm/mongoid.rb +0 -15
- data/spec/requests/activities_spec.rb +0 -41
- data/spec/requests/dashboard_spec.rb +0 -35
- data/spec/requests/manager/default/create_spec.rb +0 -43
- data/spec/requests/manager/default/destroy_spec.rb +0 -36
- data/spec/requests/manager/default/edit_spec.rb +0 -72
- data/spec/requests/manager/default/export_spec.rb +0 -121
- data/spec/requests/manager/default/index_spec.rb +0 -67
- data/spec/requests/manager/default/new_spec.rb +0 -59
- data/spec/requests/manager/default/show_spec.rb +0 -41
- data/spec/requests/manager/default/update_spec.rb +0 -73
- data/spec/requests/manager/many/create_spec.rb +0 -52
- data/spec/requests/manager/many/destroy_spec.rb +0 -41
- data/spec/requests/manager/many/edit_spec.rb +0 -43
- data/spec/requests/manager/many/index_spec.rb +0 -54
- data/spec/requests/manager/many/new_spec.rb +0 -40
- data/spec/requests/manager/many/update_spec.rb +0 -55
- data/spec/spec_helper.rb +0 -90
- data/spec/sunrise_spec.rb +0 -29
- data/spec/support/helpers/controller_helper.rb +0 -27
- data/spec/support/helpers/controller_macros.rb +0 -40
- data/spec/support/hooks/structure.rb +0 -5
data/lib/sunrise/config/field.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'sunrise/config/base'
|
2
4
|
|
3
5
|
module Sunrise
|
@@ -7,18 +9,18 @@ module Sunrise
|
|
7
9
|
|
8
10
|
# The condition that must be met on an object
|
9
11
|
attr_reader :if_condition
|
10
|
-
|
12
|
+
|
11
13
|
# The condition that must *not* be met on an object
|
12
14
|
attr_reader :unless_condition
|
13
15
|
|
14
16
|
# Store form block
|
15
17
|
attr_reader :block
|
16
|
-
|
18
|
+
|
17
19
|
def initialize(abstract_model, parent, options = {}, &block)
|
18
|
-
options = {:
|
20
|
+
options = { multiply: false, sort: false }.merge(options)
|
19
21
|
|
20
22
|
super(abstract_model, parent, options)
|
21
|
-
|
23
|
+
|
22
24
|
# Build conditionals
|
23
25
|
@if_condition = options.delete(:if)
|
24
26
|
@unless_condition = options.delete(:unless)
|
@@ -28,31 +30,31 @@ module Sunrise
|
|
28
30
|
def block_given?
|
29
31
|
!block.nil?
|
30
32
|
end
|
31
|
-
|
33
|
+
|
32
34
|
def visible?(object = nil)
|
33
35
|
object.nil? || matches_conditions?(object)
|
34
36
|
end
|
35
|
-
|
37
|
+
|
36
38
|
def input_options
|
37
39
|
@config_options.dup
|
38
40
|
end
|
39
|
-
|
41
|
+
|
40
42
|
def human_name
|
41
43
|
@config_options[:label] || abstract_model.model.human_attribute_name(@name)
|
42
44
|
end
|
43
|
-
|
45
|
+
|
44
46
|
def html_options
|
45
|
-
css = [
|
46
|
-
css <<
|
47
|
-
css <<
|
48
|
-
|
49
|
-
{:
|
47
|
+
css = ['padder']
|
48
|
+
css << 'grey-but' if input_options[:boolean]
|
49
|
+
css << 'tags-edit' if association?
|
50
|
+
|
51
|
+
{ class: css, id: dom_id }.merge(input_options[:html] || {})
|
50
52
|
end
|
51
|
-
|
53
|
+
|
52
54
|
def association?
|
53
55
|
input_options[:association] === true
|
54
56
|
end
|
55
|
-
|
57
|
+
|
56
58
|
def label?
|
57
59
|
@config_options[:label] != false
|
58
60
|
end
|
@@ -66,15 +68,15 @@ module Sunrise
|
|
66
68
|
end
|
67
69
|
|
68
70
|
protected
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
71
|
+
|
72
|
+
# Verifies that the conditionals for this field evaluate to true for the
|
73
|
+
# given object
|
74
|
+
def matches_conditions?(object)
|
75
|
+
return true if if_condition.nil? && unless_condition.nil?
|
76
|
+
|
77
|
+
Array.wrap(if_condition).all? { |condition| evaluate_method(object, condition) } &&
|
78
|
+
Array.wrap(unless_condition).none? { |condition| evaluate_method(object, condition) }
|
79
|
+
end
|
78
80
|
end
|
79
81
|
end
|
80
82
|
end
|
data/lib/sunrise/config/form.rb
CHANGED
data/lib/sunrise/config/group.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'sunrise/config/base'
|
2
4
|
require 'sunrise/config/has_fields'
|
3
5
|
|
@@ -5,22 +7,23 @@ module Sunrise
|
|
5
7
|
module Config
|
6
8
|
class Group < Base
|
7
9
|
include Sunrise::Config::HasFields
|
8
|
-
|
10
|
+
|
9
11
|
def initialize(abstract_model, parent, name = :default, options = nil)
|
10
|
-
options = {:name
|
12
|
+
options = { name: name }.merge(options || {})
|
11
13
|
super(abstract_model, parent, options)
|
12
14
|
@name = name.to_s.tr(' ', '_').downcase.to_sym
|
13
15
|
end
|
14
|
-
|
16
|
+
|
15
17
|
def title
|
16
18
|
return false if @config_options[:title] === false
|
17
|
-
|
19
|
+
|
20
|
+
@config_options[:title] || I18n.t(@name, scope: [:manage, :groups])
|
18
21
|
end
|
19
|
-
|
22
|
+
|
20
23
|
def sidebar?
|
21
24
|
@config_options[:holder] == :sidebar
|
22
25
|
end
|
23
|
-
|
26
|
+
|
24
27
|
def bottom?
|
25
28
|
@config_options[:holder] == :bottom
|
26
29
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'sunrise/config/field'
|
2
4
|
require 'sunrise/config/nested_field'
|
3
5
|
|
@@ -5,25 +7,24 @@ module Sunrise
|
|
5
7
|
module Config
|
6
8
|
# Provides accessors and autoregistering of model's fields.
|
7
9
|
module HasFields
|
8
|
-
|
9
10
|
# Array for store all defined fields
|
10
11
|
def fields
|
11
12
|
@fields ||= []
|
12
13
|
end
|
13
|
-
|
14
|
+
|
14
15
|
# Defines a configuration for a field.
|
15
16
|
def field(name = :custom, options = {}, &block)
|
16
|
-
options = { :
|
17
|
+
options = { name: name.to_sym }.merge(options)
|
17
18
|
fields << Field.new(abstract_model, self, options, &block)
|
18
19
|
end
|
19
20
|
|
20
21
|
# Defines a configuration for a nested attributes
|
21
22
|
def nested_attributes(name, options = {}, &block)
|
22
|
-
options = { :
|
23
|
+
options = { name: name.to_sym }.merge(options)
|
23
24
|
nested_field = NestedField.new(abstract_model, self, options)
|
24
25
|
nested_field.instance_eval &block if block
|
25
26
|
fields << nested_field
|
26
27
|
end
|
27
28
|
end
|
28
29
|
end
|
29
|
-
end
|
30
|
+
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'sunrise/config/group'
|
2
4
|
|
3
5
|
module Sunrise
|
@@ -20,8 +22,8 @@ module Sunrise
|
|
20
22
|
|
21
23
|
# Reader for groups that are marked as visible
|
22
24
|
def visible_groups
|
23
|
-
groups.select {|g| g.visible? }
|
25
|
+
groups.select { |g| g.visible? }
|
24
26
|
end
|
25
27
|
end
|
26
28
|
end
|
27
|
-
end
|
29
|
+
end
|
data/lib/sunrise/config/index.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'sunrise/config/base'
|
2
4
|
require 'sunrise/config/has_groups'
|
3
5
|
require 'sunrise/config/has_fields'
|
@@ -7,27 +9,27 @@ module Sunrise
|
|
7
9
|
class Index < Base
|
8
10
|
include Sunrise::Config::HasFields
|
9
11
|
include Sunrise::Config::HasGroups
|
10
|
-
|
12
|
+
|
11
13
|
# Number of items listed per page
|
12
14
|
register_instance_option :items_per_page do
|
13
15
|
Sunrise::Config.default_items_per_page
|
14
16
|
end
|
15
|
-
|
17
|
+
|
16
18
|
# Column to sort
|
17
19
|
register_instance_option :sort_column do
|
18
20
|
abstract_model.model.primary_key
|
19
21
|
end
|
20
|
-
|
22
|
+
|
21
23
|
# Sort direction
|
22
24
|
register_instance_option :sort_mode do
|
23
25
|
Sunrise::Config.default_sort_mode
|
24
26
|
end
|
25
|
-
|
27
|
+
|
26
28
|
# Default scope
|
27
29
|
register_instance_option(:scope) do
|
28
30
|
nil
|
29
31
|
end
|
30
|
-
|
32
|
+
|
31
33
|
# Image path for preview
|
32
34
|
register_instance_option(:preview) do
|
33
35
|
false
|
@@ -37,10 +39,10 @@ module Sunrise
|
|
37
39
|
register_instance_option(:buttons) do
|
38
40
|
Sunrise::Config.default_toolbar_buttons
|
39
41
|
end
|
40
|
-
|
42
|
+
|
41
43
|
def preview_for(record)
|
42
44
|
if preview.respond_to?(:call)
|
43
|
-
preview.call(record) ||
|
45
|
+
preview.call(record) || 'sunrise/default_ava.png'
|
44
46
|
else
|
45
47
|
preview
|
46
48
|
end
|
data/lib/sunrise/config/model.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'active_support/core_ext/string/inflections'
|
2
4
|
require 'sunrise/config/base'
|
3
5
|
require 'sunrise/config/index'
|
@@ -10,16 +12,16 @@ module Sunrise
|
|
10
12
|
module Config
|
11
13
|
class Model < Base
|
12
14
|
attr_reader :sections
|
13
|
-
|
15
|
+
|
14
16
|
def initialize(abstract_model, parent = nil, options = nil)
|
15
17
|
super
|
16
18
|
@sections ||= {}
|
17
19
|
end
|
18
|
-
|
20
|
+
|
19
21
|
register_instance_option(:label) do
|
20
|
-
(@label ||= {})[::I18n.locale] ||= abstract_model.model.model_name.human(:
|
22
|
+
(@label ||= {})[::I18n.locale] ||= abstract_model.model.model_name.human(default: abstract_model.model.model_name.to_s.underscore.humanize)
|
21
23
|
end
|
22
|
-
|
24
|
+
|
23
25
|
# The display for a model instance (i.e. a single database record).
|
24
26
|
# Unless configured in a model config block, it'll try to use :name followed by :title methods, then
|
25
27
|
# any methods that may have been added to the label_methods array via Configuration.
|
@@ -27,34 +29,38 @@ module Sunrise
|
|
27
29
|
register_instance_option(:object_label_method) do
|
28
30
|
@object_label_method ||= Config.label_methods.find { |method| (@dummy_object ||= abstract_model.model.new).respond_to? method } || :sunrise_default_object_label_method
|
29
31
|
end
|
30
|
-
|
32
|
+
|
31
33
|
register_instance_option(:default_index_view) do
|
32
34
|
Config.default_index_view
|
33
35
|
end
|
34
|
-
|
36
|
+
|
35
37
|
register_instance_option(:available_index_views) do
|
36
38
|
Config.available_index_views
|
37
39
|
end
|
38
|
-
|
40
|
+
|
41
|
+
register_instance_option(:available_import) do
|
42
|
+
Config.available_import
|
43
|
+
end
|
44
|
+
|
39
45
|
register_instance_option(:sort_column) do
|
40
46
|
Config.sort_column
|
41
47
|
end
|
42
|
-
|
48
|
+
|
43
49
|
def associations
|
44
|
-
@associations ||= @sections.select { |key,
|
50
|
+
@associations ||= @sections.select { |key, _value| key.to_s.include?('association_') }.values
|
45
51
|
end
|
46
|
-
|
52
|
+
|
47
53
|
# Register accessors for all the sections in this namespace
|
48
54
|
[:index, :show, :export, :form, :association].each do |section|
|
49
55
|
klass = "Sunrise::Config::#{section.to_s.classify}".constantize
|
50
|
-
|
56
|
+
|
51
57
|
define_method(section) do |*args, &block|
|
52
58
|
options = args.extract_options!
|
53
59
|
name = args.first
|
54
60
|
key = name ? [section, name].compact.map(&:to_s).join('_').to_sym : section
|
55
|
-
|
61
|
+
|
56
62
|
options[:name] ||= name
|
57
|
-
|
63
|
+
|
58
64
|
if name === false || @sections[key] === false
|
59
65
|
@sections[key] = false
|
60
66
|
elsif block
|
@@ -69,7 +75,7 @@ module Sunrise
|
|
69
75
|
else
|
70
76
|
@sections[key] ||= klass.new(abstract_model, self, options)
|
71
77
|
end
|
72
|
-
|
78
|
+
|
73
79
|
@sections[key]
|
74
80
|
end
|
75
81
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'sunrise/config/navigation_item'
|
2
4
|
require 'singleton'
|
3
5
|
|
@@ -6,16 +8,16 @@ module Sunrise
|
|
6
8
|
class Navigation
|
7
9
|
include Singleton
|
8
10
|
include Sunrise::Engine.routes.url_helpers
|
9
|
-
|
11
|
+
|
10
12
|
attr_accessor :presenters
|
11
|
-
|
13
|
+
|
12
14
|
class << self
|
13
15
|
# Configure menu items
|
14
16
|
def navigation(name, options = {}, &block)
|
15
17
|
instance.presenters ||= {}
|
16
18
|
instance.presenters[name] = PagePresenter.new(options, &block)
|
17
19
|
end
|
18
|
-
|
20
|
+
|
19
21
|
def method_missing(method_name, *args, &block)
|
20
22
|
if instance.respond_to?(method_name)
|
21
23
|
instance.send(method_name, *args, &block)
|
@@ -24,7 +26,7 @@ module Sunrise
|
|
24
26
|
end
|
25
27
|
end
|
26
28
|
end
|
27
|
-
|
29
|
+
|
28
30
|
def initialize
|
29
31
|
@navigations = nil
|
30
32
|
@presenters = {}
|
@@ -34,31 +36,31 @@ module Sunrise
|
|
34
36
|
def navigations
|
35
37
|
@navigations ||= build_navigation
|
36
38
|
end
|
37
|
-
|
39
|
+
|
38
40
|
def item(item_name, url = nil, options = {})
|
39
|
-
url ||= index_path(:
|
40
|
-
|
41
|
+
url ||= index_path(model_name: item_name)
|
42
|
+
|
41
43
|
@navigations[@current_name] ||= []
|
42
44
|
@navigations[@current_name] << NavigationItem.new(item_name, url, @current_name, options)
|
43
45
|
end
|
44
46
|
|
45
47
|
protected
|
46
48
|
|
47
|
-
|
48
|
-
|
49
|
+
def build_navigation
|
50
|
+
@navigations = {}
|
49
51
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
end
|
54
|
-
|
55
|
-
@navigations
|
52
|
+
presenters.each do |key, presenter|
|
53
|
+
@current_name = key.to_sym
|
54
|
+
run_registration_block &presenter.block
|
56
55
|
end
|
57
56
|
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
57
|
+
@navigations
|
58
|
+
end
|
59
|
+
|
60
|
+
# Runs the registration block inside this object
|
61
|
+
def run_registration_block(&block)
|
62
|
+
instance_exec &block if block_given?
|
63
|
+
end
|
62
64
|
end
|
63
65
|
end
|
64
66
|
end
|
@@ -1,20 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Sunrise
|
2
4
|
module Config
|
3
5
|
class NavigationItem
|
4
6
|
attr_accessor :name, :url
|
5
|
-
|
6
|
-
def initialize(name, url, scope =
|
7
|
+
|
8
|
+
def initialize(name, url, scope = 'items', options = {})
|
7
9
|
@name = name
|
8
10
|
@scope = scope
|
9
11
|
@url = url
|
10
12
|
@title = options.delete(:title)
|
11
13
|
@options = options
|
12
14
|
end
|
13
|
-
|
15
|
+
|
14
16
|
def title
|
15
|
-
@title ||= I18n.t(@name, :
|
17
|
+
@title ||= I18n.t(@name, scope: [:manage, :menu, @scope])
|
16
18
|
end
|
17
|
-
|
19
|
+
|
18
20
|
def html_options
|
19
21
|
@options.nil? ? {} : @options.dup
|
20
22
|
end
|
@@ -1,17 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'sunrise/config/field'
|
2
4
|
|
3
5
|
module Sunrise
|
4
6
|
module Config
|
5
7
|
class NestedField < Field
|
6
|
-
|
7
8
|
# Array for store all defined fields
|
8
9
|
def fields
|
9
10
|
@fields ||= []
|
10
11
|
end
|
11
|
-
|
12
|
+
|
12
13
|
# Defines a configuration for a field.
|
13
14
|
def field(name = :custom, options = {}, &block)
|
14
|
-
options = { :
|
15
|
+
options = { name: name.to_sym }.merge(options)
|
15
16
|
fields << Field.new(abstract_model, self, options, &block)
|
16
17
|
end
|
17
18
|
|
@@ -41,14 +42,14 @@ module Sunrise
|
|
41
42
|
|
42
43
|
protected
|
43
44
|
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
45
|
+
def build_sort_options
|
46
|
+
options = (@config_options[:sort].is_a?(Hash) ? @config_options[:sort] : {}).symbolize_keys
|
47
|
+
|
48
|
+
{
|
49
|
+
column: :sort_order,
|
50
|
+
hidden_field: true
|
51
|
+
}.merge(options)
|
52
|
+
end
|
52
53
|
end
|
53
54
|
end
|
54
|
-
end
|
55
|
+
end
|