stylish 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +7 -10
- data/ARCHITECTURE.md +96 -0
- data/Gemfile +8 -0
- data/README.md +25 -29
- data/Rakefile +24 -0
- data/bin/stylish +33 -0
- data/lib/stylish.rb +36 -1
- data/lib/stylish/configuration.rb +37 -0
- data/lib/stylish/core_ext.rb +20 -0
- data/lib/stylish/developer.rb +13 -0
- data/lib/stylish/developer/config.rb +19 -0
- data/lib/stylish/developer/environment.rb +75 -0
- data/lib/stylish/developer/listing.rb +85 -0
- data/lib/stylish/developer/model_delegator.rb +51 -0
- data/lib/stylish/developer/modification.rb +139 -0
- data/lib/stylish/developer/path.rb +168 -0
- data/lib/stylish/developer/route.rb +97 -0
- data/lib/stylish/developer/server.rb +40 -0
- data/lib/stylish/engine.rb +12 -0
- data/lib/stylish/fs.rb +59 -0
- data/lib/stylish/manifest.rb +100 -0
- data/lib/stylish/models.rb +119 -0
- data/lib/stylish/models/component.rb +19 -0
- data/lib/stylish/models/layout.rb +19 -0
- data/lib/stylish/models/library.rb +134 -0
- data/lib/stylish/models/package.rb +156 -0
- data/lib/stylish/models/script.rb +10 -0
- data/lib/stylish/models/stylesheet.rb +9 -0
- data/lib/stylish/models/template.rb +9 -0
- data/lib/stylish/models/theme.rb +8 -0
- data/lib/stylish/util.rb +20 -0
- data/lib/stylish/version.rb +1 -1
- data/library/config.json +4 -0
- data/library/second-theme/manifest.json +8 -0
- data/library/second-theme/manifest.yml +6 -0
- data/library/second-theme/templates/footers/footer-01.html +3 -0
- data/library/second-theme/templates/footers/footer-02.html +3 -0
- data/library/second-theme/templates/headers/header-01.html +3 -0
- data/library/second-theme/templates/headers/header-02.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/components/footers/footer-01.json +5 -0
- data/library/test-theme/components/footers/footer-02.json +5 -0
- data/library/test-theme/components/headers/header-01.json +5 -0
- data/library/test-theme/components/headers/header-02.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/library/test-theme/manifest.json +8 -0
- data/library/test-theme/manifest.yml +6 -0
- data/library/test-theme/pages/page-01.json +11 -0
- data/library/test-theme/templates/footers/footer-01.html +3 -0
- data/library/test-theme/templates/footers/footer-02.html +3 -0
- data/library/test-theme/templates/headers/header-01.html +3 -0
- data/library/test-theme/templates/headers/header-02.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/templates/layouts/standard-layout.html +10 -0
- data/spec/acceptance/listing_assets_spec.rb +20 -0
- data/spec/acceptance/model_browsing_spec.rb +21 -0
- data/spec/acceptance/model_creation_spec.rb +16 -0
- data/spec/acceptance/model_deleting_spec.rb +10 -0
- data/spec/acceptance/model_updating_spec.rb +12 -0
- data/spec/acceptance/modifying_assets_spec.rb +50 -0
- data/spec/acceptance/server_info_spec.rb +10 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/javascripts/test.coffee +4 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/assets/stylesheets/test.css.scss +6 -0
- data/spec/dummy/app/assets/stylesheets/writable/existing.scss.css +0 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -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 +30 -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 +37 -0
- data/spec/dummy/config/environments/production.rb +82 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -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 +4 -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/routes.rb +3 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/migrate/20140822065900_create_books.rb +11 -0
- data/spec/dummy/db/migrate/20140822065916_create_authors.rb +9 -0
- data/spec/dummy/db/migrate/20140824215902_create_users.rb +10 -0
- data/spec/dummy/db/migrate/20140826193259_create_libraries.rb +10 -0
- data/spec/dummy/db/schema.rb +37 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/fixtures/config.json +3 -0
- data/spec/fixtures/test-theme/components/footers/footer-01.json +5 -0
- data/spec/fixtures/test-theme/components/footers/footer-02.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-01.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-02.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/spec/fixtures/test-theme/manifest.json +8 -0
- data/spec/fixtures/test-theme/manifest.yml +6 -0
- data/spec/fixtures/test-theme/pages/page-01.json +11 -0
- data/spec/fixtures/test-theme/templates/footers/footer-01.html +3 -0
- data/spec/fixtures/test-theme/templates/footers/footer-02.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-01.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-02.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/spec/fixtures/test-theme/templates/layouts/standard-01.html +9 -0
- data/spec/lib/stylish/configuration_spec.rb +8 -0
- data/spec/lib/stylish/developer/path_spec.rb +36 -0
- data/spec/lib/stylish/developer/route_spec.rb +5 -0
- data/spec/lib/stylish/manifest_spec.rb +48 -0
- data/spec/lib/stylish/models/library_spec.rb +38 -0
- data/spec/lib/stylish/models/package_spec.rb +35 -0
- data/spec/lib/stylish/models_spec.rb +12 -0
- data/spec/spec_helper.rb +38 -0
- data/spec/support/json_helper.rb +7 -0
- data/spec/test.css.scss +6 -0
- data/stylish.gemspec +17 -2
- data/support/editor-app/.gitignore +2 -0
- data/support/editor-app/development/bower.json +9 -0
- data/support/editor-app/development/package.json +28 -0
- data/support/editor-app/development/semantic/components/accordion.css +257 -0
- data/support/editor-app/development/semantic/components/accordion.js +558 -0
- data/support/editor-app/development/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/development/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/development/semantic/components/ad.css +277 -0
- data/support/editor-app/development/semantic/components/ad.min.css +11 -0
- data/support/editor-app/development/semantic/components/api.js +851 -0
- data/support/editor-app/development/semantic/components/api.min.js +11 -0
- data/support/editor-app/development/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/development/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/development/semantic/components/button.css +2391 -0
- data/support/editor-app/development/semantic/components/button.min.css +11 -0
- data/support/editor-app/development/semantic/components/card.css +758 -0
- data/support/editor-app/development/semantic/components/card.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.css +514 -0
- data/support/editor-app/development/semantic/components/checkbox.js +507 -0
- data/support/editor-app/development/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/development/semantic/components/comment.css +260 -0
- data/support/editor-app/development/semantic/components/comment.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.css +187 -0
- data/support/editor-app/development/semantic/components/dimmer.js +627 -0
- data/support/editor-app/development/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/development/semantic/components/divider.css +244 -0
- data/support/editor-app/development/semantic/components/divider.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/development/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/development/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/development/semantic/components/feed.css +277 -0
- data/support/editor-app/development/semantic/components/feed.min.css +11 -0
- data/support/editor-app/development/semantic/components/flag.css +1017 -0
- data/support/editor-app/development/semantic/components/flag.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.css +875 -0
- data/support/editor-app/development/semantic/components/form.js +1039 -0
- data/support/editor-app/development/semantic/components/form.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.min.js +11 -0
- data/support/editor-app/development/semantic/components/grid.css +1816 -0
- data/support/editor-app/development/semantic/components/grid.min.css +11 -0
- data/support/editor-app/development/semantic/components/header.css +572 -0
- data/support/editor-app/development/semantic/components/header.min.css +11 -0
- data/support/editor-app/development/semantic/components/icon.css +2127 -0
- data/support/editor-app/development/semantic/components/icon.min.css +11 -0
- data/support/editor-app/development/semantic/components/image.css +275 -0
- data/support/editor-app/development/semantic/components/image.min.css +11 -0
- data/support/editor-app/development/semantic/components/input.css +455 -0
- data/support/editor-app/development/semantic/components/input.min.css +11 -0
- data/support/editor-app/development/semantic/components/item.css +458 -0
- data/support/editor-app/development/semantic/components/item.min.css +11 -0
- data/support/editor-app/development/semantic/components/label.css +930 -0
- data/support/editor-app/development/semantic/components/label.min.css +11 -0
- data/support/editor-app/development/semantic/components/list.css +879 -0
- data/support/editor-app/development/semantic/components/list.min.css +11 -0
- data/support/editor-app/development/semantic/components/loader.css +279 -0
- data/support/editor-app/development/semantic/components/loader.min.css +11 -0
- data/support/editor-app/development/semantic/components/menu.css +1596 -0
- data/support/editor-app/development/semantic/components/menu.min.css +11 -0
- data/support/editor-app/development/semantic/components/message.css +422 -0
- data/support/editor-app/development/semantic/components/message.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.css +431 -0
- data/support/editor-app/development/semantic/components/modal.js +860 -0
- data/support/editor-app/development/semantic/components/modal.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.min.js +11 -0
- data/support/editor-app/development/semantic/components/nag.css +149 -0
- data/support/editor-app/development/semantic/components/nag.js +477 -0
- data/support/editor-app/development/semantic/components/nag.min.css +11 -0
- data/support/editor-app/development/semantic/components/nag.min.js +11 -0
- data/support/editor-app/development/semantic/components/popup.css +294 -0
- data/support/editor-app/development/semantic/components/popup.js +1187 -0
- data/support/editor-app/development/semantic/components/popup.min.css +11 -0
- data/support/editor-app/development/semantic/components/popup.min.js +11 -0
- data/support/editor-app/development/semantic/components/progress.css +449 -0
- data/support/editor-app/development/semantic/components/progress.js +785 -0
- data/support/editor-app/development/semantic/components/progress.min.css +11 -0
- data/support/editor-app/development/semantic/components/progress.min.js +11 -0
- data/support/editor-app/development/semantic/components/rail.css +125 -0
- data/support/editor-app/development/semantic/components/rail.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.css +262 -0
- data/support/editor-app/development/semantic/components/rating.js +451 -0
- data/support/editor-app/development/semantic/components/rating.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.min.js +11 -0
- data/support/editor-app/development/semantic/components/reset.css +430 -0
- data/support/editor-app/development/semantic/components/reset.min.css +11 -0
- data/support/editor-app/development/semantic/components/reveal.css +294 -0
- data/support/editor-app/development/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.css +330 -0
- data/support/editor-app/development/semantic/components/search.js +1055 -0
- data/support/editor-app/development/semantic/components/search.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.min.js +11 -0
- data/support/editor-app/development/semantic/components/segment.css +590 -0
- data/support/editor-app/development/semantic/components/segment.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.css +155 -0
- data/support/editor-app/development/semantic/components/shape.js +830 -0
- data/support/editor-app/development/semantic/components/shape.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.min.js +11 -0
- data/support/editor-app/development/semantic/components/sidebar.css +621 -0
- data/support/editor-app/development/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/development/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/development/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/development/semantic/components/site.css +147 -0
- data/support/editor-app/development/semantic/components/site.js +487 -0
- data/support/editor-app/development/semantic/components/site.min.css +11 -0
- data/support/editor-app/development/semantic/components/site.min.js +11 -0
- data/support/editor-app/development/semantic/components/state.js +690 -0
- data/support/editor-app/development/semantic/components/state.min.js +11 -0
- data/support/editor-app/development/semantic/components/statistic.css +410 -0
- data/support/editor-app/development/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/development/semantic/components/step.css +433 -0
- data/support/editor-app/development/semantic/components/step.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.css +80 -0
- data/support/editor-app/development/semantic/components/sticky.js +775 -0
- data/support/editor-app/development/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/development/semantic/components/tab.css +93 -0
- data/support/editor-app/development/semantic/components/tab.js +787 -0
- data/support/editor-app/development/semantic/components/tab.min.css +11 -0
- data/support/editor-app/development/semantic/components/tab.min.js +11 -0
- data/support/editor-app/development/semantic/components/table.css +999 -0
- data/support/editor-app/development/semantic/components/table.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.css +2152 -0
- data/support/editor-app/development/semantic/components/transition.js +936 -0
- data/support/editor-app/development/semantic/components/transition.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.min.js +11 -0
- data/support/editor-app/development/semantic/components/video.css +126 -0
- data/support/editor-app/development/semantic/components/video.js +540 -0
- data/support/editor-app/development/semantic/components/video.min.css +11 -0
- data/support/editor-app/development/semantic/components/video.min.js +11 -0
- data/support/editor-app/development/semantic/components/visibility.js +970 -0
- data/support/editor-app/development/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/development/semantic/semantic.css +31768 -0
- data/support/editor-app/development/semantic/semantic.js +18317 -0
- data/support/editor-app/development/semantic/semantic.min.css +11 -0
- data/support/editor-app/development/semantic/semantic.min.js +17 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/development/src/apis/index.coffee +35 -0
- data/support/editor-app/development/src/components/editor.cjsx +58 -0
- data/support/editor-app/development/src/components/editor_drawer.cjsx +7 -0
- data/support/editor-app/development/src/components/header.cjsx +12 -0
- data/support/editor-app/development/src/components/index.coffee +9 -0
- data/support/editor-app/development/src/components/menus/icon_grid.cjsx +0 -0
- data/support/editor-app/development/src/components/sidebar.cjsx +24 -0
- data/support/editor-app/development/src/components/tiled_grid.cjsx +35 -0
- data/support/editor-app/development/src/index.cjsx +82 -0
- data/support/editor-app/development/src/lib/util.coffee +48 -0
- data/support/editor-app/development/src/pages/home.cjsx +46 -0
- data/support/editor-app/development/src/pages/index.coffee +6 -0
- data/support/editor-app/development/src/pages/package_details.cjsx +55 -0
- data/support/editor-app/development/src/registry.coffee +35 -0
- data/support/editor-app/development/src/styles/components/tiled_grid.css.scss +5 -0
- data/support/editor-app/development/src/styles/index.css.scss +240 -0
- data/support/editor-app/development/src/sugar.cjsx +126 -0
- data/support/editor-app/development/webpack.config.js +53 -0
- data/support/editor-app/dist/base.css +0 -0
- data/support/editor-app/dist/toolit.js +62 -0
- data/support/editor-app/dist/toolkit.js +44573 -0
- data/support/editor-app/index.html +50 -0
- data/support/editor-app/package.json +15 -0
- data/support/editor-app/semantic/components/accordion.css +257 -0
- data/support/editor-app/semantic/components/accordion.js +558 -0
- data/support/editor-app/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/semantic/components/ad.css +277 -0
- data/support/editor-app/semantic/components/ad.min.css +11 -0
- data/support/editor-app/semantic/components/api.js +851 -0
- data/support/editor-app/semantic/components/api.min.js +11 -0
- data/support/editor-app/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/semantic/components/button.css +2391 -0
- data/support/editor-app/semantic/components/button.min.css +11 -0
- data/support/editor-app/semantic/components/card.css +758 -0
- data/support/editor-app/semantic/components/card.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.css +514 -0
- data/support/editor-app/semantic/components/checkbox.js +507 -0
- data/support/editor-app/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/semantic/components/comment.css +260 -0
- data/support/editor-app/semantic/components/comment.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.css +187 -0
- data/support/editor-app/semantic/components/dimmer.js +627 -0
- data/support/editor-app/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/semantic/components/divider.css +244 -0
- data/support/editor-app/semantic/components/divider.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/semantic/components/feed.css +277 -0
- data/support/editor-app/semantic/components/feed.min.css +11 -0
- data/support/editor-app/semantic/components/flag.css +1017 -0
- data/support/editor-app/semantic/components/flag.min.css +11 -0
- data/support/editor-app/semantic/components/form.css +875 -0
- data/support/editor-app/semantic/components/form.js +1039 -0
- data/support/editor-app/semantic/components/form.min.css +11 -0
- data/support/editor-app/semantic/components/form.min.js +11 -0
- data/support/editor-app/semantic/components/grid.css +1816 -0
- data/support/editor-app/semantic/components/grid.min.css +11 -0
- data/support/editor-app/semantic/components/header.css +572 -0
- data/support/editor-app/semantic/components/header.min.css +11 -0
- data/support/editor-app/semantic/components/icon.css +2127 -0
- data/support/editor-app/semantic/components/icon.min.css +11 -0
- data/support/editor-app/semantic/components/image.css +275 -0
- data/support/editor-app/semantic/components/image.min.css +11 -0
- data/support/editor-app/semantic/components/input.css +455 -0
- data/support/editor-app/semantic/components/input.min.css +11 -0
- data/support/editor-app/semantic/components/item.css +458 -0
- data/support/editor-app/semantic/components/item.min.css +11 -0
- data/support/editor-app/semantic/components/label.css +930 -0
- data/support/editor-app/semantic/components/label.min.css +11 -0
- data/support/editor-app/semantic/components/list.css +879 -0
- data/support/editor-app/semantic/components/list.min.css +11 -0
- data/support/editor-app/semantic/components/loader.css +279 -0
- data/support/editor-app/semantic/components/loader.min.css +11 -0
- data/support/editor-app/semantic/components/menu.css +1596 -0
- data/support/editor-app/semantic/components/menu.min.css +11 -0
- data/support/editor-app/semantic/components/message.css +422 -0
- data/support/editor-app/semantic/components/message.min.css +11 -0
- data/support/editor-app/semantic/components/modal.css +431 -0
- data/support/editor-app/semantic/components/modal.js +860 -0
- data/support/editor-app/semantic/components/modal.min.css +11 -0
- data/support/editor-app/semantic/components/modal.min.js +11 -0
- data/support/editor-app/semantic/components/nag.css +149 -0
- data/support/editor-app/semantic/components/nag.js +477 -0
- data/support/editor-app/semantic/components/nag.min.css +11 -0
- data/support/editor-app/semantic/components/nag.min.js +11 -0
- data/support/editor-app/semantic/components/popup.css +294 -0
- data/support/editor-app/semantic/components/popup.js +1187 -0
- data/support/editor-app/semantic/components/popup.min.css +11 -0
- data/support/editor-app/semantic/components/popup.min.js +11 -0
- data/support/editor-app/semantic/components/progress.css +449 -0
- data/support/editor-app/semantic/components/progress.js +785 -0
- data/support/editor-app/semantic/components/progress.min.css +11 -0
- data/support/editor-app/semantic/components/progress.min.js +11 -0
- data/support/editor-app/semantic/components/rail.css +125 -0
- data/support/editor-app/semantic/components/rail.min.css +11 -0
- data/support/editor-app/semantic/components/rating.css +262 -0
- data/support/editor-app/semantic/components/rating.js +451 -0
- data/support/editor-app/semantic/components/rating.min.css +11 -0
- data/support/editor-app/semantic/components/rating.min.js +11 -0
- data/support/editor-app/semantic/components/reset.css +430 -0
- data/support/editor-app/semantic/components/reset.min.css +11 -0
- data/support/editor-app/semantic/components/reveal.css +294 -0
- data/support/editor-app/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/semantic/components/search.css +330 -0
- data/support/editor-app/semantic/components/search.js +1055 -0
- data/support/editor-app/semantic/components/search.min.css +11 -0
- data/support/editor-app/semantic/components/search.min.js +11 -0
- data/support/editor-app/semantic/components/segment.css +590 -0
- data/support/editor-app/semantic/components/segment.min.css +11 -0
- data/support/editor-app/semantic/components/shape.css +155 -0
- data/support/editor-app/semantic/components/shape.js +830 -0
- data/support/editor-app/semantic/components/shape.min.css +11 -0
- data/support/editor-app/semantic/components/shape.min.js +11 -0
- data/support/editor-app/semantic/components/sidebar.css +621 -0
- data/support/editor-app/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/semantic/components/site.css +147 -0
- data/support/editor-app/semantic/components/site.js +487 -0
- data/support/editor-app/semantic/components/site.min.css +11 -0
- data/support/editor-app/semantic/components/site.min.js +11 -0
- data/support/editor-app/semantic/components/state.js +690 -0
- data/support/editor-app/semantic/components/state.min.js +11 -0
- data/support/editor-app/semantic/components/statistic.css +410 -0
- data/support/editor-app/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/semantic/components/step.css +433 -0
- data/support/editor-app/semantic/components/step.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.css +80 -0
- data/support/editor-app/semantic/components/sticky.js +775 -0
- data/support/editor-app/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/semantic/components/tab.css +93 -0
- data/support/editor-app/semantic/components/tab.js +787 -0
- data/support/editor-app/semantic/components/tab.min.css +11 -0
- data/support/editor-app/semantic/components/tab.min.js +11 -0
- data/support/editor-app/semantic/components/table.css +999 -0
- data/support/editor-app/semantic/components/table.min.css +11 -0
- data/support/editor-app/semantic/components/transition.css +2152 -0
- data/support/editor-app/semantic/components/transition.js +936 -0
- data/support/editor-app/semantic/components/transition.min.css +11 -0
- data/support/editor-app/semantic/components/transition.min.js +11 -0
- data/support/editor-app/semantic/components/video.css +126 -0
- data/support/editor-app/semantic/components/video.js +540 -0
- data/support/editor-app/semantic/components/video.min.css +11 -0
- data/support/editor-app/semantic/components/video.min.js +11 -0
- data/support/editor-app/semantic/components/visibility.js +970 -0
- data/support/editor-app/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/semantic/semantic.css +31768 -0
- data/support/editor-app/semantic/semantic.js +18317 -0
- data/support/editor-app/semantic/semantic.min.css +11 -0
- data/support/editor-app/semantic/semantic.min.js +17 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/vendor/jquery.js +8829 -0
- data/support/library-server/Gemfile +0 -0
- data/support/library-server/config.ru +4 -0
- metadata +740 -7
@@ -0,0 +1,11 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
@import 'https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin';body,html{height:100%}html{font-size:14px}body{margin:0;padding:0;min-width:278px;background:#f7f7f7;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:14px;line-height:1.33;color:rgba(0,0,0,.8);font-smoothing:antialiased}h1,h2,h3,h4,h5{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;line-height:1.33em;margin:-webkit-calc(2rem - .165em) 0 1rem;margin:calc(2rem - .165em) 0 1rem;font-weight:700;padding:0}h1{min-height:1rem;font-size:2rem}h2{font-size:1.714rem}h3{font-size:1.28rem}h4{font-size:1.071rem}h5{font-size:1rem}p{margin:0 0 1em;line-height:1.33}p:first-child{margin-top:0}p:last-child{margin-bottom:0}a{color:#009fda;text-decoration:none}a:hover{color:#00b2f3}::-webkit-selection{background-color:#cce2ff;color:rgba(0,0,0,.8)}::-moz-selection{background-color:#cce2ff;color:rgba(0,0,0,.8)}::selection{background-color:#cce2ff;color:rgba(0,0,0,.8)}input::-webkit-selection,textarea::-webkit-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.8)}input::-moz-selection,textarea::-moz-selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.8)}input::selection,textarea::selection{background-color:rgba(100,100,100,.4);color:rgba(0,0,0,.8)}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
!function(e,n,o,i){e.site=e.fn.site=function(t){var s,r,a=(new Date).getTime(),c=[],u=arguments[0],l="string"==typeof u,m=[].slice.call(arguments,1),d=e.isPlainObject(t)?e.extend(!0,{},e.site.settings,t):e.extend({},e.site.settings),f=d.namespace,g=d.error,b="module-"+f,p=e(o),v=p,h=this,y=v.data(b);return s={initialize:function(){s.instantiate()},instantiate:function(){s.verbose("Storing instance of site",s),y=s,v.data(b,s)},normalize:function(){s.fix.console(),s.fix.requestAnimationFrame()},fix:{console:function(){s.debug("Normalizing window.console"),(console===i||console.log===i)&&(s.verbose("Console not available, normalizing events"),s.disable.console()),("undefined"==typeof console.group||"undefined"==typeof console.groupEnd||"undefined"==typeof console.groupCollapsed)&&(s.verbose("Console group not available, normalizing events"),n.console.group=function(){},n.console.groupEnd=function(){},n.console.groupCollapsed=function(){}),"undefined"==typeof console.markTimeline&&(s.verbose("Mark timeline not available, normalizing events"),n.console.markTimeline=function(){})},consoleClear:function(){s.debug("Disabling programmatic console clearing"),n.console.clear=function(){}},requestAnimationFrame:function(){s.debug("Normalizing requestAnimationFrame"),n.requestAnimationFrame===i&&(s.debug("RequestAnimationFrame not available, normailizing event"),n.requestAnimationFrame=n.requestAnimationFrame||n.mozRequestAnimationFrame||n.webkitRequestAnimationFrame||n.msRequestAnimationFrame||function(e){setTimeout(e,0)})}},moduleExists:function(n){return e.fn[n]!==i&&e.fn[n].settings!==i},enabled:{modules:function(n){var o=[];return n=n||d.modules,e.each(n,function(e,n){s.moduleExists(n)&&o.push(n)}),o}},disabled:{modules:function(n){var o=[];return n=n||d.modules,e.each(n,function(e,n){s.moduleExists(n)||o.push(n)}),o}},change:{setting:function(n,o,t,r){t="string"==typeof t?"all"===t?d.modules:[t]:t||d.modules,r=r!==i?r:!0,e.each(t,function(i,t){var a,c=s.moduleExists(t)?e.fn[t].settings.namespace||!1:!0;s.moduleExists(t)&&(s.verbose("Changing default setting",n,o,t),e.fn[t].settings[n]=o,r&&c&&(a=e(":data(module-"+c+")"),a.length>0&&(s.verbose("Modifying existing settings",a),a[t]("setting",n,o))))})},settings:function(n,o,t){o="string"==typeof o?[o]:o||d.modules,t=t!==i?t:!0,e.each(o,function(o,i){var r;s.moduleExists(i)&&(s.verbose("Changing default setting",n,i),e.extend(!0,e.fn[i].settings,n),t&&f&&(r=e(":data(module-"+f+")"),r.length>0&&(s.verbose("Modifying existing settings",r),r[i]("setting",n))))})}},enable:{console:function(){s.console(!0)},debug:function(e,n){e=e||d.modules,s.debug("Enabling debug for modules",e),s.change.setting("debug",!0,e,n)},verbose:function(e,n){e=e||d.modules,s.debug("Enabling verbose debug for modules",e),s.change.setting("verbose",!0,e,n)}},disable:{console:function(){s.console(!1)},debug:function(e,n){e=e||d.modules,s.debug("Disabling debug for modules",e),s.change.setting("debug",!1,e,n)},verbose:function(e,n){e=e||d.modules,s.debug("Disabling verbose debug for modules",e),s.change.setting("verbose",!1,e,n)}},console:function(e){if(e){if(y.cache.console===i)return void s.error(g.console);s.debug("Restoring console function"),n.console=y.cache.console}else s.debug("Disabling console function"),y.cache.console=n.console,n.console={clear:function(){},error:function(){},group:function(){},groupCollapsed:function(){},groupEnd:function(){},info:function(){},log:function(){},markTimeline:function(){},warn:function(){}}},destroy:function(){s.verbose("Destroying previous site for",v),v.removeData(b)},cache:{},setting:function(n,o){if(e.isPlainObject(n))e.extend(!0,d,n);else{if(o===i)return d[n];d[n]=o}},internal:function(n,o){if(e.isPlainObject(n))e.extend(!0,s,n);else{if(o===i)return s[n];s[n]=o}},debug:function(){d.debug&&(d.performance?s.performance.log(arguments):(s.debug=Function.prototype.bind.call(console.info,console,d.name+":"),s.debug.apply(console,arguments)))},verbose:function(){d.verbose&&d.debug&&(d.performance?s.performance.log(arguments):(s.verbose=Function.prototype.bind.call(console.info,console,d.name+":"),s.verbose.apply(console,arguments)))},error:function(){s.error=Function.prototype.bind.call(console.error,console,d.name+":"),s.error.apply(console,arguments)},performance:{log:function(e){var n,o,i;d.performance&&(n=(new Date).getTime(),i=a||n,o=n-i,a=n,c.push({Element:h,Name:e[0],Arguments:[].slice.call(e,1)||"","Execution Time":o})),clearTimeout(s.performance.timer),s.performance.timer=setTimeout(s.performance.display,100)},display:function(){var n=d.name+":",o=0;a=!1,clearTimeout(s.performance.timer),e.each(c,function(e,n){o+=n["Execution Time"]}),n+=" "+o+"ms",(console.group!==i||console.table!==i)&&c.length>0&&(console.groupCollapsed(n),console.table?console.table(c):e.each(c,function(e,n){console.log(n.Name+": "+n["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(n,o,t){var a,c,u,l=y;return o=o||m,t=h||t,"string"==typeof n&&l!==i&&(n=n.split(/[\. ]/),a=n.length-1,e.each(n,function(o,t){var r=o!=a?t+n[o+1].charAt(0).toUpperCase()+n[o+1].slice(1):n;if(e.isPlainObject(l[r])&&o!=a)l=l[r];else{if(l[r]!==i)return c=l[r],!1;if(!e.isPlainObject(l[t])||o==a)return l[t]!==i?(c=l[t],!1):(s.error(g.method,n),!1);l=l[t]}})),e.isFunction(c)?u=c.apply(t,o):c!==i&&(u=c),e.isArray(r)?r.push(u):r!==i?r=[r,u]:u!==i&&(r=u),c}},l?(y===i&&s.initialize(),s.invoke(u)):(y!==i&&s.destroy(),s.initialize()),r!==i?r:this},e.site.settings={name:"Site",namespace:"site",error:{console:"Console cannot be restored, most likely it was overwritten outside of module",method:"The method you called is not defined."},debug:!1,verbose:!0,performance:!0,modules:["accordion","api","checkbox","dimmer","dropdown","form","modal","nag","popup","rating","shape","sidebar","state","sticky","tab","transition","video","visit","visibility"],siteNamespace:"site",namespaceStub:{cache:{},config:{},sections:{},section:{},utilities:{}}},e.extend(e.expr[":"],{data:e.expr.createPseudo?e.expr.createPseudo(function(n){return function(o){return!!e.data(o,n)}}):function(n,o,i){return!!e.data(n,i[3])}})}(jQuery,window,document);
|
@@ -0,0 +1,690 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic - State
|
3
|
+
* http://github.com/semantic-org/semantic-ui/
|
4
|
+
*
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributor
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
|
12
|
+
;(function ( $, window, document, undefined ) {
|
13
|
+
|
14
|
+
$.fn.state = function(parameters) {
|
15
|
+
var
|
16
|
+
$allModules = $(this),
|
17
|
+
|
18
|
+
moduleSelector = $allModules.selector || '',
|
19
|
+
|
20
|
+
hasTouch = ('ontouchstart' in document.documentElement),
|
21
|
+
time = new Date().getTime(),
|
22
|
+
performance = [],
|
23
|
+
|
24
|
+
query = arguments[0],
|
25
|
+
methodInvoked = (typeof query == 'string'),
|
26
|
+
queryArguments = [].slice.call(arguments, 1),
|
27
|
+
|
28
|
+
returnedValue
|
29
|
+
;
|
30
|
+
$allModules
|
31
|
+
.each(function() {
|
32
|
+
var
|
33
|
+
settings = ( $.isPlainObject(parameters) )
|
34
|
+
? $.extend(true, {}, $.fn.state.settings, parameters)
|
35
|
+
: $.extend({}, $.fn.state.settings),
|
36
|
+
|
37
|
+
error = settings.error,
|
38
|
+
metadata = settings.metadata,
|
39
|
+
className = settings.className,
|
40
|
+
namespace = settings.namespace,
|
41
|
+
states = settings.states,
|
42
|
+
text = settings.text,
|
43
|
+
|
44
|
+
eventNamespace = '.' + namespace,
|
45
|
+
moduleNamespace = namespace + '-module',
|
46
|
+
|
47
|
+
$module = $(this),
|
48
|
+
|
49
|
+
element = this,
|
50
|
+
instance = $module.data(moduleNamespace),
|
51
|
+
|
52
|
+
module
|
53
|
+
;
|
54
|
+
module = {
|
55
|
+
|
56
|
+
initialize: function() {
|
57
|
+
module.verbose('Initializing module');
|
58
|
+
|
59
|
+
// allow module to guess desired state based on element
|
60
|
+
if(settings.automatic) {
|
61
|
+
module.add.defaults();
|
62
|
+
}
|
63
|
+
|
64
|
+
// bind events with delegated events
|
65
|
+
if(settings.context && moduleSelector !== '') {
|
66
|
+
$(settings.context)
|
67
|
+
.on(moduleSelector, 'mouseenter' + eventNamespace, module.change.text)
|
68
|
+
.on(moduleSelector, 'mouseleave' + eventNamespace, module.reset.text)
|
69
|
+
.on(moduleSelector, 'click' + eventNamespace, module.toggle.state)
|
70
|
+
;
|
71
|
+
}
|
72
|
+
else {
|
73
|
+
$module
|
74
|
+
.on('mouseenter' + eventNamespace, module.change.text)
|
75
|
+
.on('mouseleave' + eventNamespace, module.reset.text)
|
76
|
+
.on('click' + eventNamespace, module.toggle.state)
|
77
|
+
;
|
78
|
+
}
|
79
|
+
module.instantiate();
|
80
|
+
},
|
81
|
+
|
82
|
+
instantiate: function() {
|
83
|
+
module.verbose('Storing instance of module', module);
|
84
|
+
instance = module;
|
85
|
+
$module
|
86
|
+
.data(moduleNamespace, module)
|
87
|
+
;
|
88
|
+
},
|
89
|
+
|
90
|
+
destroy: function() {
|
91
|
+
module.verbose('Destroying previous module', instance);
|
92
|
+
$module
|
93
|
+
.off(eventNamespace)
|
94
|
+
.removeData(moduleNamespace)
|
95
|
+
;
|
96
|
+
},
|
97
|
+
|
98
|
+
refresh: function() {
|
99
|
+
module.verbose('Refreshing selector cache');
|
100
|
+
$module = $(element);
|
101
|
+
},
|
102
|
+
|
103
|
+
add: {
|
104
|
+
defaults: function() {
|
105
|
+
var
|
106
|
+
userStates = parameters && $.isPlainObject(parameters.states)
|
107
|
+
? parameters.states
|
108
|
+
: {}
|
109
|
+
;
|
110
|
+
$.each(settings.defaults, function(type, typeStates) {
|
111
|
+
if( module.is[type] !== undefined && module.is[type]() ) {
|
112
|
+
module.verbose('Adding default states', type, element);
|
113
|
+
$.extend(settings.states, typeStates, userStates);
|
114
|
+
}
|
115
|
+
});
|
116
|
+
}
|
117
|
+
},
|
118
|
+
|
119
|
+
is: {
|
120
|
+
|
121
|
+
active: function() {
|
122
|
+
return $module.hasClass(className.active);
|
123
|
+
},
|
124
|
+
loading: function() {
|
125
|
+
return $module.hasClass(className.loading);
|
126
|
+
},
|
127
|
+
inactive: function() {
|
128
|
+
return !( $module.hasClass(className.active) );
|
129
|
+
},
|
130
|
+
state: function(state) {
|
131
|
+
if(className[state] === undefined) {
|
132
|
+
return false;
|
133
|
+
}
|
134
|
+
return $module.hasClass( className[state] );
|
135
|
+
},
|
136
|
+
|
137
|
+
enabled: function() {
|
138
|
+
return !( $module.is(settings.filter.active) );
|
139
|
+
},
|
140
|
+
disabled: function() {
|
141
|
+
return ( $module.is(settings.filter.active) );
|
142
|
+
},
|
143
|
+
textEnabled: function() {
|
144
|
+
return !( $module.is(settings.filter.text) );
|
145
|
+
},
|
146
|
+
|
147
|
+
// definitions for automatic type detection
|
148
|
+
button: function() {
|
149
|
+
return $module.is('.button:not(a, .submit)');
|
150
|
+
},
|
151
|
+
input: function() {
|
152
|
+
return $module.is('input');
|
153
|
+
},
|
154
|
+
progress: function() {
|
155
|
+
return $module.is('.ui.progress');
|
156
|
+
}
|
157
|
+
},
|
158
|
+
|
159
|
+
allow: function(state) {
|
160
|
+
module.debug('Now allowing state', state);
|
161
|
+
states[state] = true;
|
162
|
+
},
|
163
|
+
disallow: function(state) {
|
164
|
+
module.debug('No longer allowing', state);
|
165
|
+
states[state] = false;
|
166
|
+
},
|
167
|
+
|
168
|
+
allows: function(state) {
|
169
|
+
return states[state] || false;
|
170
|
+
},
|
171
|
+
|
172
|
+
enable: function() {
|
173
|
+
$module.removeClass(className.disabled);
|
174
|
+
},
|
175
|
+
|
176
|
+
disable: function() {
|
177
|
+
$module.addClass(className.disabled);
|
178
|
+
},
|
179
|
+
|
180
|
+
setState: function(state) {
|
181
|
+
if(module.allows(state)) {
|
182
|
+
$module.addClass( className[state] );
|
183
|
+
}
|
184
|
+
},
|
185
|
+
|
186
|
+
removeState: function(state) {
|
187
|
+
if(module.allows(state)) {
|
188
|
+
$module.removeClass( className[state] );
|
189
|
+
}
|
190
|
+
},
|
191
|
+
|
192
|
+
toggle: {
|
193
|
+
state: function() {
|
194
|
+
var
|
195
|
+
apiRequest
|
196
|
+
;
|
197
|
+
if( module.allows('active') && module.is.enabled() ) {
|
198
|
+
module.refresh();
|
199
|
+
if($.fn.api !== undefined) {
|
200
|
+
apiRequest = $module.api('get request');
|
201
|
+
if(apiRequest) {
|
202
|
+
module.listenTo(apiRequest);
|
203
|
+
return;
|
204
|
+
}
|
205
|
+
}
|
206
|
+
module.change.state();
|
207
|
+
}
|
208
|
+
}
|
209
|
+
},
|
210
|
+
|
211
|
+
listenTo: function(apiRequest) {
|
212
|
+
module.debug('API request detected, waiting for state signal', apiRequest);
|
213
|
+
if(apiRequest) {
|
214
|
+
if(text.loading) {
|
215
|
+
module.update.text(text.loading);
|
216
|
+
}
|
217
|
+
$.when(apiRequest)
|
218
|
+
.then(function() {
|
219
|
+
if(apiRequest.state() == 'resolved') {
|
220
|
+
module.debug('API request succeeded');
|
221
|
+
settings.activateTest = function(){ return true; };
|
222
|
+
settings.deactivateTest = function(){ return true; };
|
223
|
+
}
|
224
|
+
else {
|
225
|
+
module.debug('API request failed');
|
226
|
+
settings.activateTest = function(){ return false; };
|
227
|
+
settings.deactivateTest = function(){ return false; };
|
228
|
+
}
|
229
|
+
module.change.state();
|
230
|
+
})
|
231
|
+
;
|
232
|
+
}
|
233
|
+
// xhr exists but set to false, beforeSend killed the xhr
|
234
|
+
else {
|
235
|
+
settings.activateTest = function(){ return false; };
|
236
|
+
settings.deactivateTest = function(){ return false; };
|
237
|
+
}
|
238
|
+
},
|
239
|
+
|
240
|
+
// checks whether active/inactive state can be given
|
241
|
+
change: {
|
242
|
+
|
243
|
+
state: function() {
|
244
|
+
module.debug('Determining state change direction');
|
245
|
+
// inactive to active change
|
246
|
+
if( module.is.inactive() ) {
|
247
|
+
module.activate();
|
248
|
+
}
|
249
|
+
else {
|
250
|
+
module.deactivate();
|
251
|
+
}
|
252
|
+
if(settings.sync) {
|
253
|
+
module.sync();
|
254
|
+
}
|
255
|
+
settings.onChange.call(element);
|
256
|
+
},
|
257
|
+
|
258
|
+
text: function() {
|
259
|
+
if( module.is.textEnabled() ) {
|
260
|
+
if(module.is.disabled() ) {
|
261
|
+
module.verbose('Changing text to disabled text', text.hover);
|
262
|
+
module.update.text(text.disabled);
|
263
|
+
}
|
264
|
+
else if( module.is.active() ) {
|
265
|
+
if(text.hover) {
|
266
|
+
module.verbose('Changing text to hover text', text.hover);
|
267
|
+
module.update.text(text.hover);
|
268
|
+
}
|
269
|
+
else if(text.deactivate) {
|
270
|
+
module.verbose('Changing text to deactivating text', text.deactivate);
|
271
|
+
module.update.text(text.deactivate);
|
272
|
+
}
|
273
|
+
}
|
274
|
+
else {
|
275
|
+
if(text.hover) {
|
276
|
+
module.verbose('Changing text to hover text', text.hover);
|
277
|
+
module.update.text(text.hover);
|
278
|
+
}
|
279
|
+
else if(text.activate){
|
280
|
+
module.verbose('Changing text to activating text', text.activate);
|
281
|
+
module.update.text(text.activate);
|
282
|
+
}
|
283
|
+
}
|
284
|
+
}
|
285
|
+
}
|
286
|
+
|
287
|
+
},
|
288
|
+
|
289
|
+
activate: function() {
|
290
|
+
if( settings.activateTest.call(element) ) {
|
291
|
+
module.debug('Setting state to active');
|
292
|
+
$module
|
293
|
+
.addClass(className.active)
|
294
|
+
;
|
295
|
+
module.update.text(text.active);
|
296
|
+
settings.onActivate.call(element);
|
297
|
+
}
|
298
|
+
},
|
299
|
+
|
300
|
+
deactivate: function() {
|
301
|
+
if( settings.deactivateTest.call(element) ) {
|
302
|
+
module.debug('Setting state to inactive');
|
303
|
+
$module
|
304
|
+
.removeClass(className.active)
|
305
|
+
;
|
306
|
+
module.update.text(text.inactive);
|
307
|
+
settings.onDeactivate.call(element);
|
308
|
+
}
|
309
|
+
},
|
310
|
+
|
311
|
+
sync: function() {
|
312
|
+
module.verbose('Syncing other buttons to current state');
|
313
|
+
if( module.is.active() ) {
|
314
|
+
$allModules
|
315
|
+
.not($module)
|
316
|
+
.state('activate');
|
317
|
+
}
|
318
|
+
else {
|
319
|
+
$allModules
|
320
|
+
.not($module)
|
321
|
+
.state('deactivate')
|
322
|
+
;
|
323
|
+
}
|
324
|
+
},
|
325
|
+
|
326
|
+
get: {
|
327
|
+
text: function() {
|
328
|
+
return (settings.selector.text)
|
329
|
+
? $module.find(settings.selector.text).text()
|
330
|
+
: $module.html()
|
331
|
+
;
|
332
|
+
},
|
333
|
+
textFor: function(state) {
|
334
|
+
return text[state] || false;
|
335
|
+
}
|
336
|
+
},
|
337
|
+
|
338
|
+
flash: {
|
339
|
+
text: function(text, duration, callback) {
|
340
|
+
var
|
341
|
+
previousText = module.get.text()
|
342
|
+
;
|
343
|
+
module.debug('Flashing text message', text, duration);
|
344
|
+
text = text || settings.text.flash;
|
345
|
+
duration = duration || settings.flashDuration;
|
346
|
+
callback = callback || function() {};
|
347
|
+
module.update.text(text);
|
348
|
+
setTimeout(function(){
|
349
|
+
module.update.text(previousText);
|
350
|
+
callback.call(element);
|
351
|
+
}, duration);
|
352
|
+
}
|
353
|
+
},
|
354
|
+
|
355
|
+
reset: {
|
356
|
+
// on mouseout sets text to previous value
|
357
|
+
text: function() {
|
358
|
+
var
|
359
|
+
activeText = text.active || $module.data(metadata.storedText),
|
360
|
+
inactiveText = text.inactive || $module.data(metadata.storedText)
|
361
|
+
;
|
362
|
+
if( module.is.textEnabled() ) {
|
363
|
+
if( module.is.active() && activeText) {
|
364
|
+
module.verbose('Resetting active text', activeText);
|
365
|
+
module.update.text(activeText);
|
366
|
+
}
|
367
|
+
else if(inactiveText) {
|
368
|
+
module.verbose('Resetting inactive text', activeText);
|
369
|
+
module.update.text(inactiveText);
|
370
|
+
}
|
371
|
+
}
|
372
|
+
}
|
373
|
+
},
|
374
|
+
|
375
|
+
update: {
|
376
|
+
text: function(text) {
|
377
|
+
var
|
378
|
+
currentText = module.get.text()
|
379
|
+
;
|
380
|
+
if(text && text !== currentText) {
|
381
|
+
module.debug('Updating text', text);
|
382
|
+
if(settings.selector.text) {
|
383
|
+
$module
|
384
|
+
.data(metadata.storedText, text)
|
385
|
+
.find(settings.selector.text)
|
386
|
+
.text(text)
|
387
|
+
;
|
388
|
+
}
|
389
|
+
else {
|
390
|
+
$module
|
391
|
+
.data(metadata.storedText, text)
|
392
|
+
.html(text)
|
393
|
+
;
|
394
|
+
}
|
395
|
+
}
|
396
|
+
else {
|
397
|
+
module.debug('Text is already sane, ignoring update', text);
|
398
|
+
}
|
399
|
+
}
|
400
|
+
},
|
401
|
+
|
402
|
+
setting: function(name, value) {
|
403
|
+
module.debug('Changing setting', name, value);
|
404
|
+
if( $.isPlainObject(name) ) {
|
405
|
+
$.extend(true, settings, name);
|
406
|
+
}
|
407
|
+
else if(value !== undefined) {
|
408
|
+
settings[name] = value;
|
409
|
+
}
|
410
|
+
else {
|
411
|
+
return settings[name];
|
412
|
+
}
|
413
|
+
},
|
414
|
+
internal: function(name, value) {
|
415
|
+
if( $.isPlainObject(name) ) {
|
416
|
+
$.extend(true, module, name);
|
417
|
+
}
|
418
|
+
else if(value !== undefined) {
|
419
|
+
module[name] = value;
|
420
|
+
}
|
421
|
+
else {
|
422
|
+
return module[name];
|
423
|
+
}
|
424
|
+
},
|
425
|
+
debug: function() {
|
426
|
+
if(settings.debug) {
|
427
|
+
if(settings.performance) {
|
428
|
+
module.performance.log(arguments);
|
429
|
+
}
|
430
|
+
else {
|
431
|
+
module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
|
432
|
+
module.debug.apply(console, arguments);
|
433
|
+
}
|
434
|
+
}
|
435
|
+
},
|
436
|
+
verbose: function() {
|
437
|
+
if(settings.verbose && settings.debug) {
|
438
|
+
if(settings.performance) {
|
439
|
+
module.performance.log(arguments);
|
440
|
+
}
|
441
|
+
else {
|
442
|
+
module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
|
443
|
+
module.verbose.apply(console, arguments);
|
444
|
+
}
|
445
|
+
}
|
446
|
+
},
|
447
|
+
error: function() {
|
448
|
+
module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
|
449
|
+
module.error.apply(console, arguments);
|
450
|
+
},
|
451
|
+
performance: {
|
452
|
+
log: function(message) {
|
453
|
+
var
|
454
|
+
currentTime,
|
455
|
+
executionTime,
|
456
|
+
previousTime
|
457
|
+
;
|
458
|
+
if(settings.performance) {
|
459
|
+
currentTime = new Date().getTime();
|
460
|
+
previousTime = time || currentTime;
|
461
|
+
executionTime = currentTime - previousTime;
|
462
|
+
time = currentTime;
|
463
|
+
performance.push({
|
464
|
+
'Name' : message[0],
|
465
|
+
'Arguments' : [].slice.call(message, 1) || '',
|
466
|
+
'Element' : element,
|
467
|
+
'Execution Time' : executionTime
|
468
|
+
});
|
469
|
+
}
|
470
|
+
clearTimeout(module.performance.timer);
|
471
|
+
module.performance.timer = setTimeout(module.performance.display, 100);
|
472
|
+
},
|
473
|
+
display: function() {
|
474
|
+
var
|
475
|
+
title = settings.name + ':',
|
476
|
+
totalTime = 0
|
477
|
+
;
|
478
|
+
time = false;
|
479
|
+
clearTimeout(module.performance.timer);
|
480
|
+
$.each(performance, function(index, data) {
|
481
|
+
totalTime += data['Execution Time'];
|
482
|
+
});
|
483
|
+
title += ' ' + totalTime + 'ms';
|
484
|
+
if(moduleSelector) {
|
485
|
+
title += ' \'' + moduleSelector + '\'';
|
486
|
+
}
|
487
|
+
if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
|
488
|
+
console.groupCollapsed(title);
|
489
|
+
if(console.table) {
|
490
|
+
console.table(performance);
|
491
|
+
}
|
492
|
+
else {
|
493
|
+
$.each(performance, function(index, data) {
|
494
|
+
console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
|
495
|
+
});
|
496
|
+
}
|
497
|
+
console.groupEnd();
|
498
|
+
}
|
499
|
+
performance = [];
|
500
|
+
}
|
501
|
+
},
|
502
|
+
invoke: function(query, passedArguments, context) {
|
503
|
+
var
|
504
|
+
object = instance,
|
505
|
+
maxDepth,
|
506
|
+
found,
|
507
|
+
response
|
508
|
+
;
|
509
|
+
passedArguments = passedArguments || queryArguments;
|
510
|
+
context = element || context;
|
511
|
+
if(typeof query == 'string' && object !== undefined) {
|
512
|
+
query = query.split(/[\. ]/);
|
513
|
+
maxDepth = query.length - 1;
|
514
|
+
$.each(query, function(depth, value) {
|
515
|
+
var camelCaseValue = (depth != maxDepth)
|
516
|
+
? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
|
517
|
+
: query
|
518
|
+
;
|
519
|
+
if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
|
520
|
+
object = object[camelCaseValue];
|
521
|
+
}
|
522
|
+
else if( object[camelCaseValue] !== undefined ) {
|
523
|
+
found = object[camelCaseValue];
|
524
|
+
return false;
|
525
|
+
}
|
526
|
+
else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
|
527
|
+
object = object[value];
|
528
|
+
}
|
529
|
+
else if( object[value] !== undefined ) {
|
530
|
+
found = object[value];
|
531
|
+
return false;
|
532
|
+
}
|
533
|
+
else {
|
534
|
+
module.error(error.method, query);
|
535
|
+
return false;
|
536
|
+
}
|
537
|
+
});
|
538
|
+
}
|
539
|
+
if ( $.isFunction( found ) ) {
|
540
|
+
response = found.apply(context, passedArguments);
|
541
|
+
}
|
542
|
+
else if(found !== undefined) {
|
543
|
+
response = found;
|
544
|
+
}
|
545
|
+
if($.isArray(returnedValue)) {
|
546
|
+
returnedValue.push(response);
|
547
|
+
}
|
548
|
+
else if(returnedValue !== undefined) {
|
549
|
+
returnedValue = [returnedValue, response];
|
550
|
+
}
|
551
|
+
else if(response !== undefined) {
|
552
|
+
returnedValue = response;
|
553
|
+
}
|
554
|
+
return found;
|
555
|
+
}
|
556
|
+
};
|
557
|
+
|
558
|
+
if(methodInvoked) {
|
559
|
+
if(instance === undefined) {
|
560
|
+
module.initialize();
|
561
|
+
}
|
562
|
+
module.invoke(query);
|
563
|
+
}
|
564
|
+
else {
|
565
|
+
if(instance !== undefined) {
|
566
|
+
module.destroy();
|
567
|
+
}
|
568
|
+
module.initialize();
|
569
|
+
}
|
570
|
+
})
|
571
|
+
;
|
572
|
+
|
573
|
+
return (returnedValue !== undefined)
|
574
|
+
? returnedValue
|
575
|
+
: this
|
576
|
+
;
|
577
|
+
};
|
578
|
+
|
579
|
+
$.fn.state.settings = {
|
580
|
+
|
581
|
+
// module info
|
582
|
+
name : 'State',
|
583
|
+
|
584
|
+
// debug output
|
585
|
+
debug : false,
|
586
|
+
|
587
|
+
// verbose debug output
|
588
|
+
verbose : true,
|
589
|
+
|
590
|
+
// namespace for events
|
591
|
+
namespace : 'state',
|
592
|
+
|
593
|
+
// debug data includes performance
|
594
|
+
performance: true,
|
595
|
+
|
596
|
+
// callback occurs on state change
|
597
|
+
onActivate : function() {},
|
598
|
+
onDeactivate : function() {},
|
599
|
+
onChange : function() {},
|
600
|
+
|
601
|
+
// state test functions
|
602
|
+
activateTest : function() { return true; },
|
603
|
+
deactivateTest : function() { return true; },
|
604
|
+
|
605
|
+
// whether to automatically map default states
|
606
|
+
automatic : true,
|
607
|
+
|
608
|
+
// activate / deactivate changes all elements instantiated at same time
|
609
|
+
sync : false,
|
610
|
+
|
611
|
+
// default flash text duration, used for temporarily changing text of an element
|
612
|
+
flashDuration : 1000,
|
613
|
+
|
614
|
+
// selector filter
|
615
|
+
filter : {
|
616
|
+
text : '.loading, .disabled',
|
617
|
+
active : '.disabled'
|
618
|
+
},
|
619
|
+
|
620
|
+
context : false,
|
621
|
+
|
622
|
+
// error
|
623
|
+
error: {
|
624
|
+
method : 'The method you called is not defined.'
|
625
|
+
},
|
626
|
+
|
627
|
+
// metadata
|
628
|
+
metadata: {
|
629
|
+
promise : 'promise',
|
630
|
+
storedText : 'stored-text'
|
631
|
+
},
|
632
|
+
|
633
|
+
// change class on state
|
634
|
+
className: {
|
635
|
+
active : 'active',
|
636
|
+
disabled : 'disabled',
|
637
|
+
error : 'error',
|
638
|
+
loading : 'loading',
|
639
|
+
success : 'success',
|
640
|
+
warning : 'warning'
|
641
|
+
},
|
642
|
+
|
643
|
+
selector: {
|
644
|
+
// selector for text node
|
645
|
+
text: false
|
646
|
+
},
|
647
|
+
|
648
|
+
defaults : {
|
649
|
+
input: {
|
650
|
+
disabled : true,
|
651
|
+
loading : true,
|
652
|
+
active : true
|
653
|
+
},
|
654
|
+
button: {
|
655
|
+
disabled : true,
|
656
|
+
loading : true,
|
657
|
+
active : true,
|
658
|
+
},
|
659
|
+
progress: {
|
660
|
+
active : true,
|
661
|
+
success : true,
|
662
|
+
warning : true,
|
663
|
+
error : true
|
664
|
+
}
|
665
|
+
},
|
666
|
+
|
667
|
+
states : {
|
668
|
+
active : true,
|
669
|
+
disabled : true,
|
670
|
+
error : true,
|
671
|
+
loading : true,
|
672
|
+
success : true,
|
673
|
+
warning : true
|
674
|
+
},
|
675
|
+
|
676
|
+
text : {
|
677
|
+
disabled : false,
|
678
|
+
flash : false,
|
679
|
+
hover : false,
|
680
|
+
active : false,
|
681
|
+
inactive : false,
|
682
|
+
activate : false,
|
683
|
+
deactivate : false
|
684
|
+
}
|
685
|
+
|
686
|
+
};
|
687
|
+
|
688
|
+
|
689
|
+
|
690
|
+
})( jQuery, window , document );
|