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,1055 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic - Search
|
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
|
+
"use strict";
|
15
|
+
|
16
|
+
$.fn.search = function(parameters) {
|
17
|
+
var
|
18
|
+
$allModules = $(this),
|
19
|
+
moduleSelector = $allModules.selector || '',
|
20
|
+
|
21
|
+
time = new Date().getTime(),
|
22
|
+
performance = [],
|
23
|
+
|
24
|
+
query = arguments[0],
|
25
|
+
methodInvoked = (typeof query == 'string'),
|
26
|
+
queryArguments = [].slice.call(arguments, 1),
|
27
|
+
returnedValue
|
28
|
+
;
|
29
|
+
$(this)
|
30
|
+
.each(function() {
|
31
|
+
var
|
32
|
+
settings = $.extend(true, {}, $.fn.search.settings, parameters),
|
33
|
+
|
34
|
+
className = settings.className,
|
35
|
+
metadata = settings.metadata,
|
36
|
+
regExp = settings.regExp,
|
37
|
+
selector = settings.selector,
|
38
|
+
error = settings.error,
|
39
|
+
namespace = settings.namespace,
|
40
|
+
|
41
|
+
eventNamespace = '.' + namespace,
|
42
|
+
moduleNamespace = namespace + '-module',
|
43
|
+
|
44
|
+
$module = $(this),
|
45
|
+
$prompt = $module.find(selector.prompt),
|
46
|
+
$searchButton = $module.find(selector.searchButton),
|
47
|
+
$results = $module.find(selector.results),
|
48
|
+
$result = $module.find(selector.result),
|
49
|
+
$category = $module.find(selector.category),
|
50
|
+
|
51
|
+
element = this,
|
52
|
+
instance = $module.data(moduleNamespace),
|
53
|
+
|
54
|
+
module
|
55
|
+
;
|
56
|
+
module = {
|
57
|
+
|
58
|
+
initialize: function() {
|
59
|
+
module.verbose('Initializing module');
|
60
|
+
var
|
61
|
+
prompt = $prompt[0],
|
62
|
+
inputEvent = (prompt !== undefined && prompt.oninput !== undefined)
|
63
|
+
? 'input'
|
64
|
+
: (prompt !== undefined && prompt.onpropertychange !== undefined)
|
65
|
+
? 'propertychange'
|
66
|
+
: 'keyup'
|
67
|
+
;
|
68
|
+
if(settings.automatic) {
|
69
|
+
$prompt
|
70
|
+
.on(inputEvent + eventNamespace, module.throttle)
|
71
|
+
;
|
72
|
+
}
|
73
|
+
$prompt
|
74
|
+
.on('focus' + eventNamespace, module.event.focus)
|
75
|
+
.on('blur' + eventNamespace, module.event.blur)
|
76
|
+
.on('keydown' + eventNamespace, module.handleKeyboard)
|
77
|
+
;
|
78
|
+
$searchButton
|
79
|
+
.on('click' + eventNamespace, module.query)
|
80
|
+
;
|
81
|
+
$results
|
82
|
+
.on('mousedown' + eventNamespace, module.event.result.mousedown)
|
83
|
+
.on('mouseup' + eventNamespace, module.event.result.mouseup)
|
84
|
+
.on('click' + eventNamespace, selector.result, module.event.result.click)
|
85
|
+
;
|
86
|
+
module.instantiate();
|
87
|
+
},
|
88
|
+
instantiate: function() {
|
89
|
+
module.verbose('Storing instance of module', module);
|
90
|
+
instance = module;
|
91
|
+
$module
|
92
|
+
.data(moduleNamespace, module)
|
93
|
+
;
|
94
|
+
},
|
95
|
+
destroy: function() {
|
96
|
+
module.verbose('Destroying instance');
|
97
|
+
$module
|
98
|
+
.removeData(moduleNamespace)
|
99
|
+
;
|
100
|
+
$prompt
|
101
|
+
.off(eventNamespace)
|
102
|
+
;
|
103
|
+
$searchButton
|
104
|
+
.off(eventNamespace)
|
105
|
+
;
|
106
|
+
$results
|
107
|
+
.off(eventNamespace)
|
108
|
+
;
|
109
|
+
},
|
110
|
+
event: {
|
111
|
+
focus: function() {
|
112
|
+
module.set.focus();
|
113
|
+
clearTimeout(module.timer);
|
114
|
+
module.throttle();
|
115
|
+
if( module.has.minimumCharacters() ) {
|
116
|
+
module.showResults();
|
117
|
+
}
|
118
|
+
},
|
119
|
+
blur: function(event) {
|
120
|
+
var
|
121
|
+
pageLostFocus = (document.activeElement === this)
|
122
|
+
;
|
123
|
+
if(!pageLostFocus && !module.resultsClicked) {
|
124
|
+
module.cancel.query();
|
125
|
+
module.remove.focus();
|
126
|
+
module.timer = setTimeout(module.hideResults, settings.hideDelay);
|
127
|
+
}
|
128
|
+
},
|
129
|
+
result: {
|
130
|
+
mousedown: function() {
|
131
|
+
module.resultsClicked = true;
|
132
|
+
},
|
133
|
+
mouseup: function() {
|
134
|
+
module.resultsClicked = false;
|
135
|
+
},
|
136
|
+
click: function(event) {
|
137
|
+
module.debug('Search result selected');
|
138
|
+
var
|
139
|
+
$result = $(this),
|
140
|
+
$title = $result.find(selector.title).eq(0),
|
141
|
+
$link = $result.find('a[href]').eq(0),
|
142
|
+
href = $link.attr('href') || false,
|
143
|
+
target = $link.attr('target') || false,
|
144
|
+
title = $title.html(),
|
145
|
+
name = ($title.length > 0)
|
146
|
+
? $title.text()
|
147
|
+
: false,
|
148
|
+
results = module.get.results(),
|
149
|
+
result = module.get.result(name, results),
|
150
|
+
returnedValue
|
151
|
+
;
|
152
|
+
if( $.isFunction(settings.onSelect) ) {
|
153
|
+
if(settings.onSelect.call(element, result, results) === false) {
|
154
|
+
module.debug('Custom onSelect callback cancelled default select action');
|
155
|
+
return;
|
156
|
+
}
|
157
|
+
}
|
158
|
+
module.hideResults();
|
159
|
+
if(name) {
|
160
|
+
module.set.value(name);
|
161
|
+
}
|
162
|
+
if(href) {
|
163
|
+
module.verbose('Opening search link found in result', $link);
|
164
|
+
if(target == '_blank' || event.ctrlKey) {
|
165
|
+
window.open(href);
|
166
|
+
}
|
167
|
+
else {
|
168
|
+
window.location.href = (href);
|
169
|
+
}
|
170
|
+
}
|
171
|
+
}
|
172
|
+
}
|
173
|
+
},
|
174
|
+
handleKeyboard: function(event) {
|
175
|
+
var
|
176
|
+
// force selector refresh
|
177
|
+
$result = $module.find(selector.result),
|
178
|
+
$category = $module.find(selector.category),
|
179
|
+
currentIndex = $result.index( $result.filter('.' + className.active) ),
|
180
|
+
resultSize = $result.length,
|
181
|
+
|
182
|
+
keyCode = event.which,
|
183
|
+
keys = {
|
184
|
+
backspace : 8,
|
185
|
+
enter : 13,
|
186
|
+
escape : 27,
|
187
|
+
upArrow : 38,
|
188
|
+
downArrow : 40
|
189
|
+
},
|
190
|
+
newIndex
|
191
|
+
;
|
192
|
+
// search shortcuts
|
193
|
+
if(keyCode == keys.escape) {
|
194
|
+
module.verbose('Escape key pressed, blurring search field');
|
195
|
+
$prompt
|
196
|
+
.trigger('blur')
|
197
|
+
;
|
198
|
+
}
|
199
|
+
if( module.is.visible() ) {
|
200
|
+
if(keyCode == keys.enter) {
|
201
|
+
module.verbose('Enter key pressed, selecting active result');
|
202
|
+
if( $result.filter('.' + className.active).length > 0 ) {
|
203
|
+
module.event.result.click.call($result.filter('.' + className.active), event);
|
204
|
+
event.preventDefault();
|
205
|
+
return false;
|
206
|
+
}
|
207
|
+
}
|
208
|
+
else if(keyCode == keys.upArrow) {
|
209
|
+
module.verbose('Up key pressed, changing active result');
|
210
|
+
newIndex = (currentIndex - 1 < 0)
|
211
|
+
? currentIndex
|
212
|
+
: currentIndex - 1
|
213
|
+
;
|
214
|
+
$category
|
215
|
+
.removeClass(className.active)
|
216
|
+
;
|
217
|
+
$result
|
218
|
+
.removeClass(className.active)
|
219
|
+
.eq(newIndex)
|
220
|
+
.addClass(className.active)
|
221
|
+
.closest($category)
|
222
|
+
.addClass(className.active)
|
223
|
+
;
|
224
|
+
event.preventDefault();
|
225
|
+
}
|
226
|
+
else if(keyCode == keys.downArrow) {
|
227
|
+
module.verbose('Down key pressed, changing active result');
|
228
|
+
newIndex = (currentIndex + 1 >= resultSize)
|
229
|
+
? currentIndex
|
230
|
+
: currentIndex + 1
|
231
|
+
;
|
232
|
+
$category
|
233
|
+
.removeClass(className.active)
|
234
|
+
;
|
235
|
+
$result
|
236
|
+
.removeClass(className.active)
|
237
|
+
.eq(newIndex)
|
238
|
+
.addClass(className.active)
|
239
|
+
.closest($category)
|
240
|
+
.addClass(className.active)
|
241
|
+
;
|
242
|
+
event.preventDefault();
|
243
|
+
}
|
244
|
+
}
|
245
|
+
else {
|
246
|
+
// query shortcuts
|
247
|
+
if(keyCode == keys.enter) {
|
248
|
+
module.verbose('Enter key pressed, executing query');
|
249
|
+
module.query();
|
250
|
+
module.set.buttonPressed();
|
251
|
+
$prompt.one('keyup', module.remove.buttonFocus);
|
252
|
+
}
|
253
|
+
}
|
254
|
+
},
|
255
|
+
|
256
|
+
setup: {
|
257
|
+
api: function() {
|
258
|
+
var
|
259
|
+
apiSettings = {
|
260
|
+
on : false,
|
261
|
+
action : 'search',
|
262
|
+
onFailure : module.error
|
263
|
+
},
|
264
|
+
searchHTML
|
265
|
+
;
|
266
|
+
module.verbose('First request, initializing API');
|
267
|
+
$module.api(apiSettings);
|
268
|
+
}
|
269
|
+
},
|
270
|
+
|
271
|
+
can: {
|
272
|
+
useAPI: function() {
|
273
|
+
return $.fn.api !== undefined;
|
274
|
+
},
|
275
|
+
transition: function() {
|
276
|
+
return settings.transition && $.fn.transition !== undefined && $module.transition('is supported');
|
277
|
+
}
|
278
|
+
},
|
279
|
+
|
280
|
+
is: {
|
281
|
+
empty: function() {
|
282
|
+
return ($results.html() === '');
|
283
|
+
},
|
284
|
+
visible: function() {
|
285
|
+
return ($results.filter(':visible').length > 0);
|
286
|
+
},
|
287
|
+
focused: function() {
|
288
|
+
return ($prompt.filter(':focus').length > 0);
|
289
|
+
}
|
290
|
+
},
|
291
|
+
|
292
|
+
get: {
|
293
|
+
value: function() {
|
294
|
+
return $prompt.val();
|
295
|
+
},
|
296
|
+
results: function() {
|
297
|
+
var
|
298
|
+
results = $module.data(metadata.results)
|
299
|
+
;
|
300
|
+
return results;
|
301
|
+
},
|
302
|
+
result: function(value, results) {
|
303
|
+
var
|
304
|
+
result = false
|
305
|
+
;
|
306
|
+
value = value || module.get.value();
|
307
|
+
results = results || module.get.results();
|
308
|
+
if(settings.type === 'category') {
|
309
|
+
module.debug('Finding result from category results', value);
|
310
|
+
$.each(results, function(index, category) {
|
311
|
+
if(category.results !== undefined) {
|
312
|
+
result = module.search.object(value, category.results)[0];
|
313
|
+
if(result.length > 0) {
|
314
|
+
return true;
|
315
|
+
}
|
316
|
+
}
|
317
|
+
});
|
318
|
+
}
|
319
|
+
else {
|
320
|
+
module.debug('Finding result in results object', value);
|
321
|
+
result = module.search.object(value, results)[0];
|
322
|
+
}
|
323
|
+
return result;
|
324
|
+
},
|
325
|
+
},
|
326
|
+
|
327
|
+
set: {
|
328
|
+
focus: function() {
|
329
|
+
$module.addClass(className.focus);
|
330
|
+
},
|
331
|
+
loading: function() {
|
332
|
+
$module.addClass(className.loading);
|
333
|
+
},
|
334
|
+
value: function(value) {
|
335
|
+
module.verbose('Setting search input value', value);
|
336
|
+
$prompt.val(value);
|
337
|
+
},
|
338
|
+
buttonPressed: function() {
|
339
|
+
$searchButton.addClass(className.pressed);
|
340
|
+
}
|
341
|
+
},
|
342
|
+
|
343
|
+
remove: {
|
344
|
+
loading: function() {
|
345
|
+
$module.removeClass(className.loading);
|
346
|
+
},
|
347
|
+
focus: function() {
|
348
|
+
$module.removeClass(className.focus);
|
349
|
+
},
|
350
|
+
buttonPressed: function() {
|
351
|
+
$searchButton.removeClass(className.pressed);
|
352
|
+
}
|
353
|
+
},
|
354
|
+
|
355
|
+
query: function() {
|
356
|
+
var
|
357
|
+
searchTerm = module.get.value(),
|
358
|
+
cachedHTML = module.read.cachedHTML(searchTerm)
|
359
|
+
;
|
360
|
+
if(cachedHTML) {
|
361
|
+
module.debug('Reading result for ' + searchTerm + ' from cache');
|
362
|
+
module.addResults(cachedHTML);
|
363
|
+
}
|
364
|
+
else {
|
365
|
+
module.debug('Querying for ' + searchTerm);
|
366
|
+
if($.isPlainObject(settings.source) || $.isArray(settings.source)) {
|
367
|
+
module.search.local(searchTerm);
|
368
|
+
}
|
369
|
+
else if( module.can.useAPI() ) {
|
370
|
+
if(settings.apiSettings) {
|
371
|
+
module.debug('Searching with specified API settings', settings.apiSettings);
|
372
|
+
module.search.remote(searchTerm);
|
373
|
+
}
|
374
|
+
else if($.api.settings.api.search !== undefined) {
|
375
|
+
module.debug('Searching with default search API endpoint');
|
376
|
+
module.search.remote(searchTerm);
|
377
|
+
}
|
378
|
+
}
|
379
|
+
else {
|
380
|
+
module.error(error.source);
|
381
|
+
}
|
382
|
+
settings.onSearchQuery.call(element, searchTerm);
|
383
|
+
}
|
384
|
+
},
|
385
|
+
|
386
|
+
search: {
|
387
|
+
local: function(searchTerm) {
|
388
|
+
var
|
389
|
+
searchResults = module.search.object(searchTerm, settings.content),
|
390
|
+
searchHTML
|
391
|
+
;
|
392
|
+
module.set.loading();
|
393
|
+
module.save.results(searchResults);
|
394
|
+
module.debug('Returned local search results', searchResults);
|
395
|
+
|
396
|
+
searchHTML = module.generateResults({
|
397
|
+
results: searchResults
|
398
|
+
});
|
399
|
+
module.remove.loading();
|
400
|
+
module.write.cachedHTML(searchTerm, searchHTML);
|
401
|
+
module.addResults(searchHTML);
|
402
|
+
},
|
403
|
+
remote: function(searchTerm) {
|
404
|
+
var
|
405
|
+
apiSettings = {
|
406
|
+
onSuccess : function(response) {
|
407
|
+
module.parse.response.call(element, response, searchTerm);
|
408
|
+
},
|
409
|
+
urlData: {
|
410
|
+
query: searchTerm
|
411
|
+
}
|
412
|
+
}
|
413
|
+
;
|
414
|
+
if( !$module.api('get request') ) {
|
415
|
+
module.setup.api();
|
416
|
+
}
|
417
|
+
$.extend(true, apiSettings, settings.apiSettings);
|
418
|
+
module.debug('Executing search', apiSettings);
|
419
|
+
module.cancel.query();
|
420
|
+
$module
|
421
|
+
.api('setting', apiSettings)
|
422
|
+
.api('query')
|
423
|
+
;
|
424
|
+
},
|
425
|
+
object: function(searchTerm, source) {
|
426
|
+
var
|
427
|
+
results = [],
|
428
|
+
fullTextResults = [],
|
429
|
+
searchFields = $.isArray(settings.searchFields)
|
430
|
+
? settings.searchFields
|
431
|
+
: [settings.searchFields],
|
432
|
+
searchRegExp = new RegExp(regExp.exact + searchTerm, 'i'),
|
433
|
+
fullTextRegExp = new RegExp(searchTerm, 'i')
|
434
|
+
;
|
435
|
+
|
436
|
+
source = source || settings.source;
|
437
|
+
|
438
|
+
// exit conditions on no source
|
439
|
+
if(source === undefined) {
|
440
|
+
module.error(error.source);
|
441
|
+
return [];
|
442
|
+
}
|
443
|
+
|
444
|
+
// iterate through search fields in array order
|
445
|
+
$.each(searchFields, function(index, field) {
|
446
|
+
$.each(source, function(label, content) {
|
447
|
+
var
|
448
|
+
fieldExists = (typeof content[field] == 'string'),
|
449
|
+
notAlreadyResult = ($.inArray(content, results) == -1 && $.inArray(content, fullTextResults) == -1)
|
450
|
+
;
|
451
|
+
if(fieldExists && notAlreadyResult) {
|
452
|
+
if( content[field].match(searchRegExp) ) {
|
453
|
+
results.push(content);
|
454
|
+
}
|
455
|
+
else if( settings.searchFullText && content[field].match(fullTextRegExp) ) {
|
456
|
+
fullTextResults.push(content);
|
457
|
+
}
|
458
|
+
}
|
459
|
+
});
|
460
|
+
});
|
461
|
+
return $.merge(results, fullTextResults);
|
462
|
+
}
|
463
|
+
},
|
464
|
+
|
465
|
+
parse: {
|
466
|
+
response: function(response, searchTerm) {
|
467
|
+
var
|
468
|
+
searchHTML = module.generateResults(response)
|
469
|
+
;
|
470
|
+
module.verbose('Parsing server response', response);
|
471
|
+
if(response !== undefined) {
|
472
|
+
if(searchTerm) {
|
473
|
+
module.write.cachedHTML(searchTerm, searchHTML);
|
474
|
+
if(response.results !== undefined) {
|
475
|
+
module.save.results(response.results);
|
476
|
+
}
|
477
|
+
}
|
478
|
+
module.addResults(searchHTML);
|
479
|
+
}
|
480
|
+
}
|
481
|
+
},
|
482
|
+
|
483
|
+
throttle: function() {
|
484
|
+
clearTimeout(module.timer);
|
485
|
+
if(module.has.minimumCharacters()) {
|
486
|
+
module.timer = setTimeout(module.query, settings.searchDelay);
|
487
|
+
}
|
488
|
+
else {
|
489
|
+
module.hideResults();
|
490
|
+
}
|
491
|
+
},
|
492
|
+
|
493
|
+
cancel: {
|
494
|
+
query: function() {
|
495
|
+
if( module.can.useAPI() ) {
|
496
|
+
$module.api('abort');
|
497
|
+
}
|
498
|
+
}
|
499
|
+
},
|
500
|
+
|
501
|
+
has: {
|
502
|
+
minimumCharacters: function() {
|
503
|
+
var
|
504
|
+
searchTerm = module.get.value(),
|
505
|
+
numCharacters = searchTerm.length
|
506
|
+
;
|
507
|
+
return (numCharacters >= settings.minCharacters);
|
508
|
+
}
|
509
|
+
},
|
510
|
+
|
511
|
+
read: {
|
512
|
+
cachedHTML: function(name) {
|
513
|
+
var
|
514
|
+
cache = $module.data(metadata.cache)
|
515
|
+
;
|
516
|
+
if(settings.cache) {
|
517
|
+
module.verbose('Checking cache for generated html for query', name);
|
518
|
+
return (typeof cache == 'object') && (cache[name] !== undefined)
|
519
|
+
? cache[name]
|
520
|
+
: false
|
521
|
+
;
|
522
|
+
}
|
523
|
+
return false;
|
524
|
+
}
|
525
|
+
},
|
526
|
+
|
527
|
+
save: {
|
528
|
+
results: function(results) {
|
529
|
+
module.verbose('Saving current search results to metadata', results);
|
530
|
+
$module.data(metadata.results, results);
|
531
|
+
}
|
532
|
+
},
|
533
|
+
|
534
|
+
write: {
|
535
|
+
cachedHTML: function(name, value) {
|
536
|
+
var
|
537
|
+
cache = ($module.data(metadata.cache) !== undefined)
|
538
|
+
? $module.data(metadata.cache)
|
539
|
+
: {}
|
540
|
+
;
|
541
|
+
if(settings.cache) {
|
542
|
+
module.verbose('Writing generated html to cache', name, value);
|
543
|
+
cache[name] = value;
|
544
|
+
$module
|
545
|
+
.data(metadata.cache, cache)
|
546
|
+
;
|
547
|
+
}
|
548
|
+
}
|
549
|
+
},
|
550
|
+
|
551
|
+
addResults: function(html) {
|
552
|
+
if( $.isFunction(settings.onResultsAdd) ) {
|
553
|
+
if( settings.onResultsAdd.call($results, html) === false ) {
|
554
|
+
module.debug('onResultsAdd callback cancelled default action');
|
555
|
+
return false;
|
556
|
+
}
|
557
|
+
}
|
558
|
+
$results
|
559
|
+
.html(html)
|
560
|
+
;
|
561
|
+
module.showResults();
|
562
|
+
},
|
563
|
+
|
564
|
+
showResults: function() {
|
565
|
+
if( !module.is.visible() && module.is.focused() && !module.is.empty() ) {
|
566
|
+
if( module.can.transition() ) {
|
567
|
+
module.debug('Showing results with css animations');
|
568
|
+
$results
|
569
|
+
.transition({
|
570
|
+
animation : settings.transition + ' in',
|
571
|
+
duration : settings.duration,
|
572
|
+
queue : true
|
573
|
+
})
|
574
|
+
;
|
575
|
+
}
|
576
|
+
else {
|
577
|
+
module.debug('Showing results with javascript');
|
578
|
+
$results
|
579
|
+
.stop()
|
580
|
+
.fadeIn(settings.duration, settings.easing)
|
581
|
+
;
|
582
|
+
}
|
583
|
+
settings.onResultsOpen.call($results);
|
584
|
+
}
|
585
|
+
},
|
586
|
+
hideResults: function() {
|
587
|
+
if( module.is.visible() ) {
|
588
|
+
if( module.can.transition() ) {
|
589
|
+
module.debug('Hiding results with css animations');
|
590
|
+
$results
|
591
|
+
.transition({
|
592
|
+
animation : settings.transition + ' out',
|
593
|
+
duration : settings.duration,
|
594
|
+
queue : true
|
595
|
+
})
|
596
|
+
;
|
597
|
+
}
|
598
|
+
else {
|
599
|
+
module.debug('Hiding results with javascript');
|
600
|
+
$results
|
601
|
+
.stop()
|
602
|
+
.fadeOut(settings.duration, settings.easing)
|
603
|
+
;
|
604
|
+
}
|
605
|
+
settings.onResultsClose.call($results);
|
606
|
+
}
|
607
|
+
},
|
608
|
+
|
609
|
+
generateResults: function(response) {
|
610
|
+
module.debug('Generating html from response', response);
|
611
|
+
var
|
612
|
+
template = settings.templates[settings.type],
|
613
|
+
isProperObject = ($.isPlainObject(response.results) && !$.isEmptyObject(response.results)),
|
614
|
+
isProperArray = ($.isArray(response.results) && response.results.length > 0),
|
615
|
+
html = ''
|
616
|
+
;
|
617
|
+
if(isProperObject || isProperArray ) {
|
618
|
+
if(settings.maxResults > 0) {
|
619
|
+
if(isProperObject) {
|
620
|
+
module.error(error.maxResults);
|
621
|
+
}
|
622
|
+
else {
|
623
|
+
response.results = response.results.slice(0, settings.maxResults);
|
624
|
+
}
|
625
|
+
}
|
626
|
+
if($.isFunction(template)) {
|
627
|
+
html = template(response);
|
628
|
+
}
|
629
|
+
else {
|
630
|
+
module.error(error.noTemplate, false);
|
631
|
+
}
|
632
|
+
}
|
633
|
+
else {
|
634
|
+
html = module.displayMessage(error.noResults, 'empty');
|
635
|
+
}
|
636
|
+
settings.onResults.call(element, response);
|
637
|
+
return html;
|
638
|
+
},
|
639
|
+
|
640
|
+
displayMessage: function(text, type) {
|
641
|
+
type = type || 'standard';
|
642
|
+
module.debug('Displaying message', text, type);
|
643
|
+
module.addResults( settings.templates.message(text, type) );
|
644
|
+
return settings.templates.message(text, type);
|
645
|
+
},
|
646
|
+
|
647
|
+
setting: function(name, value) {
|
648
|
+
if( $.isPlainObject(name) ) {
|
649
|
+
$.extend(true, settings, name);
|
650
|
+
}
|
651
|
+
else if(value !== undefined) {
|
652
|
+
settings[name] = value;
|
653
|
+
}
|
654
|
+
else {
|
655
|
+
return settings[name];
|
656
|
+
}
|
657
|
+
},
|
658
|
+
internal: function(name, value) {
|
659
|
+
if( $.isPlainObject(name) ) {
|
660
|
+
$.extend(true, module, name);
|
661
|
+
}
|
662
|
+
else if(value !== undefined) {
|
663
|
+
module[name] = value;
|
664
|
+
}
|
665
|
+
else {
|
666
|
+
return module[name];
|
667
|
+
}
|
668
|
+
},
|
669
|
+
debug: function() {
|
670
|
+
if(settings.debug) {
|
671
|
+
if(settings.performance) {
|
672
|
+
module.performance.log(arguments);
|
673
|
+
}
|
674
|
+
else {
|
675
|
+
module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
|
676
|
+
module.debug.apply(console, arguments);
|
677
|
+
}
|
678
|
+
}
|
679
|
+
},
|
680
|
+
verbose: function() {
|
681
|
+
if(settings.verbose && settings.debug) {
|
682
|
+
if(settings.performance) {
|
683
|
+
module.performance.log(arguments);
|
684
|
+
}
|
685
|
+
else {
|
686
|
+
module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
|
687
|
+
module.verbose.apply(console, arguments);
|
688
|
+
}
|
689
|
+
}
|
690
|
+
},
|
691
|
+
error: function() {
|
692
|
+
module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
|
693
|
+
module.error.apply(console, arguments);
|
694
|
+
},
|
695
|
+
performance: {
|
696
|
+
log: function(message) {
|
697
|
+
var
|
698
|
+
currentTime,
|
699
|
+
executionTime,
|
700
|
+
previousTime
|
701
|
+
;
|
702
|
+
if(settings.performance) {
|
703
|
+
currentTime = new Date().getTime();
|
704
|
+
previousTime = time || currentTime;
|
705
|
+
executionTime = currentTime - previousTime;
|
706
|
+
time = currentTime;
|
707
|
+
performance.push({
|
708
|
+
'Name' : message[0],
|
709
|
+
'Arguments' : [].slice.call(message, 1) || '',
|
710
|
+
'Element' : element,
|
711
|
+
'Execution Time' : executionTime
|
712
|
+
});
|
713
|
+
}
|
714
|
+
clearTimeout(module.performance.timer);
|
715
|
+
module.performance.timer = setTimeout(module.performance.display, 100);
|
716
|
+
},
|
717
|
+
display: function() {
|
718
|
+
var
|
719
|
+
title = settings.name + ':',
|
720
|
+
totalTime = 0
|
721
|
+
;
|
722
|
+
time = false;
|
723
|
+
clearTimeout(module.performance.timer);
|
724
|
+
$.each(performance, function(index, data) {
|
725
|
+
totalTime += data['Execution Time'];
|
726
|
+
});
|
727
|
+
title += ' ' + totalTime + 'ms';
|
728
|
+
if(moduleSelector) {
|
729
|
+
title += ' \'' + moduleSelector + '\'';
|
730
|
+
}
|
731
|
+
if($allModules.length > 1) {
|
732
|
+
title += ' ' + '(' + $allModules.length + ')';
|
733
|
+
}
|
734
|
+
if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
|
735
|
+
console.groupCollapsed(title);
|
736
|
+
if(console.table) {
|
737
|
+
console.table(performance);
|
738
|
+
}
|
739
|
+
else {
|
740
|
+
$.each(performance, function(index, data) {
|
741
|
+
console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
|
742
|
+
});
|
743
|
+
}
|
744
|
+
console.groupEnd();
|
745
|
+
}
|
746
|
+
performance = [];
|
747
|
+
}
|
748
|
+
},
|
749
|
+
invoke: function(query, passedArguments, context) {
|
750
|
+
var
|
751
|
+
object = instance,
|
752
|
+
maxDepth,
|
753
|
+
found,
|
754
|
+
response
|
755
|
+
;
|
756
|
+
passedArguments = passedArguments || queryArguments;
|
757
|
+
context = element || context;
|
758
|
+
if(typeof query == 'string' && object !== undefined) {
|
759
|
+
query = query.split(/[\. ]/);
|
760
|
+
maxDepth = query.length - 1;
|
761
|
+
$.each(query, function(depth, value) {
|
762
|
+
var camelCaseValue = (depth != maxDepth)
|
763
|
+
? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
|
764
|
+
: query
|
765
|
+
;
|
766
|
+
if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
|
767
|
+
object = object[camelCaseValue];
|
768
|
+
}
|
769
|
+
else if( object[camelCaseValue] !== undefined ) {
|
770
|
+
found = object[camelCaseValue];
|
771
|
+
return false;
|
772
|
+
}
|
773
|
+
else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
|
774
|
+
object = object[value];
|
775
|
+
}
|
776
|
+
else if( object[value] !== undefined ) {
|
777
|
+
found = object[value];
|
778
|
+
return false;
|
779
|
+
}
|
780
|
+
else {
|
781
|
+
return false;
|
782
|
+
}
|
783
|
+
});
|
784
|
+
}
|
785
|
+
if ( $.isFunction( found ) ) {
|
786
|
+
response = found.apply(context, passedArguments);
|
787
|
+
}
|
788
|
+
else if(found !== undefined) {
|
789
|
+
response = found;
|
790
|
+
}
|
791
|
+
if($.isArray(returnedValue)) {
|
792
|
+
returnedValue.push(response);
|
793
|
+
}
|
794
|
+
else if(returnedValue !== undefined) {
|
795
|
+
returnedValue = [returnedValue, response];
|
796
|
+
}
|
797
|
+
else if(response !== undefined) {
|
798
|
+
returnedValue = response;
|
799
|
+
}
|
800
|
+
return found;
|
801
|
+
}
|
802
|
+
};
|
803
|
+
if(methodInvoked) {
|
804
|
+
if(instance === undefined) {
|
805
|
+
module.initialize();
|
806
|
+
}
|
807
|
+
module.invoke(query);
|
808
|
+
}
|
809
|
+
else {
|
810
|
+
if(instance !== undefined) {
|
811
|
+
module.destroy();
|
812
|
+
}
|
813
|
+
module.initialize();
|
814
|
+
}
|
815
|
+
|
816
|
+
})
|
817
|
+
;
|
818
|
+
|
819
|
+
return (returnedValue !== undefined)
|
820
|
+
? returnedValue
|
821
|
+
: this
|
822
|
+
;
|
823
|
+
};
|
824
|
+
|
825
|
+
$.fn.search.settings = {
|
826
|
+
|
827
|
+
name : 'Search Module',
|
828
|
+
namespace : 'search',
|
829
|
+
|
830
|
+
debug : false,
|
831
|
+
verbose : true,
|
832
|
+
performance : true,
|
833
|
+
|
834
|
+
type : 'standard',
|
835
|
+
minCharacters : 1,
|
836
|
+
|
837
|
+
// api config
|
838
|
+
apiSettings : false,
|
839
|
+
|
840
|
+
source : false,
|
841
|
+
searchFields : [
|
842
|
+
'title',
|
843
|
+
'description'
|
844
|
+
],
|
845
|
+
searchFullText : true,
|
846
|
+
|
847
|
+
automatic : 'true',
|
848
|
+
hideDelay : 0,
|
849
|
+
searchDelay : 100,
|
850
|
+
maxResults : 7,
|
851
|
+
cache : true,
|
852
|
+
|
853
|
+
transition : 'scale',
|
854
|
+
duration : 300,
|
855
|
+
easing : 'easeOutExpo',
|
856
|
+
|
857
|
+
onSelect : false,
|
858
|
+
onResultsAdd : false,
|
859
|
+
|
860
|
+
onSearchQuery : function(){},
|
861
|
+
onResults : function(response){},
|
862
|
+
|
863
|
+
onResultsOpen : function(){},
|
864
|
+
onResultsClose : function(){},
|
865
|
+
|
866
|
+
className: {
|
867
|
+
active : 'active',
|
868
|
+
empty : 'empty',
|
869
|
+
focus : 'focus',
|
870
|
+
loading : 'loading',
|
871
|
+
pressed : 'down'
|
872
|
+
},
|
873
|
+
|
874
|
+
error : {
|
875
|
+
source : 'Cannot search. No source used, and Semantic API module was not included',
|
876
|
+
noResults : 'Your search returned no results',
|
877
|
+
logging : 'Error in debug logging, exiting.',
|
878
|
+
noTemplate : 'A valid template name was not specified.',
|
879
|
+
serverError : 'There was an issue with querying the server.',
|
880
|
+
maxResults : 'Results must be an array to use maxResults setting',
|
881
|
+
method : 'The method you called is not defined.'
|
882
|
+
},
|
883
|
+
|
884
|
+
metadata: {
|
885
|
+
cache : 'cache',
|
886
|
+
results : 'results'
|
887
|
+
},
|
888
|
+
|
889
|
+
regExp: {
|
890
|
+
exact: '(?:\s|^)'
|
891
|
+
},
|
892
|
+
|
893
|
+
selector : {
|
894
|
+
prompt : '.prompt',
|
895
|
+
searchButton : '.search.button',
|
896
|
+
results : '.results',
|
897
|
+
category : '.category',
|
898
|
+
result : '.result',
|
899
|
+
title : '.title, .name'
|
900
|
+
},
|
901
|
+
|
902
|
+
templates: {
|
903
|
+
escape: function(string) {
|
904
|
+
var
|
905
|
+
badChars = /[&<>"'`]/g,
|
906
|
+
shouldEscape = /[&<>"'`]/,
|
907
|
+
escape = {
|
908
|
+
"&": "&",
|
909
|
+
"<": "<",
|
910
|
+
">": ">",
|
911
|
+
'"': """,
|
912
|
+
"'": "'",
|
913
|
+
"`": "`"
|
914
|
+
},
|
915
|
+
escapedChar = function(chr) {
|
916
|
+
return escape[chr];
|
917
|
+
}
|
918
|
+
;
|
919
|
+
if(shouldEscape.test(string)) {
|
920
|
+
return string.replace(badChars, escapedChar);
|
921
|
+
}
|
922
|
+
return string;
|
923
|
+
},
|
924
|
+
message: function(message, type) {
|
925
|
+
var
|
926
|
+
html = ''
|
927
|
+
;
|
928
|
+
if(message !== undefined && type !== undefined) {
|
929
|
+
html += ''
|
930
|
+
+ '<div class="message ' + type + '">'
|
931
|
+
;
|
932
|
+
// message type
|
933
|
+
if(type == 'empty') {
|
934
|
+
html += ''
|
935
|
+
+ '<div class="header">No Results</div class="header">'
|
936
|
+
+ '<div class="description">' + message + '</div class="description">'
|
937
|
+
;
|
938
|
+
}
|
939
|
+
else {
|
940
|
+
html += ' <div class="description">' + message + '</div>';
|
941
|
+
}
|
942
|
+
html += '</div>';
|
943
|
+
}
|
944
|
+
return html;
|
945
|
+
},
|
946
|
+
category: function(response) {
|
947
|
+
var
|
948
|
+
html = '',
|
949
|
+
escape = $.fn.search.settings.templates.escape
|
950
|
+
;
|
951
|
+
if(response.results !== undefined) {
|
952
|
+
// each category
|
953
|
+
$.each(response.results, function(index, category) {
|
954
|
+
if(category.results !== undefined && category.results.length > 0) {
|
955
|
+
html += ''
|
956
|
+
+ '<div class="category">'
|
957
|
+
+ '<div class="name">' + category.name + '</div>'
|
958
|
+
;
|
959
|
+
// each item inside category
|
960
|
+
$.each(category.results, function(index, result) {
|
961
|
+
html += '<div class="result">';
|
962
|
+
if(result.url) {
|
963
|
+
html += '<a href="' + result.url + '"></a>';
|
964
|
+
}
|
965
|
+
if(result.image !== undefined) {
|
966
|
+
result.image = escape(result.image);
|
967
|
+
html += ''
|
968
|
+
+ '<div class="image">'
|
969
|
+
+ ' <img src="' + result.image + '" alt="">'
|
970
|
+
+ '</div>'
|
971
|
+
;
|
972
|
+
}
|
973
|
+
html += '<div class="content">';
|
974
|
+
if(result.price !== undefined) {
|
975
|
+
result.price = escape(result.price);
|
976
|
+
html += '<div class="price">' + result.price + '</div>';
|
977
|
+
}
|
978
|
+
if(result.title !== undefined) {
|
979
|
+
result.title = escape(result.title);
|
980
|
+
html += '<div class="title">' + result.title + '</div>';
|
981
|
+
}
|
982
|
+
if(result.description !== undefined) {
|
983
|
+
html += '<div class="description">' + result.description + '</div>';
|
984
|
+
}
|
985
|
+
html += ''
|
986
|
+
+ '</div>'
|
987
|
+
+ '</div>'
|
988
|
+
;
|
989
|
+
});
|
990
|
+
html += ''
|
991
|
+
+ '</div>'
|
992
|
+
;
|
993
|
+
}
|
994
|
+
});
|
995
|
+
if(response.action) {
|
996
|
+
html += ''
|
997
|
+
+ '<a href="' + response.action.url + '" class="action">'
|
998
|
+
+ response.action.text
|
999
|
+
+ '</a>';
|
1000
|
+
}
|
1001
|
+
return html;
|
1002
|
+
}
|
1003
|
+
return false;
|
1004
|
+
},
|
1005
|
+
standard: function(response) {
|
1006
|
+
var
|
1007
|
+
html = ''
|
1008
|
+
;
|
1009
|
+
if(response.results !== undefined) {
|
1010
|
+
|
1011
|
+
// each result
|
1012
|
+
$.each(response.results, function(index, result) {
|
1013
|
+
if(result.url) {
|
1014
|
+
html += '<a class="result" href="' + result.url + '">';
|
1015
|
+
}
|
1016
|
+
else {
|
1017
|
+
html += '<a class="result">';
|
1018
|
+
}
|
1019
|
+
if(result.image !== undefined) {
|
1020
|
+
html += ''
|
1021
|
+
+ '<div class="image">'
|
1022
|
+
+ ' <img src="' + result.image + '">'
|
1023
|
+
+ '</div>'
|
1024
|
+
;
|
1025
|
+
}
|
1026
|
+
html += '<div class="content">';
|
1027
|
+
if(result.price !== undefined) {
|
1028
|
+
html += '<div class="price">' + result.price + '</div>';
|
1029
|
+
}
|
1030
|
+
if(result.title !== undefined) {
|
1031
|
+
html += '<div class="title">' + result.title + '</div>';
|
1032
|
+
}
|
1033
|
+
if(result.description !== undefined) {
|
1034
|
+
html += '<div class="description">' + result.description + '</div>';
|
1035
|
+
}
|
1036
|
+
html += ''
|
1037
|
+
+ '</div>'
|
1038
|
+
;
|
1039
|
+
html += '</a>';
|
1040
|
+
});
|
1041
|
+
|
1042
|
+
if(response.action) {
|
1043
|
+
html += ''
|
1044
|
+
+ '<a href="' + response.action.url + '" class="action">'
|
1045
|
+
+ response.action.text
|
1046
|
+
+ '</a>';
|
1047
|
+
}
|
1048
|
+
return html;
|
1049
|
+
}
|
1050
|
+
return false;
|
1051
|
+
}
|
1052
|
+
}
|
1053
|
+
};
|
1054
|
+
|
1055
|
+
})( jQuery, window , document );
|