aleph_analytics 0.0.0.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +0 -0
- data/Gemfile +70 -0
- data/Gemfile.lock +489 -0
- data/LICENSE +21 -0
- data/Procfile +2 -0
- data/README.md +1 -0
- data/ROADMAP.md +7 -0
- data/Rakefile +9 -0
- data/app/assets/fonts/octicons-local.ttf +0 -0
- data/app/assets/fonts/octicons.eot +0 -0
- data/app/assets/fonts/octicons.svg +183 -0
- data/app/assets/fonts/octicons.ttf +0 -0
- data/app/assets/fonts/octicons.woff +0 -0
- data/app/assets/javascripts/angular/aleph.js.es6 +90 -0
- data/app/assets/javascripts/angular/config/schema_completer_config.js.es6 +71 -0
- data/app/assets/javascripts/angular/controllers/alerts/alert_index_controller.js.es6 +16 -0
- data/app/assets/javascripts/angular/controllers/alerts/alert_show_controller.js.es6 +99 -0
- data/app/assets/javascripts/angular/controllers/controllers.js.es6 +65 -0
- data/app/assets/javascripts/angular/controllers/query/query_index_controller.js.es6 +80 -0
- data/app/assets/javascripts/angular/controllers/query/query_repl_controller.js.es6 +147 -0
- data/app/assets/javascripts/angular/controllers/query/query_show_controller.js.es6 +43 -0
- data/app/assets/javascripts/angular/controllers/schema/schema_index_controller.js.es6 +61 -0
- data/app/assets/javascripts/angular/controllers/snippet/snippet_index_controller.js.es6 +80 -0
- data/app/assets/javascripts/angular/directives/directives.js.es6 +30 -0
- data/app/assets/javascripts/angular/directives/query/query_details_directive.js.es6 +87 -0
- data/app/assets/javascripts/angular/directives/query/query_version_sidebar_directive.js.es6 +65 -0
- data/app/assets/javascripts/angular/directives/result/result_directive.js.es6 +59 -0
- data/app/assets/javascripts/angular/directives/result/results_directive.js.es6 +30 -0
- data/app/assets/javascripts/angular/directives/visualization_directive.js.es6 +101 -0
- data/app/assets/javascripts/angular/filters/filters.js.es6 +27 -0
- data/app/assets/javascripts/angular/services/alert/alert.js.es6 +51 -0
- data/app/assets/javascripts/angular/services/alert/alert_resource.js.es6 +10 -0
- data/app/assets/javascripts/angular/services/lib/ace_completers.js.es6 +29 -0
- data/app/assets/javascripts/angular/services/lib/ace_sql_parse.js.es6 +156 -0
- data/app/assets/javascripts/angular/services/lib/action_handler.js.es6 +73 -0
- data/app/assets/javascripts/angular/services/lib/alert_flash.js.es6 +30 -0
- data/app/assets/javascripts/angular/services/lib/default_ace_configurator_service.js.es6 +74 -0
- data/app/assets/javascripts/angular/services/lib/github_url_service.js.es6 +53 -0
- data/app/assets/javascripts/angular/services/lib/keyword_completer.js.es6 +36 -0
- data/app/assets/javascripts/angular/services/lib/local_resource.js.es6 +20 -0
- data/app/assets/javascripts/angular/services/lib/lock_service.js.es6 +48 -0
- data/app/assets/javascripts/angular/services/lib/locking_poll_service.js.es6 +42 -0
- data/app/assets/javascripts/angular/services/lib/matcher_runner.js.es6 +65 -0
- data/app/assets/javascripts/angular/services/lib/navigation_guard.js.es6 +45 -0
- data/app/assets/javascripts/angular/services/lib/open_repl_service.js.es6 +56 -0
- data/app/assets/javascripts/angular/services/lib/page_title_manager.js.es6 +38 -0
- data/app/assets/javascripts/angular/services/lib/pagination.js.es6 +114 -0
- data/app/assets/javascripts/angular/services/lib/pagination_components.js.es6 +91 -0
- data/app/assets/javascripts/angular/services/lib/parameter_methods.js.es6 +35 -0
- data/app/assets/javascripts/angular/services/lib/role_model.js.es6 +21 -0
- data/app/assets/javascripts/angular/services/lib/schema_completer.js.es6 +56 -0
- data/app/assets/javascripts/angular/services/lib/selection_tag_input.js.es6 +42 -0
- data/app/assets/javascripts/angular/services/lib/server_configurations.js.es6 +15 -0
- data/app/assets/javascripts/angular/services/lib/spinner_state.js.es6 +45 -0
- data/app/assets/javascripts/angular/services/lib/tag_resource.js.es6 +14 -0
- data/app/assets/javascripts/angular/services/model/collection_dirty_awareness.js.es6 +33 -0
- data/app/assets/javascripts/angular/services/model/collection_model_base.js.es6 +75 -0
- data/app/assets/javascripts/angular/services/model/dirty_aware_collection_model.js.es6 +31 -0
- data/app/assets/javascripts/angular/services/model/dirty_aware_model.js.es6 +50 -0
- data/app/assets/javascripts/angular/services/model/model_base.js.es6 +80 -0
- data/app/assets/javascripts/angular/services/model/model_state.js.es6 +51 -0
- data/app/assets/javascripts/angular/services/model/models.js.es6 +15 -0
- data/app/assets/javascripts/angular/services/model/unpersisted_model.js.es6 +20 -0
- data/app/assets/javascripts/angular/services/model_generation/model_factory.js.es6 +28 -0
- data/app/assets/javascripts/angular/services/model_generation/model_generation.js.es6 +13 -0
- data/app/assets/javascripts/angular/services/model_generation/model_manager.js.es6 +86 -0
- data/app/assets/javascripts/angular/services/model_generation/resource_factory.js.es6 +38 -0
- data/app/assets/javascripts/angular/services/model_generation/standard_collection_model.js.es6 +25 -0
- data/app/assets/javascripts/angular/services/model_generation/standard_model.js.es6 +38 -0
- data/app/assets/javascripts/angular/services/query/query.js.es6 +55 -0
- data/app/assets/javascripts/angular/services/query/query_handler.js.es6 +40 -0
- data/app/assets/javascripts/angular/services/query/query_loader.js.es6 +54 -0
- data/app/assets/javascripts/angular/services/query/query_request_transformers.js.es6 +26 -0
- data/app/assets/javascripts/angular/services/query/query_resource.js.es6 +21 -0
- data/app/assets/javascripts/angular/services/query/query_tab.js.es6 +63 -0
- data/app/assets/javascripts/angular/services/query/query_versions.js.es6 +21 -0
- data/app/assets/javascripts/angular/services/result/result.js.es6 +26 -0
- data/app/assets/javascripts/angular/services/result/result_poller.js.es6 +30 -0
- data/app/assets/javascripts/angular/services/result/result_runner.js.es6 +48 -0
- data/app/assets/javascripts/angular/services/result/results.js.es6 +10 -0
- data/app/assets/javascripts/angular/services/schema/schema_column.js.es6 +93 -0
- data/app/assets/javascripts/angular/services/schema/schema_column_resource.js.es6 +12 -0
- data/app/assets/javascripts/angular/services/schema/schema_columns.js.es6 +57 -0
- data/app/assets/javascripts/angular/services/schema/schema_comment_resource.js.es6 +12 -0
- data/app/assets/javascripts/angular/services/services.js.es6 +140 -0
- data/app/assets/javascripts/angular/services/snippet/ace_snippet_manager.js.es6 +44 -0
- data/app/assets/javascripts/angular/services/visualization/source_renderer.js.es6 +70 -0
- data/app/assets/javascripts/angular/services/visualization/visualization.js.es6 +47 -0
- data/app/assets/javascripts/angular/services/visualization/visualization_service.js.es6 +67 -0
- data/app/assets/javascripts/angular/services/visualization/visualizations.js.es6 +11 -0
- data/app/assets/javascripts/application.js +22 -0
- data/app/assets/javascripts/lib/key_binding.js +24 -0
- data/app/assets/javascripts/lib/serialized_storage.js +11 -0
- data/app/assets/javascripts/lib/underscore_contrib/array_builders.js +190 -0
- data/app/assets/javascripts/lib/underscore_contrib/function_predicates.js +95 -0
- data/app/assets/javascripts/lib/underscore_contrib/object_builders.js +111 -0
- data/app/assets/javascripts/lib/underscore_contrib/object_selectors.js +112 -0
- data/app/assets/javascripts/lib/underscore_contrib/util_existential.js +15 -0
- data/app/assets/javascripts/lib/utils.js +29 -0
- data/app/assets/stylesheets/alert_bar.css.sass +13 -0
- data/app/assets/stylesheets/alerts.css.sass +66 -0
- data/app/assets/stylesheets/application.css.sass +35 -0
- data/app/assets/stylesheets/comments.css.sass +7 -0
- data/app/assets/stylesheets/index_components.css.sass +105 -0
- data/app/assets/stylesheets/queries.css.sass +110 -0
- data/app/assets/stylesheets/repl.css.sass +59 -0
- data/app/assets/stylesheets/results.css.sass +25 -0
- data/app/assets/stylesheets/schemas.css.sass +56 -0
- data/app/assets/stylesheets/sessions.css.sass +9 -0
- data/app/assets/stylesheets/shared.css.sass +157 -0
- data/app/assets/stylesheets/sidebar.css.sass +85 -0
- data/app/assets/stylesheets/snippets.css.sass +15 -0
- data/app/assets/stylesheets/sort_bar.css.sass +10 -0
- data/app/assets/stylesheets/spinners.css.sass +67 -0
- data/app/assets/stylesheets/summary.css.sass +16 -0
- data/app/assets/stylesheets/variables.css.sass +110 -0
- data/app/assets/stylesheets/visualizations.css.sass +15 -0
- data/app/controllers/alerts_controller.rb +72 -0
- data/app/controllers/application_controller.rb +38 -0
- data/app/controllers/columns_controller.rb +21 -0
- data/app/controllers/queries_controller.rb +85 -0
- data/app/controllers/query_versions_controller.rb +38 -0
- data/app/controllers/result_csvs_controller.rb +29 -0
- data/app/controllers/results_controller.rb +53 -0
- data/app/controllers/roles_controller.rb +9 -0
- data/app/controllers/schema_comments_controller.rb +47 -0
- data/app/controllers/snippets_controller.rb +67 -0
- data/app/controllers/tags_controller.rb +19 -0
- data/app/controllers/visualizations_controller.rb +61 -0
- data/app/mailers/alert_mailer.rb +8 -0
- data/app/models/ability.rb +31 -0
- data/app/models/alert.rb +139 -0
- data/app/models/alert_execution.rb +25 -0
- data/app/models/query.rb +85 -0
- data/app/models/query_execution.rb +39 -0
- data/app/models/query_role.rb +3 -0
- data/app/models/query_version.rb +61 -0
- data/app/models/result.rb +67 -0
- data/app/models/schema_comment.rb +3 -0
- data/app/models/snippet.rb +3 -0
- data/app/models/user.rb +19 -0
- data/app/models/visualization.rb +7 -0
- data/app/serializers/alert_serializer.rb +10 -0
- data/app/serializers/query_index_serializer.rb +7 -0
- data/app/serializers/query_serializer.rb +8 -0
- data/app/serializers/query_version_serializer.rb +3 -0
- data/app/serializers/result_serializer.rb +3 -0
- data/app/views/alert_mailer/alert_failing_email.html.haml +17 -0
- data/app/views/alerts/_index.html.haml +10 -0
- data/app/views/alerts/_index_item.html.haml +25 -0
- data/app/views/alerts/_index_sidebar.html.haml +20 -0
- data/app/views/alerts/_index_sort_bar.html.haml +22 -0
- data/app/views/alerts/_show.html.haml +90 -0
- data/app/views/application/_rollbar.html.erb +9 -0
- data/app/views/application/index.html.haml +1 -0
- data/app/views/application/unauthorized.html.haml +5 -0
- data/app/views/application/unauthorized.json +3 -0
- data/app/views/devise/sessions/new.html.haml +22 -0
- data/app/views/layouts/application.html.haml +78 -0
- data/app/views/queries/_alert.html.haml +6 -0
- data/app/views/queries/_comments.html.haml +5 -0
- data/app/views/queries/_index.html.haml +15 -0
- data/app/views/queries/_index_item.html.haml +37 -0
- data/app/views/queries/_index_sidebar.html.haml +58 -0
- data/app/views/queries/_index_sort_bar.html.haml +29 -0
- data/app/views/queries/_query_details.html.haml +81 -0
- data/app/views/queries/_query_version_sidebar.html.haml +46 -0
- data/app/views/queries/_repl.html.haml +79 -0
- data/app/views/queries/_results.html.haml +29 -0
- data/app/views/queries/_role_template.html.haml +3 -0
- data/app/views/queries/_show.html.haml +28 -0
- data/app/views/queries/_tag_template.html.haml +3 -0
- data/app/views/results/_show.html.haml +45 -0
- data/app/views/schemas/_index.html.haml +47 -0
- data/app/views/snippets/_index.html.haml +30 -0
- data/app/views/snippets/_index_item.html.haml +20 -0
- data/app/views/visualizations/_show.html.haml +83 -0
- data/bin/aleph +71 -0
- data/bin/bundle +3 -0
- data/bin/executables/bundle_runner.rb +12 -0
- data/bin/executables/clock.rb +7 -0
- data/bin/executables/deps.rb +10 -0
- data/bin/executables/import_env_variables.rb +17 -0
- data/bin/executables/init_db.rb +7 -0
- data/bin/executables/lib/config_generator.rb +51 -0
- data/bin/executables/lib/env_writer.rb +25 -0
- data/bin/executables/lib/import_env_file.rb +19 -0
- data/bin/executables/lib/seeder.rb +14 -0
- data/bin/executables/lib/utils.rb +30 -0
- data/bin/executables/playground.rb +130 -0
- data/bin/executables/seed_playground_db.rb +9 -0
- data/bin/executables/update_db.rb +7 -0
- data/bin/executables/web_server.rb +12 -0
- data/bin/executables/worker.rb +7 -0
- data/bin/rails +4 -0
- data/bin/rake +4 -0
- data/config/application.rb +59 -0
- data/config/attribute-map.yml +4 -0
- data/config/boot.rb +4 -0
- data/config/database.yml +40 -0
- data/config/environment.rb +5 -0
- data/config/environments/development.rb +37 -0
- data/config/environments/playground.rb +55 -0
- data/config/environments/production.rb +68 -0
- data/config/environments/staging.rb +75 -0
- data/config/environments/test.rb +46 -0
- data/config/initializers/01_internalize_configurations.rb +70 -0
- data/config/initializers/action_controller_renderers.rb +15 -0
- data/config/initializers/active_model_serializer.rb +7 -0
- data/config/initializers/assets.rb +8 -0
- data/config/initializers/backtrace_silencers.rb +7 -0
- data/config/initializers/cookies_serializer.rb +3 -0
- data/config/initializers/default_enviorment_variables.rb +8 -0
- data/config/initializers/devise.rb +297 -0
- data/config/initializers/filter_parameter_logging.rb +4 -0
- data/config/initializers/haml.rb +1 -0
- data/config/initializers/inflections.rb +16 -0
- data/config/initializers/mime_types.rb +4 -0
- data/config/initializers/net_http.rb +1 -0
- data/config/initializers/pester.rb +15 -0
- data/config/initializers/rails_admin.rb +27 -0
- data/config/initializers/redis.rb +14 -0
- data/config/initializers/rollbar.rb +45 -0
- data/config/initializers/session_store.rb +3 -0
- data/config/initializers/sql_logging_patch.rb +7 -0
- data/config/initializers/to_bool.rb +29 -0
- data/config/initializers/wrap_parameters.rb +14 -0
- data/config/locales/devise.en.yml +62 -0
- data/config/locales/en.yml +23 -0
- data/config/puma.rb +10 -0
- data/config/resque-pool.yml +15 -0
- data/config/resque.yml +10 -0
- data/config/routes.rb +33 -0
- data/config/secrets.yml +26 -0
- data/config.ru +4 -0
- data/db/migrate/20140710204753_database_begin.rb +150 -0
- data/lib/aleph_log_formatter.rb +5 -0
- data/lib/authentication.rb +17 -0
- data/lib/aws_s3.rb +7 -0
- data/lib/clock.rb +7 -0
- data/lib/compilable_parameter.rb +50 -0
- data/lib/count_publisher.rb +26 -0
- data/lib/csv_helper/aws.rb +30 -0
- data/lib/csv_helper/base.rb +20 -0
- data/lib/csv_helper/local.rb +18 -0
- data/lib/csv_serializer.rb +23 -0
- data/lib/csv_service.rb +12 -0
- data/lib/github/blob.rb +23 -0
- data/lib/github/commit.rb +37 -0
- data/lib/github/pusher.rb +94 -0
- data/lib/github/refs.rb +39 -0
- data/lib/github/tree.rb +29 -0
- data/lib/github.rb +64 -0
- data/lib/interaction/query_creation.rb +27 -0
- data/lib/interaction/query_interaction.rb +35 -0
- data/lib/interaction/query_update.rb +62 -0
- data/lib/interaction/result_creation.rb +48 -0
- data/lib/pagination_search/attribute_set.rb +61 -0
- data/lib/pagination_search/base_relation.rb +80 -0
- data/lib/pagination_search/hash_paginate.rb +74 -0
- data/lib/pagination_search/paginated_records.rb +16 -0
- data/lib/pagination_search/pagination.rb +12 -0
- data/lib/pagination_search/search_conditions.rb +59 -0
- data/lib/query_version_support.rb +14 -0
- data/lib/redis_result_row_count.rb +26 -0
- data/lib/redshift_connection_pool.rb +8 -0
- data/lib/redshift_pg/connection.rb +44 -0
- data/lib/redshift_pg/redshift_pg.rb +15 -0
- data/lib/result_csv_generator.rb +40 -0
- data/lib/role.rb +40 -0
- data/lib/sample_skimmer.rb +30 -0
- data/lib/schema_comment_matcher.rb +27 -0
- data/lib/schemas/descriptor.rb +85 -0
- data/lib/schemas/descriptors.rb +10 -0
- data/lib/schemas/paginate.rb +21 -0
- data/lib/schemas/redis_store.rb +22 -0
- data/lib/simple_cache.rb +13 -0
- data/lib/sql_compiler.rb +33 -0
- data/lib/summarizer.rb +18 -0
- data/lib/tasks/karma.rake +32 -0
- data/lib/tasks/resque_setup.rake +18 -0
- data/playground_data/1.csv +13 -0
- data/playground_data/aleph.playground.sqlite3 +0 -0
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +25 -0
- data/public/aleph.png +0 -0
- data/public/assets/.sprockets-manifest-24b5998edb20c5b4d6edf39d44cd3ff7.json +1 -0
- data/public/assets/FontAwesome-9ccfa32dd4cd1b8e83f68899d85bd5e6.otf +0 -0
- data/public/assets/ZeroClipboard-8b5c117b88fe37e32fd34a70fdf60026.swf +0 -0
- data/public/assets/angular/aleph.js-19b4df67407de5dab249abfc391c0eaf.es6 +90 -0
- data/public/assets/angular/config/schema_completer_config.js-1b696920b5e04f75620630d75117b201.es6 +71 -0
- data/public/assets/angular/controllers/alerts/alert_index_controller.js-4344581b1e9b456c3f991f96bb4d403d.es6 +16 -0
- data/public/assets/angular/controllers/alerts/alert_show_controller.js-a984dc82fbcac380cdc8682bf8986933.es6 +99 -0
- data/public/assets/angular/controllers/controllers.js-7431ae468ea2f0d392661448a61cfdf3.es6 +65 -0
- data/public/assets/angular/controllers/query/query_index_controller.js-828eadeee6a971b11b5c07f65f0c6def.es6 +80 -0
- data/public/assets/angular/controllers/query/query_repl_controller.js-3c4bac22e41766e2e83e720d53acade3.es6 +147 -0
- data/public/assets/angular/controllers/query/query_show_controller.js-020c83fd94ece7d55bd94b9981a40083.es6 +43 -0
- data/public/assets/angular/controllers/schema/schema_index_controller.js-d0d790d168b49caefa4b8f7993c928f1.es6 +61 -0
- data/public/assets/angular/controllers/snippet/snippet_index_controller.js-9191ee2e37d16d5807b8a7f45530a6c2.es6 +80 -0
- data/public/assets/angular/directives/directives.js-44fda752585bddc5d026feaab8b14108.es6 +30 -0
- data/public/assets/angular/directives/query/query_details_directive.js-2dd979e2463826558f166d9dc9e2c8a9.es6 +87 -0
- data/public/assets/angular/directives/query/query_version_sidebar_directive.js-b19ba8a9bf4e66c5740e9b9f9495cee1.es6 +65 -0
- data/public/assets/angular/directives/result/result_directive.js-76c151e9277e35578f92b076c2fa5b06.es6 +59 -0
- data/public/assets/angular/directives/result/results_directive.js-fcbf9750790823a11ca313e630bd2b0f.es6 +30 -0
- data/public/assets/angular/directives/visualization_directive.js-82cb45a52eba62deb283a3699add1b33.es6 +101 -0
- data/public/assets/angular/filters/filters.js-48cdb16fc89337e861c9f18ad57fd9bf.es6 +27 -0
- data/public/assets/angular/services/alert/alert.js-a76ea96e948de324fcc00f3ef3ecae4e.es6 +51 -0
- data/public/assets/angular/services/alert/alert_resource.js-ac68ea99936eb213c0fb37d4fbb1511a.es6 +10 -0
- data/public/assets/angular/services/lib/ace_completers.js-5353182bc538210dad12865ad6a060fd.es6 +29 -0
- data/public/assets/angular/services/lib/ace_sql_parse.js-4114a8ad4fe4dbf4f72c0ab7fca22e83.es6 +156 -0
- data/public/assets/angular/services/lib/action_handler.js-85a8f75f507efcf2fe950fa7717b6976.es6 +73 -0
- data/public/assets/angular/services/lib/alert_flash.js-7a4fe7ef5510a224677a12ecf2fe973b.es6 +30 -0
- data/public/assets/angular/services/lib/default_ace_configurator_service.js-9b83d6b53495dafe10bfed5074c3ec01.es6 +74 -0
- data/public/assets/angular/services/lib/github_url_service.js-719084a625f60d20c24097f00813b481.es6 +53 -0
- data/public/assets/angular/services/lib/keyword_completer.js-560b51694457619401c72431dd7b647e.es6 +36 -0
- data/public/assets/angular/services/lib/local_resource.js-9b57357ed203c783708e48154721242a.es6 +20 -0
- data/public/assets/angular/services/lib/lock_service.js-32eb33fda9c27fb5643b25c63099b52c.es6 +48 -0
- data/public/assets/angular/services/lib/locking_poll_service.js-d0271cc07d20ec73291e7175e1714d42.es6 +42 -0
- data/public/assets/angular/services/lib/matcher_runner.js-bd63f4c6ad965716c5b793d3c4602563.es6 +65 -0
- data/public/assets/angular/services/lib/navigation_guard.js-5c7497900f99319f3ef76b83662c20cd.es6 +45 -0
- data/public/assets/angular/services/lib/open_repl_service.js-2332490470ea58f3e5ce7f6fe5dd2659.es6 +56 -0
- data/public/assets/angular/services/lib/page_title_manager.js-227f9ddb49d23bfa934bf216ef96ccbd.es6 +38 -0
- data/public/assets/angular/services/lib/pagination.js-baa9a496d01b87f90c588c51864d1533.es6 +114 -0
- data/public/assets/angular/services/lib/pagination_components.js-4fcc03120d1299713347b487f1e8fd44.es6 +91 -0
- data/public/assets/angular/services/lib/parameter_methods.js-16ecb25ffb24d5870dfc17f9f408fa5b.es6 +35 -0
- data/public/assets/angular/services/lib/role_model.js-3d5072f279676294e7d17cbb4bb3adb5.es6 +21 -0
- data/public/assets/angular/services/lib/schema_completer.js-d04d49642967fd9f8e2c95e0df81f2ae.es6 +56 -0
- data/public/assets/angular/services/lib/selection_tag_input.js-86cc6d564c108d722951b6fcd2b51221.es6 +42 -0
- data/public/assets/angular/services/lib/server_configurations.js-fd8c16a3d02926e7597240566808c141.es6 +15 -0
- data/public/assets/angular/services/lib/spinner_state.js-315bb62df18f9370a89f8b865eb1766a.es6 +45 -0
- data/public/assets/angular/services/lib/tag_resource.js-8849bbdd579bd38b36a362bed926c2f2.es6 +14 -0
- data/public/assets/angular/services/model/collection_dirty_awareness.js-8a78450bd8b565fb03633ab735893508.es6 +33 -0
- data/public/assets/angular/services/model/collection_model_base.js-8092335acde425d28718c1a9fc677d39.es6 +75 -0
- data/public/assets/angular/services/model/dirty_aware_collection_model.js-6f4d2b409a033f5ffc6bd5a747df2046.es6 +31 -0
- data/public/assets/angular/services/model/dirty_aware_model.js-ec1a086f3ec459827dbd5381bd970975.es6 +50 -0
- data/public/assets/angular/services/model/model_base.js-9fd807dfdf4f26afe60d8e282ca08e6c.es6 +80 -0
- data/public/assets/angular/services/model/model_state.js-3e96e381ea7a9eff857081ffbf3a8bab.es6 +51 -0
- data/public/assets/angular/services/model/models.js-6798762a6e263be75c7c4e9f8a19da66.es6 +15 -0
- data/public/assets/angular/services/model/unpersisted_model.js-49597959c989e68c713fd826743bb7b5.es6 +20 -0
- data/public/assets/angular/services/model_generation/model_factory.js-0bccc6a2e9b4738c67230fc68d9780ae.es6 +28 -0
- data/public/assets/angular/services/model_generation/model_generation.js-f08c6eff199b5ad02b2e2bdf866d69ff.es6 +13 -0
- data/public/assets/angular/services/model_generation/model_manager.js-b05d8f00bc4499c50098ae31013de88c.es6 +86 -0
- data/public/assets/angular/services/model_generation/resource_factory.js-e8ce2f4be9383d885dbb965c8e425bab.es6 +38 -0
- data/public/assets/angular/services/model_generation/standard_collection_model.js-19c44dc3a937a85d825c5a2f020a6769.es6 +25 -0
- data/public/assets/angular/services/model_generation/standard_model.js-74439b041eebfc7e0fad454cf6e32192.es6 +38 -0
- data/public/assets/angular/services/query/query.js-7b6228d0a5c1a6ea76242f4aa49aafd0.es6 +55 -0
- data/public/assets/angular/services/query/query_handler.js-d8cb3c66bcf6d16cd13bb5bcd0921496.es6 +40 -0
- data/public/assets/angular/services/query/query_loader.js-1fbc8b859778d46b73b9adc300984851.es6 +54 -0
- data/public/assets/angular/services/query/query_request_transformers.js-522901477c7848324cd5c014005a85c8.es6 +26 -0
- data/public/assets/angular/services/query/query_resource.js-b809fbfd1c379619fa07ef8e52509810.es6 +21 -0
- data/public/assets/angular/services/query/query_tab.js-fe34f5e6d0c813d2d92838be14cd6783.es6 +63 -0
- data/public/assets/angular/services/query/query_versions.js-aa3aec9021354a7394797101ea500887.es6 +21 -0
- data/public/assets/angular/services/result/result.js-be8178c80c767a651a97537b2b0149d5.es6 +26 -0
- data/public/assets/angular/services/result/result_poller.js-b15617d53f164cbe5636bb5573a70504.es6 +30 -0
- data/public/assets/angular/services/result/result_runner.js-ce2c5b3121c8e67903c302e600749c14.es6 +48 -0
- data/public/assets/angular/services/result/results.js-53088d6088f6b4783b274a64322d361c.es6 +10 -0
- data/public/assets/angular/services/schema/schema_column.js-3908faecc9874fa08484d7490701a7d4.es6 +93 -0
- data/public/assets/angular/services/schema/schema_column_resource.js-a6982ce9698b104192c4e455300df455.es6 +12 -0
- data/public/assets/angular/services/schema/schema_columns.js-c63a16e2e0778a885bd27c7cf2ed7d88.es6 +57 -0
- data/public/assets/angular/services/schema/schema_comment_resource.js-20254ea1a4e7b4850c9f21f9619130ce.es6 +12 -0
- data/public/assets/angular/services/services.js-6225c5ea24a9082506d1932d7884b53b.es6 +140 -0
- data/public/assets/angular/services/snippet/ace_snippet_manager.js-dbbba5d8ad5040042b469b294c4d7228.es6 +44 -0
- data/public/assets/angular/services/visualization/source_renderer.js-d7274c88b067a35f2e91bf7f39be7d47.es6 +70 -0
- data/public/assets/angular/services/visualization/visualization.js-23e36c87721aa263dd3f99769027cabb.es6 +47 -0
- data/public/assets/angular/services/visualization/visualization_service.js-25de86b5ceef60cf2b1dfde5fb0e9216.es6 +67 -0
- data/public/assets/angular/services/visualization/visualizations.js-1227bc3dcd67e85c8050d82360a26d53.es6 +11 -0
- data/public/assets/application-9153e0bf570016651e5eb8c67e037d3a.css +10 -0
- data/public/assets/application-ef5c2ae95804ac9785f190a9aea7ad8b.js +149 -0
- data/public/assets/bootstrap/glyphicons-halflings-regular-448c34a56d699c29117adc64c43affeb.woff2 +0 -0
- data/public/assets/bootstrap/glyphicons-halflings-regular-89889688147bd7575d6327160d64e760.svg +288 -0
- data/public/assets/bootstrap/glyphicons-halflings-regular-e18bbf611f2a2e43afc071aa2f4e1512.ttf +0 -0
- data/public/assets/bootstrap/glyphicons-halflings-regular-f4769f9bdb7466be65088239c12046d1.eot +0 -0
- data/public/assets/bootstrap/glyphicons-halflings-regular-fa2772327f55d8198301fdb8bcfc8158.woff +0 -0
- data/public/assets/fontawesome-webfont-4f0022f25672c7f501c339cbf98d9117.ttf +0 -0
- data/public/assets/fontawesome-webfont-776d58f453c8fe5d6a89e9c31ee223ff.svg +504 -0
- data/public/assets/fontawesome-webfont-90186830c9c50a0fed932494581761d9.eot +0 -0
- data/public/assets/fontawesome-webfont-926c93d201fe51c8f351e858468980c3.woff2 +0 -0
- data/public/assets/fontawesome-webfont-fdf491ce5ff5b2da02708cd0e9864719.woff +0 -0
- data/public/assets/glyphicons-halflings-regular-0a5c48c69a25a93e37ed62db813387fa.svg +229 -0
- data/public/assets/glyphicons-halflings-regular-47da44498fc073d9fff9ab0cdb0bef8e.ttf +0 -0
- data/public/assets/glyphicons-halflings-regular-5eae1f7217b606d3580dd70ac840fea1.woff +0 -0
- data/public/assets/glyphicons-halflings-regular-aa16cd35628e6dddf56e766c9aa4ae63.eot +0 -0
- data/public/assets/jquery-ui/ui-bg_flat_0_aaaaaa_40x100-2a44fbdb7360c60122bcf6dcef0387d8.png +0 -0
- data/public/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100-8692e6efddf882acbff144c38ea7dfdf.png +0 -0
- data/public/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400-f8f4558e0b92ff2cd6136781533902ec.png +0 -0
- data/public/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400-e5a8f32e28fd5c27bf0fed33c8a8b9b5.png +0 -0
- data/public/assets/jquery-ui/ui-bg_glass_75_dadada_1x400-c12c6510dad3ebfa64c8a30e959a2469.png +0 -0
- data/public/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400-f4254356c2a8c9a383205ef2c4de22c4.png +0 -0
- data/public/assets/jquery-ui/ui-bg_glass_95_fef1ec_1x400-5a3be2d8fff8324d59aec3df7b0a0c83.png +0 -0
- data/public/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-72c593d16e998952cd8d798fee33c6f3.png +0 -0
- data/public/assets/jquery-ui/ui-icons_222222_256x240-9129e086dc488d8bcaf808510bc646ba.png +0 -0
- data/public/assets/jquery-ui/ui-icons_2e83ff_256x240-25162bf857a8eb83ea932a58436e1049.png +0 -0
- data/public/assets/jquery-ui/ui-icons_454545_256x240-771099482bdc1571ece41073b1752596.png +0 -0
- data/public/assets/jquery-ui/ui-icons_888888_256x240-faf6f5dc44e713178784c1fb053990aa.png +0 -0
- data/public/assets/jquery-ui/ui-icons_cd0a0a_256x240-5d8808d43cefca6f6781a5316d176632.png +0 -0
- data/public/assets/octicons-0a82c1edade24862533bbe96ebeaea47.eot +0 -0
- data/public/assets/octicons-103abd6cc0199e2519ef6f1aac4bb0e0.ttf +0 -0
- data/public/assets/octicons-adc17600a2b7a648eba306c2e1426b85.svg +183 -0
- data/public/assets/octicons-be82065223a03ba577de159d97a5d63d.woff +0 -0
- data/public/assets/octicons-local-72e4167c13648cb89e9e96cdd212cb82.ttf +0 -0
- data/public/assets/rails_admin/aristo/images/bg_fallback-a7547e71656b1e538b93ddb49dfc98d3.png +0 -0
- data/public/assets/rails_admin/aristo/images/icon_sprite-415c1eec8a2d31d217d4d1d5a1d44345.png +0 -0
- data/public/assets/rails_admin/aristo/images/progress_bar-449b2fab5cf4122c17a416f6e26569fe.gif +0 -0
- data/public/assets/rails_admin/aristo/images/slider_handles-ba57b6efb64ca6263f77ce2624ad71ee.png +0 -0
- data/public/assets/rails_admin/aristo/images/ui-icons_222222_256x240-a2c05c5e967f9cf4dae51c1243b3b93c.png +0 -0
- data/public/assets/rails_admin/aristo/images/ui-icons_454545_256x240-a7a7eff72c4f562524dc472824aab656.png +0 -0
- data/public/assets/rails_admin/base/README-f7dd742c2237cb1959438b94c7503a41.txt +2 -0
- data/public/assets/rails_admin/bootstrap/glyphicons-halflings-d4fef5262f29f592560fb59918a1c052.png +0 -0
- data/public/assets/rails_admin/bootstrap/glyphicons-halflings-white-9bbc6e9602998a385c2ea13df56470fd.png +0 -0
- data/public/assets/rails_admin/bullet_black-06d345566cf9e0f97a23bb07ab3d50d9.png +0 -0
- data/public/assets/rails_admin/bullet_white-469b537fa21b7143f719578f7426825d.png +0 -0
- data/public/assets/rails_admin/calendar-697f5a44753da70028cfd04b98ac45d2.png +0 -0
- data/public/assets/rails_admin/clock-0cc82b549af3df4f730a02335f54b0df.png +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_background-7aaa2a726200c0ac3ba43c01f073a93d.png +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_hex-cbc06f4015cbb276a3dd966e1be37c25.png +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_hsb_b-2315aba3c2fbbcfcc22869b21836c31d.png +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_hsb_h-3120023551e3601467cf52e1c8aaae9e.png +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_hsb_s-77a77892bdef0906fdfc3426d06108fd.png +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_indic-f485d07540a89502e36dc1a55cec05d0.gif +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_overlay-4b2dd6f78c4aac5cc932e845698b2db5.png +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_rgb_b-2315aba3c2fbbcfcc22869b21836c31d.png +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_rgb_g-475afe3f4f69e59ff30a445384a8d961.png +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_rgb_r-02de28945293fe2fd026c9be3b89955a.png +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_select-cdf55197d05f18c552dc35bdb858fa2a.gif +0 -0
- data/public/assets/rails_admin/colorpicker/colorpicker_submit-9912e5cf348e0be359ff9b1078fbb7da.png +0 -0
- data/public/assets/rails_admin/colorpicker/custom_background-a0ab8ff3e2b85b1f8ed5a4d86967471b.png +0 -0
- data/public/assets/rails_admin/colorpicker/custom_hex-065e780d7b89f7dda63a472caa7c2bdd.png +0 -0
- data/public/assets/rails_admin/colorpicker/custom_hsb_b-66f5963cf1a0a2680acbcac2bb77f40d.png +0 -0
- data/public/assets/rails_admin/colorpicker/custom_hsb_h-cd1f2e27122aeca17af416f328b758cd.png +0 -0
- data/public/assets/rails_admin/colorpicker/custom_hsb_s-ca6f3e4f0c1fc2cb110c788018369e07.png +0 -0
- data/public/assets/rails_admin/colorpicker/custom_indic-04660eb352eb259581a36a0fe8da2d4d.gif +0 -0
- data/public/assets/rails_admin/colorpicker/custom_rgb_b-64bc0c5110f84efe32e82c58d50660f6.png +0 -0
- data/public/assets/rails_admin/colorpicker/custom_rgb_g-33fe011475956750a457b1f93f1b9075.png +0 -0
- data/public/assets/rails_admin/colorpicker/custom_rgb_r-18f2ee37089d850c52b212d8a31aac92.png +0 -0
- data/public/assets/rails_admin/colorpicker/custom_submit-9d0a14eebb9ae04edfb8099827a42968.png +0 -0
- data/public/assets/rails_admin/colorpicker/select-76bd5c10f34de24b73ff4454735d3e18.png +0 -0
- data/public/assets/rails_admin/colorpicker/select2-d3fea9a451ac2c29bcd4a82b6e4f326a.png +0 -0
- data/public/assets/rails_admin/colorpicker/slider-db040ce7280fc74269e330a862e738e6.png +0 -0
- data/public/assets/rails_admin/jquery.colorpicker-7c36c2fac54a031f6e0dfe6ad137cfb1.js +1 -0
- data/public/assets/rails_admin/jquery.colorpicker-e402a30af31a4ba5957fec816dc9239c.css +1 -0
- data/public/assets/rails_admin/logo-9b479a57b493ee824767163101a5409f.png +0 -0
- data/public/assets/rails_admin/magnifier-4fcdfd820ff2e951458af3d1309ab20c.png +0 -0
- data/public/assets/rails_admin/multiselect/icon_sprite-415c1eec8a2d31d217d4d1d5a1d44345.png +0 -0
- data/public/assets/rails_admin/multiselect/ui-icon-circle-triangle-n-dark-32c1cfdd900379bf62658e475fb2ba38.png +0 -0
- data/public/assets/rails_admin/multiselect/ui-icon-circle-triangle-n-light-73160d919a189ba13bd4387e3623b7e9.png +0 -0
- data/public/assets/rails_admin/multiselect/ui-icon-circle-triangle-s-dark-c15e6bff59c80c5473236cf77870f31d.png +0 -0
- data/public/assets/rails_admin/multiselect/ui-icon-circle-triangle-s-light-fbf43811420f67d49d4dc64c7817f72c.png +0 -0
- data/public/assets/rails_admin/rails_admin-d25a684b9f690652469ceb212fbe7b95.js +328 -0
- data/public/assets/rails_admin/rails_admin-d85fb3c8bbff377491ed5af5239cf185.css +8 -0
- data/public/assets/resque_web/application-b29b34115c3ad5c539f26114fc91e584.css +4 -0
- data/public/assets/resque_web/application-d2bc6e68cf7c6215e804fe9e3f46f1d0.js +111 -0
- data/public/assets/resque_web/idle-53474088772d9917bd463b19efa32fc3.png +0 -0
- data/public/assets/resque_web/lifebuoy-0281230b31ba4078685f4df3e8169534.png +0 -0
- data/public/assets/resque_web/poll-af53f85832c41a9cde68b08cb09711f1.png +0 -0
- data/public/assets/resque_web/rails-9c0a079bdd7701d7e729bd956823d153.png +0 -0
- data/public/assets/resque_web/working-26a36c5119cbdcc64ebade2c5f8c389d.png +0 -0
- data/public/assets/twitter/bootstrap/glyphicons-halflings-2516339970d710819585f90773aebe0a.png +0 -0
- data/public/assets/twitter/bootstrap/glyphicons-halflings-white-9bbc6e9602998a385c2ea13df56470fd.png +0 -0
- data/public/bg_big.svg +2 -0
- data/public/bg_new.svg +2 -0
- data/public/favicon.ico +0 -0
- data/public/resources/keyword_config.json +51 -0
- data/public/resources/visualization/area.html +17 -0
- data/public/resources/visualization/area_step.html +17 -0
- data/public/resources/visualization/bar.html +17 -0
- data/public/resources/visualization/custom.html +6 -0
- data/public/resources/visualization/line.html +16 -0
- data/public/resources/visualization/presets.json +13 -0
- data/public/resources/visualization/scatter.html +17 -0
- data/public/resources/visualization/spline.html +17 -0
- data/public/resources/visualization/spline_area.html +17 -0
- data/public/resources/visualization/stacked_area.html +18 -0
- data/public/resources/visualization/stacked_bar.html +18 -0
- data/public/resources/visualization/stacked_spline_area.html +18 -0
- data/public/resources/visualization/template.json +12 -0
- data/public/robots.txt +2 -0
- data/vendor/assets/javascripts/ace/ace.js +18655 -0
- data/vendor/assets/javascripts/ace/ext-language_tools.js +1937 -0
- data/vendor/assets/javascripts/ace/mode-html.js +2794 -0
- data/vendor/assets/javascripts/ace/mode-pgsql.js +1503 -0
- data/vendor/assets/javascripts/ace/snippets/coffee.js +102 -0
- data/vendor/assets/javascripts/ace/snippets/css.js +974 -0
- data/vendor/assets/javascripts/ace/snippets/haml.js +27 -0
- data/vendor/assets/javascripts/ace/snippets/html.js +835 -0
- data/vendor/assets/javascripts/ace/snippets/html_elixir.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/html_ruby.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/javascript.js +202 -0
- data/vendor/assets/javascripts/ace/snippets/json.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/jsp.js +106 -0
- data/vendor/assets/javascripts/ace/snippets/jsx.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/less.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/mysql.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/pgsql.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/plain_text.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/rhtml.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/sass.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/scss.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/snippets.js +16 -0
- data/vendor/assets/javascripts/ace/snippets/sql.js +33 -0
- data/vendor/assets/javascripts/ace/snippets/sqlserver.js +76 -0
- data/vendor/assets/javascripts/ace/snippets/svg.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/text.js +7 -0
- data/vendor/assets/javascripts/ace/snippets/textile.js +37 -0
- data/vendor/assets/javascripts/ace/theme-monokai.js +105 -0
- data/vendor/assets/javascripts/angular-filter/angular-filter.js +2271 -0
- data/vendor/assets/javascripts/angular-hotkeys/hotkeys.js +1523 -0
- data/vendor/assets/javascripts/angular-selection-model/selection-model.js +563 -0
- data/vendor/assets/javascripts/angular-spinner/treasure-overlay-spinner.js +53 -0
- data/vendor/assets/javascripts/angular-ui-ace/ui-ace.js +298 -0
- data/vendor/assets/javascripts/angular-ui-bootstrap/ui-bootstrap-tpls-0.14.3.js +8503 -0
- data/vendor/assets/javascripts/d3/c3.min.js +5 -0
- data/vendor/assets/javascripts/d3/d3.v3.min.js +5 -0
- data/vendor/assets/javascripts/infinite-scroll/infinite-scroll.js +186 -0
- data/vendor/assets/javascripts/ng-clip/ngClip.js +84 -0
- data/vendor/assets/javascripts/ng-tags-input/ng-tags-input.min.js +1 -0
- data/vendor/assets/javascripts/pluralize/pluralize.js +453 -0
- data/vendor/assets/javascripts/underscore-js/underscore.js +1548 -0
- data/vendor/assets/stylesheets/angular-hotkeys/hotkeys.css +110 -0
- data/vendor/assets/stylesheets/angular-spinner/treasure-overlay-spinner.css +136 -0
- data/vendor/assets/stylesheets/c3/c3.min.css +1 -0
- data/vendor/assets/stylesheets/ng-tags-input/ng-tags-input.bootstrap.min.css +1 -0
- data/vendor/assets/stylesheets/ng-tags-input/ng-tags-input.min.css +1 -0
- data/vendor/assets/stylesheets/octicons/README.md +1 -0
- data/vendor/assets/stylesheets/octicons/sprockets-octicons.scss +217 -0
- metadata +600 -0
@@ -0,0 +1,1937 @@
|
|
1
|
+
define("ace/snippets",["require","exports","module","ace/lib/oop","ace/lib/event_emitter","ace/lib/lang","ace/range","ace/anchor","ace/keyboard/hash_handler","ace/tokenizer","ace/lib/dom","ace/editor"], function(require, exports, module) {
|
2
|
+
"use strict";
|
3
|
+
var oop = require("./lib/oop");
|
4
|
+
var EventEmitter = require("./lib/event_emitter").EventEmitter;
|
5
|
+
var lang = require("./lib/lang");
|
6
|
+
var Range = require("./range").Range;
|
7
|
+
var Anchor = require("./anchor").Anchor;
|
8
|
+
var HashHandler = require("./keyboard/hash_handler").HashHandler;
|
9
|
+
var Tokenizer = require("./tokenizer").Tokenizer;
|
10
|
+
var comparePoints = Range.comparePoints;
|
11
|
+
|
12
|
+
var SnippetManager = function() {
|
13
|
+
this.snippetMap = {};
|
14
|
+
this.snippetNameMap = {};
|
15
|
+
};
|
16
|
+
|
17
|
+
(function() {
|
18
|
+
oop.implement(this, EventEmitter);
|
19
|
+
|
20
|
+
this.getTokenizer = function() {
|
21
|
+
function TabstopToken(str, _, stack) {
|
22
|
+
str = str.substr(1);
|
23
|
+
if (/^\d+$/.test(str) && !stack.inFormatString)
|
24
|
+
return [{tabstopId: parseInt(str, 10)}];
|
25
|
+
return [{text: str}];
|
26
|
+
}
|
27
|
+
function escape(ch) {
|
28
|
+
return "(?:[^\\\\" + ch + "]|\\\\.)";
|
29
|
+
}
|
30
|
+
SnippetManager.$tokenizer = new Tokenizer({
|
31
|
+
start: [
|
32
|
+
{regex: /:/, onMatch: function(val, state, stack) {
|
33
|
+
if (stack.length && stack[0].expectIf) {
|
34
|
+
stack[0].expectIf = false;
|
35
|
+
stack[0].elseBranch = stack[0];
|
36
|
+
return [stack[0]];
|
37
|
+
}
|
38
|
+
return ":";
|
39
|
+
}},
|
40
|
+
{regex: /\\./, onMatch: function(val, state, stack) {
|
41
|
+
var ch = val[1];
|
42
|
+
if (ch == "}" && stack.length) {
|
43
|
+
val = ch;
|
44
|
+
}else if ("`$\\".indexOf(ch) != -1) {
|
45
|
+
val = ch;
|
46
|
+
} else if (stack.inFormatString) {
|
47
|
+
if (ch == "n")
|
48
|
+
val = "\n";
|
49
|
+
else if (ch == "t")
|
50
|
+
val = "\n";
|
51
|
+
else if ("ulULE".indexOf(ch) != -1) {
|
52
|
+
val = {changeCase: ch, local: ch > "a"};
|
53
|
+
}
|
54
|
+
}
|
55
|
+
|
56
|
+
return [val];
|
57
|
+
}},
|
58
|
+
{regex: /}/, onMatch: function(val, state, stack) {
|
59
|
+
return [stack.length ? stack.shift() : val];
|
60
|
+
}},
|
61
|
+
{regex: /\$(?:\d+|\w+)/, onMatch: TabstopToken},
|
62
|
+
{regex: /\$\{[\dA-Z_a-z]+/, onMatch: function(str, state, stack) {
|
63
|
+
var t = TabstopToken(str.substr(1), state, stack);
|
64
|
+
stack.unshift(t[0]);
|
65
|
+
return t;
|
66
|
+
}, next: "snippetVar"},
|
67
|
+
{regex: /\n/, token: "newline", merge: false}
|
68
|
+
],
|
69
|
+
snippetVar: [
|
70
|
+
{regex: "\\|" + escape("\\|") + "*\\|", onMatch: function(val, state, stack) {
|
71
|
+
stack[0].choices = val.slice(1, -1).split(",");
|
72
|
+
}, next: "start"},
|
73
|
+
{regex: "/(" + escape("/") + "+)/(?:(" + escape("/") + "*)/)(\\w*):?",
|
74
|
+
onMatch: function(val, state, stack) {
|
75
|
+
var ts = stack[0];
|
76
|
+
ts.fmtString = val;
|
77
|
+
|
78
|
+
val = this.splitRegex.exec(val);
|
79
|
+
ts.guard = val[1];
|
80
|
+
ts.fmt = val[2];
|
81
|
+
ts.flag = val[3];
|
82
|
+
return "";
|
83
|
+
}, next: "start"},
|
84
|
+
{regex: "`" + escape("`") + "*`", onMatch: function(val, state, stack) {
|
85
|
+
stack[0].code = val.splice(1, -1);
|
86
|
+
return "";
|
87
|
+
}, next: "start"},
|
88
|
+
{regex: "\\?", onMatch: function(val, state, stack) {
|
89
|
+
if (stack[0])
|
90
|
+
stack[0].expectIf = true;
|
91
|
+
}, next: "start"},
|
92
|
+
{regex: "([^:}\\\\]|\\\\.)*:?", token: "", next: "start"}
|
93
|
+
],
|
94
|
+
formatString: [
|
95
|
+
{regex: "/(" + escape("/") + "+)/", token: "regex"},
|
96
|
+
{regex: "", onMatch: function(val, state, stack) {
|
97
|
+
stack.inFormatString = true;
|
98
|
+
}, next: "start"}
|
99
|
+
]
|
100
|
+
});
|
101
|
+
SnippetManager.prototype.getTokenizer = function() {
|
102
|
+
return SnippetManager.$tokenizer;
|
103
|
+
};
|
104
|
+
return SnippetManager.$tokenizer;
|
105
|
+
};
|
106
|
+
|
107
|
+
this.tokenizeTmSnippet = function(str, startState) {
|
108
|
+
return this.getTokenizer().getLineTokens(str, startState).tokens.map(function(x) {
|
109
|
+
return x.value || x;
|
110
|
+
});
|
111
|
+
};
|
112
|
+
|
113
|
+
this.$getDefaultValue = function(editor, name) {
|
114
|
+
if (/^[A-Z]\d+$/.test(name)) {
|
115
|
+
var i = name.substr(1);
|
116
|
+
return (this.variables[name[0] + "__"] || {})[i];
|
117
|
+
}
|
118
|
+
if (/^\d+$/.test(name)) {
|
119
|
+
return (this.variables.__ || {})[name];
|
120
|
+
}
|
121
|
+
name = name.replace(/^TM_/, "");
|
122
|
+
|
123
|
+
if (!editor)
|
124
|
+
return;
|
125
|
+
var s = editor.session;
|
126
|
+
switch(name) {
|
127
|
+
case "CURRENT_WORD":
|
128
|
+
var r = s.getWordRange();
|
129
|
+
case "SELECTION":
|
130
|
+
case "SELECTED_TEXT":
|
131
|
+
return s.getTextRange(r);
|
132
|
+
case "CURRENT_LINE":
|
133
|
+
return s.getLine(editor.getCursorPosition().row);
|
134
|
+
case "PREV_LINE": // not possible in textmate
|
135
|
+
return s.getLine(editor.getCursorPosition().row - 1);
|
136
|
+
case "LINE_INDEX":
|
137
|
+
return editor.getCursorPosition().column;
|
138
|
+
case "LINE_NUMBER":
|
139
|
+
return editor.getCursorPosition().row + 1;
|
140
|
+
case "SOFT_TABS":
|
141
|
+
return s.getUseSoftTabs() ? "YES" : "NO";
|
142
|
+
case "TAB_SIZE":
|
143
|
+
return s.getTabSize();
|
144
|
+
case "FILENAME":
|
145
|
+
case "FILEPATH":
|
146
|
+
return "";
|
147
|
+
case "FULLNAME":
|
148
|
+
return "Ace";
|
149
|
+
}
|
150
|
+
};
|
151
|
+
this.variables = {};
|
152
|
+
this.getVariableValue = function(editor, varName) {
|
153
|
+
if (this.variables.hasOwnProperty(varName))
|
154
|
+
return this.variables[varName](editor, varName) || "";
|
155
|
+
return this.$getDefaultValue(editor, varName) || "";
|
156
|
+
};
|
157
|
+
this.tmStrFormat = function(str, ch, editor) {
|
158
|
+
var flag = ch.flag || "";
|
159
|
+
var re = ch.guard;
|
160
|
+
re = new RegExp(re, flag.replace(/[^gi]/, ""));
|
161
|
+
var fmtTokens = this.tokenizeTmSnippet(ch.fmt, "formatString");
|
162
|
+
var _self = this;
|
163
|
+
var formatted = str.replace(re, function() {
|
164
|
+
_self.variables.__ = arguments;
|
165
|
+
var fmtParts = _self.resolveVariables(fmtTokens, editor);
|
166
|
+
var gChangeCase = "E";
|
167
|
+
for (var i = 0; i < fmtParts.length; i++) {
|
168
|
+
var ch = fmtParts[i];
|
169
|
+
if (typeof ch == "object") {
|
170
|
+
fmtParts[i] = "";
|
171
|
+
if (ch.changeCase && ch.local) {
|
172
|
+
var next = fmtParts[i + 1];
|
173
|
+
if (next && typeof next == "string") {
|
174
|
+
if (ch.changeCase == "u")
|
175
|
+
fmtParts[i] = next[0].toUpperCase();
|
176
|
+
else
|
177
|
+
fmtParts[i] = next[0].toLowerCase();
|
178
|
+
fmtParts[i + 1] = next.substr(1);
|
179
|
+
}
|
180
|
+
} else if (ch.changeCase) {
|
181
|
+
gChangeCase = ch.changeCase;
|
182
|
+
}
|
183
|
+
} else if (gChangeCase == "U") {
|
184
|
+
fmtParts[i] = ch.toUpperCase();
|
185
|
+
} else if (gChangeCase == "L") {
|
186
|
+
fmtParts[i] = ch.toLowerCase();
|
187
|
+
}
|
188
|
+
}
|
189
|
+
return fmtParts.join("");
|
190
|
+
});
|
191
|
+
this.variables.__ = null;
|
192
|
+
return formatted;
|
193
|
+
};
|
194
|
+
|
195
|
+
this.resolveVariables = function(snippet, editor) {
|
196
|
+
var result = [];
|
197
|
+
for (var i = 0; i < snippet.length; i++) {
|
198
|
+
var ch = snippet[i];
|
199
|
+
if (typeof ch == "string") {
|
200
|
+
result.push(ch);
|
201
|
+
} else if (typeof ch != "object") {
|
202
|
+
continue;
|
203
|
+
} else if (ch.skip) {
|
204
|
+
gotoNext(ch);
|
205
|
+
} else if (ch.processed < i) {
|
206
|
+
continue;
|
207
|
+
} else if (ch.text) {
|
208
|
+
var value = this.getVariableValue(editor, ch.text);
|
209
|
+
if (value && ch.fmtString)
|
210
|
+
value = this.tmStrFormat(value, ch);
|
211
|
+
ch.processed = i;
|
212
|
+
if (ch.expectIf == null) {
|
213
|
+
if (value) {
|
214
|
+
result.push(value);
|
215
|
+
gotoNext(ch);
|
216
|
+
}
|
217
|
+
} else {
|
218
|
+
if (value) {
|
219
|
+
ch.skip = ch.elseBranch;
|
220
|
+
} else
|
221
|
+
gotoNext(ch);
|
222
|
+
}
|
223
|
+
} else if (ch.tabstopId != null) {
|
224
|
+
result.push(ch);
|
225
|
+
} else if (ch.changeCase != null) {
|
226
|
+
result.push(ch);
|
227
|
+
}
|
228
|
+
}
|
229
|
+
function gotoNext(ch) {
|
230
|
+
var i1 = snippet.indexOf(ch, i + 1);
|
231
|
+
if (i1 != -1)
|
232
|
+
i = i1;
|
233
|
+
}
|
234
|
+
return result;
|
235
|
+
};
|
236
|
+
|
237
|
+
this.insertSnippetForSelection = function(editor, snippetText) {
|
238
|
+
var cursor = editor.getCursorPosition();
|
239
|
+
var line = editor.session.getLine(cursor.row);
|
240
|
+
var tabString = editor.session.getTabString();
|
241
|
+
var indentString = line.match(/^\s*/)[0];
|
242
|
+
|
243
|
+
if (cursor.column < indentString.length)
|
244
|
+
indentString = indentString.slice(0, cursor.column);
|
245
|
+
|
246
|
+
var tokens = this.tokenizeTmSnippet(snippetText);
|
247
|
+
tokens = this.resolveVariables(tokens, editor);
|
248
|
+
tokens = tokens.map(function(x) {
|
249
|
+
if (x == "\n")
|
250
|
+
return x + indentString;
|
251
|
+
if (typeof x == "string")
|
252
|
+
return x.replace(/\t/g, tabString);
|
253
|
+
return x;
|
254
|
+
});
|
255
|
+
var tabstops = [];
|
256
|
+
tokens.forEach(function(p, i) {
|
257
|
+
if (typeof p != "object")
|
258
|
+
return;
|
259
|
+
var id = p.tabstopId;
|
260
|
+
var ts = tabstops[id];
|
261
|
+
if (!ts) {
|
262
|
+
ts = tabstops[id] = [];
|
263
|
+
ts.index = id;
|
264
|
+
ts.value = "";
|
265
|
+
}
|
266
|
+
if (ts.indexOf(p) !== -1)
|
267
|
+
return;
|
268
|
+
ts.push(p);
|
269
|
+
var i1 = tokens.indexOf(p, i + 1);
|
270
|
+
if (i1 === -1)
|
271
|
+
return;
|
272
|
+
|
273
|
+
var value = tokens.slice(i + 1, i1);
|
274
|
+
var isNested = value.some(function(t) {return typeof t === "object"});
|
275
|
+
if (isNested && !ts.value) {
|
276
|
+
ts.value = value;
|
277
|
+
} else if (value.length && (!ts.value || typeof ts.value !== "string")) {
|
278
|
+
ts.value = value.join("");
|
279
|
+
}
|
280
|
+
});
|
281
|
+
tabstops.forEach(function(ts) {ts.length = 0});
|
282
|
+
var expanding = {};
|
283
|
+
function copyValue(val) {
|
284
|
+
var copy = [];
|
285
|
+
for (var i = 0; i < val.length; i++) {
|
286
|
+
var p = val[i];
|
287
|
+
if (typeof p == "object") {
|
288
|
+
if (expanding[p.tabstopId])
|
289
|
+
continue;
|
290
|
+
var j = val.lastIndexOf(p, i - 1);
|
291
|
+
p = copy[j] || {tabstopId: p.tabstopId};
|
292
|
+
}
|
293
|
+
copy[i] = p;
|
294
|
+
}
|
295
|
+
return copy;
|
296
|
+
}
|
297
|
+
for (var i = 0; i < tokens.length; i++) {
|
298
|
+
var p = tokens[i];
|
299
|
+
if (typeof p != "object")
|
300
|
+
continue;
|
301
|
+
var id = p.tabstopId;
|
302
|
+
var i1 = tokens.indexOf(p, i + 1);
|
303
|
+
if (expanding[id]) {
|
304
|
+
if (expanding[id] === p)
|
305
|
+
expanding[id] = null;
|
306
|
+
continue;
|
307
|
+
}
|
308
|
+
|
309
|
+
var ts = tabstops[id];
|
310
|
+
var arg = typeof ts.value == "string" ? [ts.value] : copyValue(ts.value);
|
311
|
+
arg.unshift(i + 1, Math.max(0, i1 - i));
|
312
|
+
arg.push(p);
|
313
|
+
expanding[id] = p;
|
314
|
+
tokens.splice.apply(tokens, arg);
|
315
|
+
|
316
|
+
if (ts.indexOf(p) === -1)
|
317
|
+
ts.push(p);
|
318
|
+
}
|
319
|
+
var row = 0, column = 0;
|
320
|
+
var text = "";
|
321
|
+
tokens.forEach(function(t) {
|
322
|
+
if (typeof t === "string") {
|
323
|
+
if (t[0] === "\n"){
|
324
|
+
column = t.length - 1;
|
325
|
+
row ++;
|
326
|
+
} else
|
327
|
+
column += t.length;
|
328
|
+
text += t;
|
329
|
+
} else {
|
330
|
+
if (!t.start)
|
331
|
+
t.start = {row: row, column: column};
|
332
|
+
else
|
333
|
+
t.end = {row: row, column: column};
|
334
|
+
}
|
335
|
+
});
|
336
|
+
var range = editor.getSelectionRange();
|
337
|
+
var end = editor.session.replace(range, text);
|
338
|
+
|
339
|
+
var tabstopManager = new TabstopManager(editor);
|
340
|
+
var selectionId = editor.inVirtualSelectionMode && editor.selection.index;
|
341
|
+
tabstopManager.addTabstops(tabstops, range.start, end, selectionId);
|
342
|
+
};
|
343
|
+
|
344
|
+
this.insertSnippet = function(editor, snippetText) {
|
345
|
+
var self = this;
|
346
|
+
if (editor.inVirtualSelectionMode)
|
347
|
+
return self.insertSnippetForSelection(editor, snippetText);
|
348
|
+
|
349
|
+
editor.forEachSelection(function() {
|
350
|
+
self.insertSnippetForSelection(editor, snippetText);
|
351
|
+
}, null, {keepOrder: true});
|
352
|
+
|
353
|
+
if (editor.tabstopManager)
|
354
|
+
editor.tabstopManager.tabNext();
|
355
|
+
};
|
356
|
+
|
357
|
+
this.$getScope = function(editor) {
|
358
|
+
var scope = editor.session.$mode.$id || "";
|
359
|
+
scope = scope.split("/").pop();
|
360
|
+
if (scope === "html" || scope === "php") {
|
361
|
+
if (scope === "php" && !editor.session.$mode.inlinePhp)
|
362
|
+
scope = "html";
|
363
|
+
var c = editor.getCursorPosition();
|
364
|
+
var state = editor.session.getState(c.row);
|
365
|
+
if (typeof state === "object") {
|
366
|
+
state = state[0];
|
367
|
+
}
|
368
|
+
if (state.substring) {
|
369
|
+
if (state.substring(0, 3) == "js-")
|
370
|
+
scope = "javascript";
|
371
|
+
else if (state.substring(0, 4) == "css-")
|
372
|
+
scope = "css";
|
373
|
+
else if (state.substring(0, 4) == "php-")
|
374
|
+
scope = "php";
|
375
|
+
}
|
376
|
+
}
|
377
|
+
|
378
|
+
return scope;
|
379
|
+
};
|
380
|
+
|
381
|
+
this.getActiveScopes = function(editor) {
|
382
|
+
var scope = this.$getScope(editor);
|
383
|
+
var scopes = [scope];
|
384
|
+
var snippetMap = this.snippetMap;
|
385
|
+
if (snippetMap[scope] && snippetMap[scope].includeScopes) {
|
386
|
+
scopes.push.apply(scopes, snippetMap[scope].includeScopes);
|
387
|
+
}
|
388
|
+
scopes.push("_");
|
389
|
+
return scopes;
|
390
|
+
};
|
391
|
+
|
392
|
+
this.expandWithTab = function(editor, options) {
|
393
|
+
var self = this;
|
394
|
+
var result = editor.forEachSelection(function() {
|
395
|
+
return self.expandSnippetForSelection(editor, options);
|
396
|
+
}, null, {keepOrder: true});
|
397
|
+
if (result && editor.tabstopManager)
|
398
|
+
editor.tabstopManager.tabNext();
|
399
|
+
return result;
|
400
|
+
};
|
401
|
+
|
402
|
+
this.expandSnippetForSelection = function(editor, options) {
|
403
|
+
var cursor = editor.getCursorPosition();
|
404
|
+
var line = editor.session.getLine(cursor.row);
|
405
|
+
var before = line.substring(0, cursor.column);
|
406
|
+
var after = line.substr(cursor.column);
|
407
|
+
|
408
|
+
var snippetMap = this.snippetMap;
|
409
|
+
var snippet;
|
410
|
+
this.getActiveScopes(editor).some(function(scope) {
|
411
|
+
var snippets = snippetMap[scope];
|
412
|
+
if (snippets)
|
413
|
+
snippet = this.findMatchingSnippet(snippets, before, after);
|
414
|
+
return !!snippet;
|
415
|
+
}, this);
|
416
|
+
if (!snippet)
|
417
|
+
return false;
|
418
|
+
if (options && options.dryRun)
|
419
|
+
return true;
|
420
|
+
editor.session.doc.removeInLine(cursor.row,
|
421
|
+
cursor.column - snippet.replaceBefore.length,
|
422
|
+
cursor.column + snippet.replaceAfter.length
|
423
|
+
);
|
424
|
+
|
425
|
+
this.variables.M__ = snippet.matchBefore;
|
426
|
+
this.variables.T__ = snippet.matchAfter;
|
427
|
+
this.insertSnippetForSelection(editor, snippet.content);
|
428
|
+
|
429
|
+
this.variables.M__ = this.variables.T__ = null;
|
430
|
+
return true;
|
431
|
+
};
|
432
|
+
|
433
|
+
this.findMatchingSnippet = function(snippetList, before, after) {
|
434
|
+
for (var i = snippetList.length; i--;) {
|
435
|
+
var s = snippetList[i];
|
436
|
+
if (s.startRe && !s.startRe.test(before))
|
437
|
+
continue;
|
438
|
+
if (s.endRe && !s.endRe.test(after))
|
439
|
+
continue;
|
440
|
+
if (!s.startRe && !s.endRe)
|
441
|
+
continue;
|
442
|
+
|
443
|
+
s.matchBefore = s.startRe ? s.startRe.exec(before) : [""];
|
444
|
+
s.matchAfter = s.endRe ? s.endRe.exec(after) : [""];
|
445
|
+
s.replaceBefore = s.triggerRe ? s.triggerRe.exec(before)[0] : "";
|
446
|
+
s.replaceAfter = s.endTriggerRe ? s.endTriggerRe.exec(after)[0] : "";
|
447
|
+
return s;
|
448
|
+
}
|
449
|
+
};
|
450
|
+
|
451
|
+
this.snippetMap = {};
|
452
|
+
this.snippetNameMap = {};
|
453
|
+
this.register = function(snippets, scope) {
|
454
|
+
var snippetMap = this.snippetMap;
|
455
|
+
var snippetNameMap = this.snippetNameMap;
|
456
|
+
var self = this;
|
457
|
+
|
458
|
+
if (!snippets)
|
459
|
+
snippets = [];
|
460
|
+
|
461
|
+
function wrapRegexp(src) {
|
462
|
+
if (src && !/^\^?\(.*\)\$?$|^\\b$/.test(src))
|
463
|
+
src = "(?:" + src + ")";
|
464
|
+
|
465
|
+
return src || "";
|
466
|
+
}
|
467
|
+
function guardedRegexp(re, guard, opening) {
|
468
|
+
re = wrapRegexp(re);
|
469
|
+
guard = wrapRegexp(guard);
|
470
|
+
if (opening) {
|
471
|
+
re = guard + re;
|
472
|
+
if (re && re[re.length - 1] != "$")
|
473
|
+
re = re + "$";
|
474
|
+
} else {
|
475
|
+
re = re + guard;
|
476
|
+
if (re && re[0] != "^")
|
477
|
+
re = "^" + re;
|
478
|
+
}
|
479
|
+
return new RegExp(re);
|
480
|
+
}
|
481
|
+
|
482
|
+
function addSnippet(s) {
|
483
|
+
if (!s.scope)
|
484
|
+
s.scope = scope || "_";
|
485
|
+
scope = s.scope;
|
486
|
+
if (!snippetMap[scope]) {
|
487
|
+
snippetMap[scope] = [];
|
488
|
+
snippetNameMap[scope] = {};
|
489
|
+
}
|
490
|
+
|
491
|
+
var map = snippetNameMap[scope];
|
492
|
+
if (s.name) {
|
493
|
+
var old = map[s.name];
|
494
|
+
if (old)
|
495
|
+
self.unregister(old);
|
496
|
+
map[s.name] = s;
|
497
|
+
}
|
498
|
+
snippetMap[scope].push(s);
|
499
|
+
|
500
|
+
if (s.tabTrigger && !s.trigger) {
|
501
|
+
if (!s.guard && /^\w/.test(s.tabTrigger))
|
502
|
+
s.guard = "\\b";
|
503
|
+
s.trigger = lang.escapeRegExp(s.tabTrigger);
|
504
|
+
}
|
505
|
+
|
506
|
+
if (!s.trigger && !s.guard && !s.endTrigger && !s.endGuard)
|
507
|
+
return;
|
508
|
+
|
509
|
+
s.startRe = guardedRegexp(s.trigger, s.guard, true);
|
510
|
+
s.triggerRe = new RegExp(s.trigger, "", true);
|
511
|
+
|
512
|
+
s.endRe = guardedRegexp(s.endTrigger, s.endGuard, true);
|
513
|
+
s.endTriggerRe = new RegExp(s.endTrigger, "", true);
|
514
|
+
}
|
515
|
+
|
516
|
+
if (snippets && snippets.content)
|
517
|
+
addSnippet(snippets);
|
518
|
+
else if (Array.isArray(snippets))
|
519
|
+
snippets.forEach(addSnippet);
|
520
|
+
|
521
|
+
this._signal("registerSnippets", {scope: scope});
|
522
|
+
};
|
523
|
+
this.unregister = function(snippets, scope) {
|
524
|
+
var snippetMap = this.snippetMap;
|
525
|
+
var snippetNameMap = this.snippetNameMap;
|
526
|
+
|
527
|
+
function removeSnippet(s) {
|
528
|
+
var nameMap = snippetNameMap[s.scope||scope];
|
529
|
+
if (nameMap && nameMap[s.name]) {
|
530
|
+
delete nameMap[s.name];
|
531
|
+
var map = snippetMap[s.scope||scope];
|
532
|
+
var i = map && map.indexOf(s);
|
533
|
+
if (i >= 0)
|
534
|
+
map.splice(i, 1);
|
535
|
+
}
|
536
|
+
}
|
537
|
+
if (snippets.content)
|
538
|
+
removeSnippet(snippets);
|
539
|
+
else if (Array.isArray(snippets))
|
540
|
+
snippets.forEach(removeSnippet);
|
541
|
+
};
|
542
|
+
this.parseSnippetFile = function(str) {
|
543
|
+
str = str.replace(/\r/g, "");
|
544
|
+
var list = [], snippet = {};
|
545
|
+
var re = /^#.*|^({[\s\S]*})\s*$|^(\S+) (.*)$|^((?:\n*\t.*)+)/gm;
|
546
|
+
var m;
|
547
|
+
while (m = re.exec(str)) {
|
548
|
+
if (m[1]) {
|
549
|
+
try {
|
550
|
+
snippet = JSON.parse(m[1]);
|
551
|
+
list.push(snippet);
|
552
|
+
} catch (e) {}
|
553
|
+
} if (m[4]) {
|
554
|
+
snippet.content = m[4].replace(/^\t/gm, "");
|
555
|
+
list.push(snippet);
|
556
|
+
snippet = {};
|
557
|
+
} else {
|
558
|
+
var key = m[2], val = m[3];
|
559
|
+
if (key == "regex") {
|
560
|
+
var guardRe = /\/((?:[^\/\\]|\\.)*)|$/g;
|
561
|
+
snippet.guard = guardRe.exec(val)[1];
|
562
|
+
snippet.trigger = guardRe.exec(val)[1];
|
563
|
+
snippet.endTrigger = guardRe.exec(val)[1];
|
564
|
+
snippet.endGuard = guardRe.exec(val)[1];
|
565
|
+
} else if (key == "snippet") {
|
566
|
+
snippet.tabTrigger = val.match(/^\S*/)[0];
|
567
|
+
if (!snippet.name)
|
568
|
+
snippet.name = val;
|
569
|
+
} else {
|
570
|
+
snippet[key] = val;
|
571
|
+
}
|
572
|
+
}
|
573
|
+
}
|
574
|
+
return list;
|
575
|
+
};
|
576
|
+
this.getSnippetByName = function(name, editor) {
|
577
|
+
var snippetMap = this.snippetNameMap;
|
578
|
+
var snippet;
|
579
|
+
this.getActiveScopes(editor).some(function(scope) {
|
580
|
+
var snippets = snippetMap[scope];
|
581
|
+
if (snippets)
|
582
|
+
snippet = snippets[name];
|
583
|
+
return !!snippet;
|
584
|
+
}, this);
|
585
|
+
return snippet;
|
586
|
+
};
|
587
|
+
|
588
|
+
}).call(SnippetManager.prototype);
|
589
|
+
|
590
|
+
|
591
|
+
var TabstopManager = function(editor) {
|
592
|
+
if (editor.tabstopManager)
|
593
|
+
return editor.tabstopManager;
|
594
|
+
editor.tabstopManager = this;
|
595
|
+
this.$onChange = this.onChange.bind(this);
|
596
|
+
this.$onChangeSelection = lang.delayedCall(this.onChangeSelection.bind(this)).schedule;
|
597
|
+
this.$onChangeSession = this.onChangeSession.bind(this);
|
598
|
+
this.$onAfterExec = this.onAfterExec.bind(this);
|
599
|
+
this.attach(editor);
|
600
|
+
};
|
601
|
+
(function() {
|
602
|
+
this.attach = function(editor) {
|
603
|
+
this.index = 0;
|
604
|
+
this.ranges = [];
|
605
|
+
this.tabstops = [];
|
606
|
+
this.$openTabstops = null;
|
607
|
+
this.selectedTabstop = null;
|
608
|
+
|
609
|
+
this.editor = editor;
|
610
|
+
this.editor.on("change", this.$onChange);
|
611
|
+
this.editor.on("changeSelection", this.$onChangeSelection);
|
612
|
+
this.editor.on("changeSession", this.$onChangeSession);
|
613
|
+
this.editor.commands.on("afterExec", this.$onAfterExec);
|
614
|
+
this.editor.keyBinding.addKeyboardHandler(this.keyboardHandler);
|
615
|
+
};
|
616
|
+
this.detach = function() {
|
617
|
+
this.tabstops.forEach(this.removeTabstopMarkers, this);
|
618
|
+
this.ranges = null;
|
619
|
+
this.tabstops = null;
|
620
|
+
this.selectedTabstop = null;
|
621
|
+
this.editor.removeListener("change", this.$onChange);
|
622
|
+
this.editor.removeListener("changeSelection", this.$onChangeSelection);
|
623
|
+
this.editor.removeListener("changeSession", this.$onChangeSession);
|
624
|
+
this.editor.commands.removeListener("afterExec", this.$onAfterExec);
|
625
|
+
this.editor.keyBinding.removeKeyboardHandler(this.keyboardHandler);
|
626
|
+
this.editor.tabstopManager = null;
|
627
|
+
this.editor = null;
|
628
|
+
};
|
629
|
+
|
630
|
+
this.onChange = function(delta) {
|
631
|
+
var changeRange = delta;
|
632
|
+
var isRemove = delta.action[0] == "r";
|
633
|
+
var start = delta.start;
|
634
|
+
var end = delta.end;
|
635
|
+
var startRow = start.row;
|
636
|
+
var endRow = end.row;
|
637
|
+
var lineDif = endRow - startRow;
|
638
|
+
var colDiff = end.column - start.column;
|
639
|
+
|
640
|
+
if (isRemove) {
|
641
|
+
lineDif = -lineDif;
|
642
|
+
colDiff = -colDiff;
|
643
|
+
}
|
644
|
+
if (!this.$inChange && isRemove) {
|
645
|
+
var ts = this.selectedTabstop;
|
646
|
+
var changedOutside = ts && !ts.some(function(r) {
|
647
|
+
return comparePoints(r.start, start) <= 0 && comparePoints(r.end, end) >= 0;
|
648
|
+
});
|
649
|
+
if (changedOutside)
|
650
|
+
return this.detach();
|
651
|
+
}
|
652
|
+
var ranges = this.ranges;
|
653
|
+
for (var i = 0; i < ranges.length; i++) {
|
654
|
+
var r = ranges[i];
|
655
|
+
if (r.end.row < start.row)
|
656
|
+
continue;
|
657
|
+
|
658
|
+
if (isRemove && comparePoints(start, r.start) < 0 && comparePoints(end, r.end) > 0) {
|
659
|
+
this.removeRange(r);
|
660
|
+
i--;
|
661
|
+
continue;
|
662
|
+
}
|
663
|
+
|
664
|
+
if (r.start.row == startRow && r.start.column > start.column)
|
665
|
+
r.start.column += colDiff;
|
666
|
+
if (r.end.row == startRow && r.end.column >= start.column)
|
667
|
+
r.end.column += colDiff;
|
668
|
+
if (r.start.row >= startRow)
|
669
|
+
r.start.row += lineDif;
|
670
|
+
if (r.end.row >= startRow)
|
671
|
+
r.end.row += lineDif;
|
672
|
+
|
673
|
+
if (comparePoints(r.start, r.end) > 0)
|
674
|
+
this.removeRange(r);
|
675
|
+
}
|
676
|
+
if (!ranges.length)
|
677
|
+
this.detach();
|
678
|
+
};
|
679
|
+
this.updateLinkedFields = function() {
|
680
|
+
var ts = this.selectedTabstop;
|
681
|
+
if (!ts || !ts.hasLinkedRanges)
|
682
|
+
return;
|
683
|
+
this.$inChange = true;
|
684
|
+
var session = this.editor.session;
|
685
|
+
var text = session.getTextRange(ts.firstNonLinked);
|
686
|
+
for (var i = ts.length; i--;) {
|
687
|
+
var range = ts[i];
|
688
|
+
if (!range.linked)
|
689
|
+
continue;
|
690
|
+
var fmt = exports.snippetManager.tmStrFormat(text, range.original);
|
691
|
+
session.replace(range, fmt);
|
692
|
+
}
|
693
|
+
this.$inChange = false;
|
694
|
+
};
|
695
|
+
this.onAfterExec = function(e) {
|
696
|
+
if (e.command && !e.command.readOnly)
|
697
|
+
this.updateLinkedFields();
|
698
|
+
};
|
699
|
+
this.onChangeSelection = function() {
|
700
|
+
if (!this.editor)
|
701
|
+
return;
|
702
|
+
var lead = this.editor.selection.lead;
|
703
|
+
var anchor = this.editor.selection.anchor;
|
704
|
+
var isEmpty = this.editor.selection.isEmpty();
|
705
|
+
for (var i = this.ranges.length; i--;) {
|
706
|
+
if (this.ranges[i].linked)
|
707
|
+
continue;
|
708
|
+
var containsLead = this.ranges[i].contains(lead.row, lead.column);
|
709
|
+
var containsAnchor = isEmpty || this.ranges[i].contains(anchor.row, anchor.column);
|
710
|
+
if (containsLead && containsAnchor)
|
711
|
+
return;
|
712
|
+
}
|
713
|
+
this.detach();
|
714
|
+
};
|
715
|
+
this.onChangeSession = function() {
|
716
|
+
this.detach();
|
717
|
+
};
|
718
|
+
this.tabNext = function(dir) {
|
719
|
+
var max = this.tabstops.length;
|
720
|
+
var index = this.index + (dir || 1);
|
721
|
+
index = Math.min(Math.max(index, 1), max);
|
722
|
+
if (index == max)
|
723
|
+
index = 0;
|
724
|
+
this.selectTabstop(index);
|
725
|
+
if (index === 0)
|
726
|
+
this.detach();
|
727
|
+
};
|
728
|
+
this.selectTabstop = function(index) {
|
729
|
+
this.$openTabstops = null;
|
730
|
+
var ts = this.tabstops[this.index];
|
731
|
+
if (ts)
|
732
|
+
this.addTabstopMarkers(ts);
|
733
|
+
this.index = index;
|
734
|
+
ts = this.tabstops[this.index];
|
735
|
+
if (!ts || !ts.length)
|
736
|
+
return;
|
737
|
+
|
738
|
+
this.selectedTabstop = ts;
|
739
|
+
if (!this.editor.inVirtualSelectionMode) {
|
740
|
+
var sel = this.editor.multiSelect;
|
741
|
+
sel.toSingleRange(ts.firstNonLinked.clone());
|
742
|
+
for (var i = ts.length; i--;) {
|
743
|
+
if (ts.hasLinkedRanges && ts[i].linked)
|
744
|
+
continue;
|
745
|
+
sel.addRange(ts[i].clone(), true);
|
746
|
+
}
|
747
|
+
if (sel.ranges[0])
|
748
|
+
sel.addRange(sel.ranges[0].clone());
|
749
|
+
} else {
|
750
|
+
this.editor.selection.setRange(ts.firstNonLinked);
|
751
|
+
}
|
752
|
+
|
753
|
+
this.editor.keyBinding.addKeyboardHandler(this.keyboardHandler);
|
754
|
+
};
|
755
|
+
this.addTabstops = function(tabstops, start, end) {
|
756
|
+
if (!this.$openTabstops)
|
757
|
+
this.$openTabstops = [];
|
758
|
+
if (!tabstops[0]) {
|
759
|
+
var p = Range.fromPoints(end, end);
|
760
|
+
moveRelative(p.start, start);
|
761
|
+
moveRelative(p.end, start);
|
762
|
+
tabstops[0] = [p];
|
763
|
+
tabstops[0].index = 0;
|
764
|
+
}
|
765
|
+
|
766
|
+
var i = this.index;
|
767
|
+
var arg = [i + 1, 0];
|
768
|
+
var ranges = this.ranges;
|
769
|
+
tabstops.forEach(function(ts, index) {
|
770
|
+
var dest = this.$openTabstops[index] || ts;
|
771
|
+
|
772
|
+
for (var i = ts.length; i--;) {
|
773
|
+
var p = ts[i];
|
774
|
+
var range = Range.fromPoints(p.start, p.end || p.start);
|
775
|
+
movePoint(range.start, start);
|
776
|
+
movePoint(range.end, start);
|
777
|
+
range.original = p;
|
778
|
+
range.tabstop = dest;
|
779
|
+
ranges.push(range);
|
780
|
+
if (dest != ts)
|
781
|
+
dest.unshift(range);
|
782
|
+
else
|
783
|
+
dest[i] = range;
|
784
|
+
if (p.fmtString) {
|
785
|
+
range.linked = true;
|
786
|
+
dest.hasLinkedRanges = true;
|
787
|
+
} else if (!dest.firstNonLinked)
|
788
|
+
dest.firstNonLinked = range;
|
789
|
+
}
|
790
|
+
if (!dest.firstNonLinked)
|
791
|
+
dest.hasLinkedRanges = false;
|
792
|
+
if (dest === ts) {
|
793
|
+
arg.push(dest);
|
794
|
+
this.$openTabstops[index] = dest;
|
795
|
+
}
|
796
|
+
this.addTabstopMarkers(dest);
|
797
|
+
}, this);
|
798
|
+
|
799
|
+
if (arg.length > 2) {
|
800
|
+
if (this.tabstops.length)
|
801
|
+
arg.push(arg.splice(2, 1)[0]);
|
802
|
+
this.tabstops.splice.apply(this.tabstops, arg);
|
803
|
+
}
|
804
|
+
};
|
805
|
+
|
806
|
+
this.addTabstopMarkers = function(ts) {
|
807
|
+
var session = this.editor.session;
|
808
|
+
ts.forEach(function(range) {
|
809
|
+
if (!range.markerId)
|
810
|
+
range.markerId = session.addMarker(range, "ace_snippet-marker", "text");
|
811
|
+
});
|
812
|
+
};
|
813
|
+
this.removeTabstopMarkers = function(ts) {
|
814
|
+
var session = this.editor.session;
|
815
|
+
ts.forEach(function(range) {
|
816
|
+
session.removeMarker(range.markerId);
|
817
|
+
range.markerId = null;
|
818
|
+
});
|
819
|
+
};
|
820
|
+
this.removeRange = function(range) {
|
821
|
+
var i = range.tabstop.indexOf(range);
|
822
|
+
range.tabstop.splice(i, 1);
|
823
|
+
i = this.ranges.indexOf(range);
|
824
|
+
this.ranges.splice(i, 1);
|
825
|
+
this.editor.session.removeMarker(range.markerId);
|
826
|
+
if (!range.tabstop.length) {
|
827
|
+
i = this.tabstops.indexOf(range.tabstop);
|
828
|
+
if (i != -1)
|
829
|
+
this.tabstops.splice(i, 1);
|
830
|
+
if (!this.tabstops.length)
|
831
|
+
this.detach();
|
832
|
+
}
|
833
|
+
};
|
834
|
+
|
835
|
+
this.keyboardHandler = new HashHandler();
|
836
|
+
this.keyboardHandler.bindKeys({
|
837
|
+
"Tab": function(ed) {
|
838
|
+
if (exports.snippetManager && exports.snippetManager.expandWithTab(ed)) {
|
839
|
+
return;
|
840
|
+
}
|
841
|
+
|
842
|
+
ed.tabstopManager.tabNext(1);
|
843
|
+
},
|
844
|
+
"Shift-Tab": function(ed) {
|
845
|
+
ed.tabstopManager.tabNext(-1);
|
846
|
+
},
|
847
|
+
"Esc": function(ed) {
|
848
|
+
ed.tabstopManager.detach();
|
849
|
+
},
|
850
|
+
"Return": function(ed) {
|
851
|
+
return false;
|
852
|
+
}
|
853
|
+
});
|
854
|
+
}).call(TabstopManager.prototype);
|
855
|
+
|
856
|
+
|
857
|
+
|
858
|
+
var changeTracker = {};
|
859
|
+
changeTracker.onChange = Anchor.prototype.onChange;
|
860
|
+
changeTracker.setPosition = function(row, column) {
|
861
|
+
this.pos.row = row;
|
862
|
+
this.pos.column = column;
|
863
|
+
};
|
864
|
+
changeTracker.update = function(pos, delta, $insertRight) {
|
865
|
+
this.$insertRight = $insertRight;
|
866
|
+
this.pos = pos;
|
867
|
+
this.onChange(delta);
|
868
|
+
};
|
869
|
+
|
870
|
+
var movePoint = function(point, diff) {
|
871
|
+
if (point.row == 0)
|
872
|
+
point.column += diff.column;
|
873
|
+
point.row += diff.row;
|
874
|
+
};
|
875
|
+
|
876
|
+
var moveRelative = function(point, start) {
|
877
|
+
if (point.row == start.row)
|
878
|
+
point.column -= start.column;
|
879
|
+
point.row -= start.row;
|
880
|
+
};
|
881
|
+
|
882
|
+
|
883
|
+
require("./lib/dom").importCssString("\
|
884
|
+
.ace_snippet-marker {\
|
885
|
+
-moz-box-sizing: border-box;\
|
886
|
+
box-sizing: border-box;\
|
887
|
+
background: rgba(194, 193, 208, 0.09);\
|
888
|
+
border: 1px dotted rgba(211, 208, 235, 0.62);\
|
889
|
+
position: absolute;\
|
890
|
+
}");
|
891
|
+
|
892
|
+
exports.snippetManager = new SnippetManager();
|
893
|
+
|
894
|
+
|
895
|
+
var Editor = require("./editor").Editor;
|
896
|
+
(function() {
|
897
|
+
this.insertSnippet = function(content, options) {
|
898
|
+
return exports.snippetManager.insertSnippet(this, content, options);
|
899
|
+
};
|
900
|
+
this.expandSnippet = function(options) {
|
901
|
+
return exports.snippetManager.expandWithTab(this, options);
|
902
|
+
};
|
903
|
+
}).call(Editor.prototype);
|
904
|
+
|
905
|
+
});
|
906
|
+
|
907
|
+
define("ace/autocomplete/popup",["require","exports","module","ace/virtual_renderer","ace/editor","ace/range","ace/lib/event","ace/lib/lang","ace/lib/dom"], function(require, exports, module) {
|
908
|
+
"use strict";
|
909
|
+
|
910
|
+
var Renderer = require("../virtual_renderer").VirtualRenderer;
|
911
|
+
var Editor = require("../editor").Editor;
|
912
|
+
var Range = require("../range").Range;
|
913
|
+
var event = require("../lib/event");
|
914
|
+
var lang = require("../lib/lang");
|
915
|
+
var dom = require("../lib/dom");
|
916
|
+
|
917
|
+
var $singleLineEditor = function(el) {
|
918
|
+
var renderer = new Renderer(el);
|
919
|
+
|
920
|
+
renderer.$maxLines = 4;
|
921
|
+
|
922
|
+
var editor = new Editor(renderer);
|
923
|
+
|
924
|
+
editor.setHighlightActiveLine(false);
|
925
|
+
editor.setShowPrintMargin(false);
|
926
|
+
editor.renderer.setShowGutter(false);
|
927
|
+
editor.renderer.setHighlightGutterLine(false);
|
928
|
+
|
929
|
+
editor.$mouseHandler.$focusWaitTimout = 0;
|
930
|
+
editor.$highlightTagPending = true;
|
931
|
+
|
932
|
+
return editor;
|
933
|
+
};
|
934
|
+
|
935
|
+
var AcePopup = function(parentNode) {
|
936
|
+
var el = dom.createElement("div");
|
937
|
+
var popup = new $singleLineEditor(el);
|
938
|
+
|
939
|
+
if (parentNode)
|
940
|
+
parentNode.appendChild(el);
|
941
|
+
el.style.display = "none";
|
942
|
+
popup.renderer.content.style.cursor = "default";
|
943
|
+
popup.renderer.setStyle("ace_autocomplete");
|
944
|
+
|
945
|
+
popup.setOption("displayIndentGuides", false);
|
946
|
+
popup.setOption("dragDelay", 150);
|
947
|
+
|
948
|
+
var noop = function(){};
|
949
|
+
|
950
|
+
popup.focus = noop;
|
951
|
+
popup.$isFocused = true;
|
952
|
+
|
953
|
+
popup.renderer.$cursorLayer.restartTimer = noop;
|
954
|
+
popup.renderer.$cursorLayer.element.style.opacity = 0;
|
955
|
+
|
956
|
+
popup.renderer.$maxLines = 8;
|
957
|
+
popup.renderer.$keepTextAreaAtCursor = false;
|
958
|
+
|
959
|
+
popup.setHighlightActiveLine(false);
|
960
|
+
popup.session.highlight("");
|
961
|
+
popup.session.$searchHighlight.clazz = "ace_highlight-marker";
|
962
|
+
|
963
|
+
popup.on("mousedown", function(e) {
|
964
|
+
var pos = e.getDocumentPosition();
|
965
|
+
popup.selection.moveToPosition(pos);
|
966
|
+
selectionMarker.start.row = selectionMarker.end.row = pos.row;
|
967
|
+
e.stop();
|
968
|
+
});
|
969
|
+
|
970
|
+
var lastMouseEvent;
|
971
|
+
var hoverMarker = new Range(-1,0,-1,Infinity);
|
972
|
+
var selectionMarker = new Range(-1,0,-1,Infinity);
|
973
|
+
selectionMarker.id = popup.session.addMarker(selectionMarker, "ace_active-line", "fullLine");
|
974
|
+
popup.setSelectOnHover = function(val) {
|
975
|
+
if (!val) {
|
976
|
+
hoverMarker.id = popup.session.addMarker(hoverMarker, "ace_line-hover", "fullLine");
|
977
|
+
} else if (hoverMarker.id) {
|
978
|
+
popup.session.removeMarker(hoverMarker.id);
|
979
|
+
hoverMarker.id = null;
|
980
|
+
}
|
981
|
+
};
|
982
|
+
popup.setSelectOnHover(false);
|
983
|
+
popup.on("mousemove", function(e) {
|
984
|
+
if (!lastMouseEvent) {
|
985
|
+
lastMouseEvent = e;
|
986
|
+
return;
|
987
|
+
}
|
988
|
+
if (lastMouseEvent.x == e.x && lastMouseEvent.y == e.y) {
|
989
|
+
return;
|
990
|
+
}
|
991
|
+
lastMouseEvent = e;
|
992
|
+
lastMouseEvent.scrollTop = popup.renderer.scrollTop;
|
993
|
+
var row = lastMouseEvent.getDocumentPosition().row;
|
994
|
+
if (hoverMarker.start.row != row) {
|
995
|
+
if (!hoverMarker.id)
|
996
|
+
popup.setRow(row);
|
997
|
+
setHoverMarker(row);
|
998
|
+
}
|
999
|
+
});
|
1000
|
+
popup.renderer.on("beforeRender", function() {
|
1001
|
+
if (lastMouseEvent && hoverMarker.start.row != -1) {
|
1002
|
+
lastMouseEvent.$pos = null;
|
1003
|
+
var row = lastMouseEvent.getDocumentPosition().row;
|
1004
|
+
if (!hoverMarker.id)
|
1005
|
+
popup.setRow(row);
|
1006
|
+
setHoverMarker(row, true);
|
1007
|
+
}
|
1008
|
+
});
|
1009
|
+
popup.renderer.on("afterRender", function() {
|
1010
|
+
var row = popup.getRow();
|
1011
|
+
var t = popup.renderer.$textLayer;
|
1012
|
+
var selected = t.element.childNodes[row - t.config.firstRow];
|
1013
|
+
if (selected == t.selectedNode)
|
1014
|
+
return;
|
1015
|
+
if (t.selectedNode)
|
1016
|
+
dom.removeCssClass(t.selectedNode, "ace_selected");
|
1017
|
+
t.selectedNode = selected;
|
1018
|
+
if (selected)
|
1019
|
+
dom.addCssClass(selected, "ace_selected");
|
1020
|
+
});
|
1021
|
+
var hideHoverMarker = function() { setHoverMarker(-1) };
|
1022
|
+
var setHoverMarker = function(row, suppressRedraw) {
|
1023
|
+
if (row !== hoverMarker.start.row) {
|
1024
|
+
hoverMarker.start.row = hoverMarker.end.row = row;
|
1025
|
+
if (!suppressRedraw)
|
1026
|
+
popup.session._emit("changeBackMarker");
|
1027
|
+
popup._emit("changeHoverMarker");
|
1028
|
+
}
|
1029
|
+
};
|
1030
|
+
popup.getHoveredRow = function() {
|
1031
|
+
return hoverMarker.start.row;
|
1032
|
+
};
|
1033
|
+
|
1034
|
+
event.addListener(popup.container, "mouseout", hideHoverMarker);
|
1035
|
+
popup.on("hide", hideHoverMarker);
|
1036
|
+
popup.on("changeSelection", hideHoverMarker);
|
1037
|
+
|
1038
|
+
popup.session.doc.getLength = function() {
|
1039
|
+
return popup.data.length;
|
1040
|
+
};
|
1041
|
+
popup.session.doc.getLine = function(i) {
|
1042
|
+
var data = popup.data[i];
|
1043
|
+
if (typeof data == "string")
|
1044
|
+
return data;
|
1045
|
+
return (data && data.value) || "";
|
1046
|
+
};
|
1047
|
+
|
1048
|
+
var bgTokenizer = popup.session.bgTokenizer;
|
1049
|
+
bgTokenizer.$tokenizeRow = function(row) {
|
1050
|
+
var data = popup.data[row];
|
1051
|
+
var tokens = [];
|
1052
|
+
if (!data)
|
1053
|
+
return tokens;
|
1054
|
+
if (typeof data == "string")
|
1055
|
+
data = {value: data};
|
1056
|
+
if (!data.caption)
|
1057
|
+
data.caption = data.value || data.name;
|
1058
|
+
|
1059
|
+
var last = -1;
|
1060
|
+
var flag, c;
|
1061
|
+
for (var i = 0; i < data.caption.length; i++) {
|
1062
|
+
c = data.caption[i];
|
1063
|
+
flag = data.matchMask & (1 << i) ? 1 : 0;
|
1064
|
+
if (last !== flag) {
|
1065
|
+
tokens.push({type: data.className || "" + ( flag ? "completion-highlight" : ""), value: c});
|
1066
|
+
last = flag;
|
1067
|
+
} else {
|
1068
|
+
tokens[tokens.length - 1].value += c;
|
1069
|
+
}
|
1070
|
+
}
|
1071
|
+
|
1072
|
+
if (data.meta) {
|
1073
|
+
var maxW = popup.renderer.$size.scrollerWidth / popup.renderer.layerConfig.characterWidth;
|
1074
|
+
var metaData = data.meta;
|
1075
|
+
if (metaData.length + data.caption.length > maxW - 2) {
|
1076
|
+
metaData = metaData.substr(0, maxW - data.caption.length - 3) + "\u2026"
|
1077
|
+
}
|
1078
|
+
tokens.push({type: "rightAlignedText", value: metaData});
|
1079
|
+
}
|
1080
|
+
return tokens;
|
1081
|
+
};
|
1082
|
+
bgTokenizer.$updateOnChange = noop;
|
1083
|
+
bgTokenizer.start = noop;
|
1084
|
+
|
1085
|
+
popup.session.$computeWidth = function() {
|
1086
|
+
return this.screenWidth = 0;
|
1087
|
+
};
|
1088
|
+
|
1089
|
+
popup.$blockScrolling = Infinity;
|
1090
|
+
popup.isOpen = false;
|
1091
|
+
popup.isTopdown = false;
|
1092
|
+
|
1093
|
+
popup.data = [];
|
1094
|
+
popup.setData = function(list) {
|
1095
|
+
popup.setValue(lang.stringRepeat("\n", list.length), -1);
|
1096
|
+
popup.data = list || [];
|
1097
|
+
popup.setRow(0);
|
1098
|
+
};
|
1099
|
+
popup.getData = function(row) {
|
1100
|
+
return popup.data[row];
|
1101
|
+
};
|
1102
|
+
|
1103
|
+
popup.getRow = function() {
|
1104
|
+
return selectionMarker.start.row;
|
1105
|
+
};
|
1106
|
+
popup.setRow = function(line) {
|
1107
|
+
line = Math.max(-1, Math.min(this.data.length, line));
|
1108
|
+
if (selectionMarker.start.row != line) {
|
1109
|
+
popup.selection.clearSelection();
|
1110
|
+
selectionMarker.start.row = selectionMarker.end.row = line || 0;
|
1111
|
+
popup.session._emit("changeBackMarker");
|
1112
|
+
popup.moveCursorTo(line || 0, 0);
|
1113
|
+
if (popup.isOpen)
|
1114
|
+
popup._signal("select");
|
1115
|
+
}
|
1116
|
+
};
|
1117
|
+
|
1118
|
+
popup.on("changeSelection", function() {
|
1119
|
+
if (popup.isOpen)
|
1120
|
+
popup.setRow(popup.selection.lead.row);
|
1121
|
+
popup.renderer.scrollCursorIntoView();
|
1122
|
+
});
|
1123
|
+
|
1124
|
+
popup.hide = function() {
|
1125
|
+
this.container.style.display = "none";
|
1126
|
+
this._signal("hide");
|
1127
|
+
popup.isOpen = false;
|
1128
|
+
};
|
1129
|
+
popup.show = function(pos, lineHeight, topdownOnly) {
|
1130
|
+
var el = this.container;
|
1131
|
+
var screenHeight = window.innerHeight;
|
1132
|
+
var screenWidth = window.innerWidth;
|
1133
|
+
var renderer = this.renderer;
|
1134
|
+
var maxH = renderer.$maxLines * lineHeight * 1.4;
|
1135
|
+
var top = pos.top + this.$borderSize;
|
1136
|
+
if (top + maxH > screenHeight - lineHeight && !topdownOnly) {
|
1137
|
+
el.style.top = "";
|
1138
|
+
el.style.bottom = screenHeight - top + "px";
|
1139
|
+
popup.isTopdown = false;
|
1140
|
+
} else {
|
1141
|
+
top += lineHeight;
|
1142
|
+
el.style.top = top + "px";
|
1143
|
+
el.style.bottom = "";
|
1144
|
+
popup.isTopdown = true;
|
1145
|
+
}
|
1146
|
+
|
1147
|
+
el.style.display = "";
|
1148
|
+
this.renderer.$textLayer.checkForSizeChanges();
|
1149
|
+
|
1150
|
+
var left = pos.left;
|
1151
|
+
if (left + el.offsetWidth > screenWidth)
|
1152
|
+
left = screenWidth - el.offsetWidth;
|
1153
|
+
|
1154
|
+
el.style.left = left + "px";
|
1155
|
+
|
1156
|
+
this._signal("show");
|
1157
|
+
lastMouseEvent = null;
|
1158
|
+
popup.isOpen = true;
|
1159
|
+
};
|
1160
|
+
|
1161
|
+
popup.getTextLeftOffset = function() {
|
1162
|
+
return this.$borderSize + this.renderer.$padding + this.$imageSize;
|
1163
|
+
};
|
1164
|
+
|
1165
|
+
popup.$imageSize = 0;
|
1166
|
+
popup.$borderSize = 1;
|
1167
|
+
|
1168
|
+
return popup;
|
1169
|
+
};
|
1170
|
+
|
1171
|
+
dom.importCssString("\
|
1172
|
+
.ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line {\
|
1173
|
+
background-color: #CAD6FA;\
|
1174
|
+
z-index: 1;\
|
1175
|
+
}\
|
1176
|
+
.ace_editor.ace_autocomplete .ace_line-hover {\
|
1177
|
+
border: 1px solid #abbffe;\
|
1178
|
+
margin-top: -1px;\
|
1179
|
+
background: rgba(233,233,253,0.4);\
|
1180
|
+
}\
|
1181
|
+
.ace_editor.ace_autocomplete .ace_line-hover {\
|
1182
|
+
position: absolute;\
|
1183
|
+
z-index: 2;\
|
1184
|
+
}\
|
1185
|
+
.ace_editor.ace_autocomplete .ace_scroller {\
|
1186
|
+
background: none;\
|
1187
|
+
border: none;\
|
1188
|
+
box-shadow: none;\
|
1189
|
+
}\
|
1190
|
+
.ace_rightAlignedText {\
|
1191
|
+
color: gray;\
|
1192
|
+
display: inline-block;\
|
1193
|
+
position: absolute;\
|
1194
|
+
right: 4px;\
|
1195
|
+
text-align: right;\
|
1196
|
+
z-index: -1;\
|
1197
|
+
}\
|
1198
|
+
.ace_editor.ace_autocomplete .ace_completion-highlight{\
|
1199
|
+
color: #000;\
|
1200
|
+
text-shadow: 0 0 0.01em;\
|
1201
|
+
}\
|
1202
|
+
.ace_editor.ace_autocomplete {\
|
1203
|
+
width: 280px;\
|
1204
|
+
z-index: 200000;\
|
1205
|
+
background: #fbfbfb;\
|
1206
|
+
color: #444;\
|
1207
|
+
border: 1px lightgray solid;\
|
1208
|
+
position: fixed;\
|
1209
|
+
box-shadow: 2px 3px 5px rgba(0,0,0,.2);\
|
1210
|
+
line-height: 1.4;\
|
1211
|
+
}");
|
1212
|
+
|
1213
|
+
exports.AcePopup = AcePopup;
|
1214
|
+
|
1215
|
+
});
|
1216
|
+
|
1217
|
+
define("ace/autocomplete/util",["require","exports","module"], function(require, exports, module) {
|
1218
|
+
"use strict";
|
1219
|
+
|
1220
|
+
exports.parForEach = function(array, fn, callback) {
|
1221
|
+
var completed = 0;
|
1222
|
+
var arLength = array.length;
|
1223
|
+
if (arLength === 0)
|
1224
|
+
callback();
|
1225
|
+
for (var i = 0; i < arLength; i++) {
|
1226
|
+
fn(array[i], function(result, err) {
|
1227
|
+
completed++;
|
1228
|
+
if (completed === arLength)
|
1229
|
+
callback(result, err);
|
1230
|
+
});
|
1231
|
+
}
|
1232
|
+
};
|
1233
|
+
|
1234
|
+
var ID_REGEX = /[a-zA-Z_0-9\$\-\u00A2-\uFFFF]/;
|
1235
|
+
|
1236
|
+
exports.retrievePrecedingIdentifier = function(text, pos, regex) {
|
1237
|
+
regex = regex || ID_REGEX;
|
1238
|
+
var buf = [];
|
1239
|
+
for (var i = pos-1; i >= 0; i--) {
|
1240
|
+
if (regex.test(text[i]))
|
1241
|
+
buf.push(text[i]);
|
1242
|
+
else
|
1243
|
+
break;
|
1244
|
+
}
|
1245
|
+
return buf.reverse().join("");
|
1246
|
+
};
|
1247
|
+
|
1248
|
+
exports.retrieveFollowingIdentifier = function(text, pos, regex) {
|
1249
|
+
regex = regex || ID_REGEX;
|
1250
|
+
var buf = [];
|
1251
|
+
for (var i = pos; i < text.length; i++) {
|
1252
|
+
if (regex.test(text[i]))
|
1253
|
+
buf.push(text[i]);
|
1254
|
+
else
|
1255
|
+
break;
|
1256
|
+
}
|
1257
|
+
return buf;
|
1258
|
+
};
|
1259
|
+
|
1260
|
+
});
|
1261
|
+
|
1262
|
+
define("ace/autocomplete",["require","exports","module","ace/keyboard/hash_handler","ace/autocomplete/popup","ace/autocomplete/util","ace/lib/event","ace/lib/lang","ace/lib/dom","ace/snippets"], function(require, exports, module) {
|
1263
|
+
"use strict";
|
1264
|
+
|
1265
|
+
var HashHandler = require("./keyboard/hash_handler").HashHandler;
|
1266
|
+
var AcePopup = require("./autocomplete/popup").AcePopup;
|
1267
|
+
var util = require("./autocomplete/util");
|
1268
|
+
var event = require("./lib/event");
|
1269
|
+
var lang = require("./lib/lang");
|
1270
|
+
var dom = require("./lib/dom");
|
1271
|
+
var snippetManager = require("./snippets").snippetManager;
|
1272
|
+
|
1273
|
+
var Autocomplete = function() {
|
1274
|
+
this.autoInsert = false;
|
1275
|
+
this.autoSelect = true;
|
1276
|
+
this.exactMatch = false;
|
1277
|
+
this.gatherCompletionsId = 0;
|
1278
|
+
this.keyboardHandler = new HashHandler();
|
1279
|
+
this.keyboardHandler.bindKeys(this.commands);
|
1280
|
+
|
1281
|
+
this.blurListener = this.blurListener.bind(this);
|
1282
|
+
this.changeListener = this.changeListener.bind(this);
|
1283
|
+
this.mousedownListener = this.mousedownListener.bind(this);
|
1284
|
+
this.mousewheelListener = this.mousewheelListener.bind(this);
|
1285
|
+
|
1286
|
+
this.changeTimer = lang.delayedCall(function() {
|
1287
|
+
this.updateCompletions(true);
|
1288
|
+
}.bind(this));
|
1289
|
+
|
1290
|
+
this.tooltipTimer = lang.delayedCall(this.updateDocTooltip.bind(this), 50);
|
1291
|
+
};
|
1292
|
+
|
1293
|
+
(function() {
|
1294
|
+
|
1295
|
+
this.$init = function() {
|
1296
|
+
this.popup = new AcePopup(document.body || document.documentElement);
|
1297
|
+
this.popup.on("click", function(e) {
|
1298
|
+
this.insertMatch();
|
1299
|
+
e.stop();
|
1300
|
+
}.bind(this));
|
1301
|
+
this.popup.focus = this.editor.focus.bind(this.editor);
|
1302
|
+
this.popup.on("show", this.tooltipTimer.bind(null, null));
|
1303
|
+
this.popup.on("select", this.tooltipTimer.bind(null, null));
|
1304
|
+
this.popup.on("changeHoverMarker", this.tooltipTimer.bind(null, null));
|
1305
|
+
return this.popup;
|
1306
|
+
};
|
1307
|
+
|
1308
|
+
this.getPopup = function() {
|
1309
|
+
return this.popup || this.$init();
|
1310
|
+
};
|
1311
|
+
|
1312
|
+
this.openPopup = function(editor, prefix, keepPopupPosition) {
|
1313
|
+
if (!this.popup)
|
1314
|
+
this.$init();
|
1315
|
+
|
1316
|
+
this.popup.setData(this.completions.filtered);
|
1317
|
+
|
1318
|
+
editor.keyBinding.addKeyboardHandler(this.keyboardHandler);
|
1319
|
+
|
1320
|
+
var renderer = editor.renderer;
|
1321
|
+
this.popup.setRow(this.autoSelect ? 0 : -1);
|
1322
|
+
if (!keepPopupPosition) {
|
1323
|
+
this.popup.setTheme(editor.getTheme());
|
1324
|
+
this.popup.setFontSize(editor.getFontSize());
|
1325
|
+
|
1326
|
+
var lineHeight = renderer.layerConfig.lineHeight;
|
1327
|
+
|
1328
|
+
var pos = renderer.$cursorLayer.getPixelPosition(this.base, true);
|
1329
|
+
pos.left -= this.popup.getTextLeftOffset();
|
1330
|
+
|
1331
|
+
var rect = editor.container.getBoundingClientRect();
|
1332
|
+
pos.top += rect.top - renderer.layerConfig.offset;
|
1333
|
+
pos.left += rect.left - editor.renderer.scrollLeft;
|
1334
|
+
pos.left += renderer.gutterWidth;
|
1335
|
+
|
1336
|
+
this.popup.show(pos, lineHeight);
|
1337
|
+
} else if (keepPopupPosition && !prefix) {
|
1338
|
+
this.detach();
|
1339
|
+
}
|
1340
|
+
};
|
1341
|
+
|
1342
|
+
this.detach = function() {
|
1343
|
+
this.editor.keyBinding.removeKeyboardHandler(this.keyboardHandler);
|
1344
|
+
this.editor.off("changeSelection", this.changeListener);
|
1345
|
+
this.editor.off("blur", this.blurListener);
|
1346
|
+
this.editor.off("mousedown", this.mousedownListener);
|
1347
|
+
this.editor.off("mousewheel", this.mousewheelListener);
|
1348
|
+
this.changeTimer.cancel();
|
1349
|
+
this.hideDocTooltip();
|
1350
|
+
|
1351
|
+
this.gatherCompletionsId += 1;
|
1352
|
+
if (this.popup && this.popup.isOpen)
|
1353
|
+
this.popup.hide();
|
1354
|
+
|
1355
|
+
if (this.base)
|
1356
|
+
this.base.detach();
|
1357
|
+
this.activated = false;
|
1358
|
+
this.completions = this.base = null;
|
1359
|
+
};
|
1360
|
+
|
1361
|
+
this.changeListener = function(e) {
|
1362
|
+
var cursor = this.editor.selection.lead;
|
1363
|
+
if (cursor.row != this.base.row || cursor.column < this.base.column) {
|
1364
|
+
this.detach();
|
1365
|
+
}
|
1366
|
+
if (this.activated)
|
1367
|
+
this.changeTimer.schedule();
|
1368
|
+
else
|
1369
|
+
this.detach();
|
1370
|
+
};
|
1371
|
+
|
1372
|
+
this.blurListener = function(e) {
|
1373
|
+
var el = document.activeElement;
|
1374
|
+
var text = this.editor.textInput.getElement();
|
1375
|
+
var fromTooltip = e.relatedTarget && e.relatedTarget == this.tooltipNode;
|
1376
|
+
var container = this.popup && this.popup.container;
|
1377
|
+
if (el != text && el.parentNode != container && !fromTooltip
|
1378
|
+
&& el != this.tooltipNode && e.relatedTarget != text
|
1379
|
+
) {
|
1380
|
+
this.detach();
|
1381
|
+
}
|
1382
|
+
};
|
1383
|
+
|
1384
|
+
this.mousedownListener = function(e) {
|
1385
|
+
this.detach();
|
1386
|
+
};
|
1387
|
+
|
1388
|
+
this.mousewheelListener = function(e) {
|
1389
|
+
this.detach();
|
1390
|
+
};
|
1391
|
+
|
1392
|
+
this.goTo = function(where) {
|
1393
|
+
var row = this.popup.getRow();
|
1394
|
+
var max = this.popup.session.getLength() - 1;
|
1395
|
+
|
1396
|
+
switch(where) {
|
1397
|
+
case "up": row = row <= 0 ? max : row - 1; break;
|
1398
|
+
case "down": row = row >= max ? -1 : row + 1; break;
|
1399
|
+
case "start": row = 0; break;
|
1400
|
+
case "end": row = max; break;
|
1401
|
+
}
|
1402
|
+
|
1403
|
+
this.popup.setRow(row);
|
1404
|
+
};
|
1405
|
+
|
1406
|
+
this.insertMatch = function(data, options) {
|
1407
|
+
if (!data)
|
1408
|
+
data = this.popup.getData(this.popup.getRow());
|
1409
|
+
if (!data)
|
1410
|
+
return false;
|
1411
|
+
|
1412
|
+
if (data.completer && data.completer.insertMatch) {
|
1413
|
+
data.completer.insertMatch(this.editor, data);
|
1414
|
+
} else {
|
1415
|
+
if (this.completions.filterText) {
|
1416
|
+
var ranges = this.editor.selection.getAllRanges();
|
1417
|
+
for (var i = 0, range; range = ranges[i]; i++) {
|
1418
|
+
range.start.column -= this.completions.filterText.length;
|
1419
|
+
this.editor.session.remove(range);
|
1420
|
+
}
|
1421
|
+
}
|
1422
|
+
if (data.snippet)
|
1423
|
+
snippetManager.insertSnippet(this.editor, data.snippet);
|
1424
|
+
else
|
1425
|
+
this.editor.execCommand("insertstring", data.value || data);
|
1426
|
+
}
|
1427
|
+
this.detach();
|
1428
|
+
};
|
1429
|
+
|
1430
|
+
|
1431
|
+
this.commands = {
|
1432
|
+
"Up": function(editor) { editor.completer.goTo("up"); },
|
1433
|
+
"Down": function(editor) { editor.completer.goTo("down"); },
|
1434
|
+
"Ctrl-Up|Ctrl-Home": function(editor) { editor.completer.goTo("start"); },
|
1435
|
+
"Ctrl-Down|Ctrl-End": function(editor) { editor.completer.goTo("end"); },
|
1436
|
+
|
1437
|
+
"Esc": function(editor) { editor.completer.detach(); },
|
1438
|
+
"Return": function(editor) { return editor.completer.insertMatch(); },
|
1439
|
+
"Shift-Return": function(editor) { editor.completer.insertMatch(null, {deleteSuffix: true}); },
|
1440
|
+
"Tab": function(editor) {
|
1441
|
+
var result = editor.completer.insertMatch();
|
1442
|
+
if (!result && !editor.tabstopManager)
|
1443
|
+
editor.completer.goTo("down");
|
1444
|
+
else
|
1445
|
+
return result;
|
1446
|
+
},
|
1447
|
+
|
1448
|
+
"PageUp": function(editor) { editor.completer.popup.gotoPageUp(); },
|
1449
|
+
"PageDown": function(editor) { editor.completer.popup.gotoPageDown(); }
|
1450
|
+
};
|
1451
|
+
|
1452
|
+
this.gatherCompletions = function(editor, callback) {
|
1453
|
+
var session = editor.getSession();
|
1454
|
+
var pos = editor.getCursorPosition();
|
1455
|
+
|
1456
|
+
var line = session.getLine(pos.row);
|
1457
|
+
var prefix = util.retrievePrecedingIdentifier(line, pos.column);
|
1458
|
+
|
1459
|
+
this.base = session.doc.createAnchor(pos.row, pos.column - prefix.length);
|
1460
|
+
this.base.$insertRight = true;
|
1461
|
+
|
1462
|
+
var matches = [];
|
1463
|
+
var total = editor.completers.length;
|
1464
|
+
editor.completers.forEach(function(completer, i) {
|
1465
|
+
completer.getCompletions(editor, session, pos, prefix, function(err, results) {
|
1466
|
+
if (!err)
|
1467
|
+
matches = matches.concat(results);
|
1468
|
+
var pos = editor.getCursorPosition();
|
1469
|
+
var line = session.getLine(pos.row);
|
1470
|
+
callback(null, {
|
1471
|
+
prefix: util.retrievePrecedingIdentifier(line, pos.column, results[0] && results[0].identifierRegex),
|
1472
|
+
matches: matches,
|
1473
|
+
finished: (--total === 0)
|
1474
|
+
});
|
1475
|
+
});
|
1476
|
+
});
|
1477
|
+
return true;
|
1478
|
+
};
|
1479
|
+
|
1480
|
+
this.showPopup = function(editor) {
|
1481
|
+
if (this.editor)
|
1482
|
+
this.detach();
|
1483
|
+
|
1484
|
+
this.activated = true;
|
1485
|
+
|
1486
|
+
this.editor = editor;
|
1487
|
+
if (editor.completer != this) {
|
1488
|
+
if (editor.completer)
|
1489
|
+
editor.completer.detach();
|
1490
|
+
editor.completer = this;
|
1491
|
+
}
|
1492
|
+
|
1493
|
+
editor.on("changeSelection", this.changeListener);
|
1494
|
+
editor.on("blur", this.blurListener);
|
1495
|
+
editor.on("mousedown", this.mousedownListener);
|
1496
|
+
editor.on("mousewheel", this.mousewheelListener);
|
1497
|
+
|
1498
|
+
this.updateCompletions();
|
1499
|
+
};
|
1500
|
+
|
1501
|
+
this.updateCompletions = function(keepPopupPosition) {
|
1502
|
+
if (keepPopupPosition && this.base && this.completions) {
|
1503
|
+
var pos = this.editor.getCursorPosition();
|
1504
|
+
var prefix = this.editor.session.getTextRange({start: this.base, end: pos});
|
1505
|
+
if (prefix == this.completions.filterText)
|
1506
|
+
return;
|
1507
|
+
this.completions.setFilter(prefix);
|
1508
|
+
if (!this.completions.filtered.length)
|
1509
|
+
return this.detach();
|
1510
|
+
if (this.completions.filtered.length == 1
|
1511
|
+
&& this.completions.filtered[0].value == prefix
|
1512
|
+
&& !this.completions.filtered[0].snippet)
|
1513
|
+
return this.detach();
|
1514
|
+
this.openPopup(this.editor, prefix, keepPopupPosition);
|
1515
|
+
return;
|
1516
|
+
}
|
1517
|
+
var _id = this.gatherCompletionsId;
|
1518
|
+
this.gatherCompletions(this.editor, function(err, results) {
|
1519
|
+
var detachIfFinished = function() {
|
1520
|
+
if (!results.finished) return;
|
1521
|
+
return this.detach();
|
1522
|
+
}.bind(this);
|
1523
|
+
|
1524
|
+
var prefix = results.prefix;
|
1525
|
+
var matches = results && results.matches;
|
1526
|
+
|
1527
|
+
if (!matches || !matches.length)
|
1528
|
+
return detachIfFinished();
|
1529
|
+
if (prefix.indexOf(results.prefix) !== 0 || _id != this.gatherCompletionsId)
|
1530
|
+
return;
|
1531
|
+
|
1532
|
+
this.completions = new FilteredList(matches);
|
1533
|
+
|
1534
|
+
if (this.exactMatch)
|
1535
|
+
this.completions.exactMatch = true;
|
1536
|
+
|
1537
|
+
this.completions.setFilter(prefix);
|
1538
|
+
var filtered = this.completions.filtered;
|
1539
|
+
if (!filtered.length)
|
1540
|
+
return detachIfFinished();
|
1541
|
+
if (filtered.length == 1 && filtered[0].value == prefix && !filtered[0].snippet)
|
1542
|
+
return detachIfFinished();
|
1543
|
+
if (this.autoInsert && filtered.length == 1 && results.finished)
|
1544
|
+
return this.insertMatch(filtered[0]);
|
1545
|
+
|
1546
|
+
this.openPopup(this.editor, prefix, keepPopupPosition);
|
1547
|
+
}.bind(this));
|
1548
|
+
};
|
1549
|
+
|
1550
|
+
this.cancelContextMenu = function() {
|
1551
|
+
this.editor.$mouseHandler.cancelContextMenu();
|
1552
|
+
};
|
1553
|
+
|
1554
|
+
this.updateDocTooltip = function() {
|
1555
|
+
var popup = this.popup;
|
1556
|
+
var all = popup.data;
|
1557
|
+
var selected = all && (all[popup.getHoveredRow()] || all[popup.getRow()]);
|
1558
|
+
var doc = null;
|
1559
|
+
if (!selected || !this.editor || !this.popup.isOpen)
|
1560
|
+
return this.hideDocTooltip();
|
1561
|
+
this.editor.completers.some(function(completer) {
|
1562
|
+
if (completer.getDocTooltip)
|
1563
|
+
doc = completer.getDocTooltip(selected);
|
1564
|
+
return doc;
|
1565
|
+
});
|
1566
|
+
if (!doc)
|
1567
|
+
doc = selected;
|
1568
|
+
|
1569
|
+
if (typeof doc == "string")
|
1570
|
+
doc = {docText: doc};
|
1571
|
+
if (!doc || !(doc.docHTML || doc.docText))
|
1572
|
+
return this.hideDocTooltip();
|
1573
|
+
this.showDocTooltip(doc);
|
1574
|
+
};
|
1575
|
+
|
1576
|
+
this.showDocTooltip = function(item) {
|
1577
|
+
if (!this.tooltipNode) {
|
1578
|
+
this.tooltipNode = dom.createElement("div");
|
1579
|
+
this.tooltipNode.className = "ace_tooltip ace_doc-tooltip";
|
1580
|
+
this.tooltipNode.style.margin = 0;
|
1581
|
+
this.tooltipNode.style.pointerEvents = "auto";
|
1582
|
+
this.tooltipNode.tabIndex = -1;
|
1583
|
+
this.tooltipNode.onblur = this.blurListener.bind(this);
|
1584
|
+
}
|
1585
|
+
|
1586
|
+
var tooltipNode = this.tooltipNode;
|
1587
|
+
if (item.docHTML) {
|
1588
|
+
tooltipNode.innerHTML = item.docHTML;
|
1589
|
+
} else if (item.docText) {
|
1590
|
+
tooltipNode.textContent = item.docText;
|
1591
|
+
}
|
1592
|
+
|
1593
|
+
if (!tooltipNode.parentNode)
|
1594
|
+
document.body.appendChild(tooltipNode);
|
1595
|
+
var popup = this.popup;
|
1596
|
+
var rect = popup.container.getBoundingClientRect();
|
1597
|
+
tooltipNode.style.top = popup.container.style.top;
|
1598
|
+
tooltipNode.style.bottom = popup.container.style.bottom;
|
1599
|
+
|
1600
|
+
if (window.innerWidth - rect.right < 320) {
|
1601
|
+
tooltipNode.style.right = window.innerWidth - rect.left + "px";
|
1602
|
+
tooltipNode.style.left = "";
|
1603
|
+
} else {
|
1604
|
+
tooltipNode.style.left = (rect.right + 1) + "px";
|
1605
|
+
tooltipNode.style.right = "";
|
1606
|
+
}
|
1607
|
+
tooltipNode.style.display = "block";
|
1608
|
+
};
|
1609
|
+
|
1610
|
+
this.hideDocTooltip = function() {
|
1611
|
+
this.tooltipTimer.cancel();
|
1612
|
+
if (!this.tooltipNode) return;
|
1613
|
+
var el = this.tooltipNode;
|
1614
|
+
if (!this.editor.isFocused() && document.activeElement == el)
|
1615
|
+
this.editor.focus();
|
1616
|
+
this.tooltipNode = null;
|
1617
|
+
if (el.parentNode)
|
1618
|
+
el.parentNode.removeChild(el);
|
1619
|
+
};
|
1620
|
+
|
1621
|
+
}).call(Autocomplete.prototype);
|
1622
|
+
|
1623
|
+
Autocomplete.startCommand = {
|
1624
|
+
name: "startAutocomplete",
|
1625
|
+
exec: function(editor) {
|
1626
|
+
if (!editor.completer)
|
1627
|
+
editor.completer = new Autocomplete();
|
1628
|
+
editor.completer.autoInsert = false;
|
1629
|
+
editor.completer.autoSelect = true;
|
1630
|
+
editor.completer.showPopup(editor);
|
1631
|
+
editor.completer.cancelContextMenu();
|
1632
|
+
},
|
1633
|
+
bindKey: "Ctrl-Space|Ctrl-Shift-Space|Alt-Space"
|
1634
|
+
};
|
1635
|
+
|
1636
|
+
var FilteredList = function(array, filterText) {
|
1637
|
+
this.all = array;
|
1638
|
+
this.filtered = array;
|
1639
|
+
this.filterText = filterText || "";
|
1640
|
+
this.exactMatch = false;
|
1641
|
+
};
|
1642
|
+
(function(){
|
1643
|
+
this.setFilter = function(str) {
|
1644
|
+
if (str.length > this.filterText && str.lastIndexOf(this.filterText, 0) === 0)
|
1645
|
+
var matches = this.filtered;
|
1646
|
+
else
|
1647
|
+
var matches = this.all;
|
1648
|
+
|
1649
|
+
this.filterText = str;
|
1650
|
+
matches = this.filterCompletions(matches, this.filterText);
|
1651
|
+
matches = matches.sort(function(a, b) {
|
1652
|
+
return b.exactMatch - a.exactMatch || b.score - a.score;
|
1653
|
+
});
|
1654
|
+
var prev = null;
|
1655
|
+
matches = matches.filter(function(item){
|
1656
|
+
var caption = item.snippet || item.caption || item.value;
|
1657
|
+
if (caption === prev) return false;
|
1658
|
+
prev = caption;
|
1659
|
+
return true;
|
1660
|
+
});
|
1661
|
+
|
1662
|
+
this.filtered = matches;
|
1663
|
+
};
|
1664
|
+
this.filterCompletions = function(items, needle) {
|
1665
|
+
var results = [];
|
1666
|
+
var upper = needle.toUpperCase();
|
1667
|
+
var lower = needle.toLowerCase();
|
1668
|
+
loop: for (var i = 0, item; item = items[i]; i++) {
|
1669
|
+
var caption = item.value || item.caption || item.snippet;
|
1670
|
+
if (!caption) continue;
|
1671
|
+
var lastIndex = -1;
|
1672
|
+
var matchMask = 0;
|
1673
|
+
var penalty = 0;
|
1674
|
+
var index, distance;
|
1675
|
+
|
1676
|
+
if (this.exactMatch) {
|
1677
|
+
if (needle !== caption.substr(0, needle.length))
|
1678
|
+
continue loop;
|
1679
|
+
}else{
|
1680
|
+
for (var j = 0; j < needle.length; j++) {
|
1681
|
+
var i1 = caption.indexOf(lower[j], lastIndex + 1);
|
1682
|
+
var i2 = caption.indexOf(upper[j], lastIndex + 1);
|
1683
|
+
index = (i1 >= 0) ? ((i2 < 0 || i1 < i2) ? i1 : i2) : i2;
|
1684
|
+
if (index < 0)
|
1685
|
+
continue loop;
|
1686
|
+
distance = index - lastIndex - 1;
|
1687
|
+
if (distance > 0) {
|
1688
|
+
if (lastIndex === -1)
|
1689
|
+
penalty += 10;
|
1690
|
+
penalty += distance;
|
1691
|
+
}
|
1692
|
+
matchMask = matchMask | (1 << index);
|
1693
|
+
lastIndex = index;
|
1694
|
+
}
|
1695
|
+
}
|
1696
|
+
item.matchMask = matchMask;
|
1697
|
+
item.exactMatch = penalty ? 0 : 1;
|
1698
|
+
item.score = (item.score || 0) - penalty;
|
1699
|
+
results.push(item);
|
1700
|
+
}
|
1701
|
+
return results;
|
1702
|
+
};
|
1703
|
+
}).call(FilteredList.prototype);
|
1704
|
+
|
1705
|
+
exports.Autocomplete = Autocomplete;
|
1706
|
+
exports.FilteredList = FilteredList;
|
1707
|
+
|
1708
|
+
});
|
1709
|
+
|
1710
|
+
define("ace/autocomplete/text_completer",["require","exports","module","ace/range"], function(require, exports, module) {
|
1711
|
+
var Range = require("../range").Range;
|
1712
|
+
|
1713
|
+
var splitRegex = /[^a-zA-Z_0-9\$\-\u00C0-\u1FFF\u2C00-\uD7FF\w]+/;
|
1714
|
+
|
1715
|
+
function getWordIndex(doc, pos) {
|
1716
|
+
var textBefore = doc.getTextRange(Range.fromPoints({row: 0, column:0}, pos));
|
1717
|
+
return textBefore.split(splitRegex).length - 1;
|
1718
|
+
}
|
1719
|
+
function wordDistance(doc, pos) {
|
1720
|
+
var prefixPos = getWordIndex(doc, pos);
|
1721
|
+
var words = doc.getValue().split(splitRegex);
|
1722
|
+
var wordScores = Object.create(null);
|
1723
|
+
|
1724
|
+
var currentWord = words[prefixPos];
|
1725
|
+
|
1726
|
+
words.forEach(function(word, idx) {
|
1727
|
+
if (!word || word === currentWord) return;
|
1728
|
+
|
1729
|
+
var distance = Math.abs(prefixPos - idx);
|
1730
|
+
var score = words.length - distance;
|
1731
|
+
if (wordScores[word]) {
|
1732
|
+
wordScores[word] = Math.max(score, wordScores[word]);
|
1733
|
+
} else {
|
1734
|
+
wordScores[word] = score;
|
1735
|
+
}
|
1736
|
+
});
|
1737
|
+
return wordScores;
|
1738
|
+
}
|
1739
|
+
|
1740
|
+
exports.getCompletions = function(editor, session, pos, prefix, callback) {
|
1741
|
+
var wordScore = wordDistance(session, pos, prefix);
|
1742
|
+
var wordList = Object.keys(wordScore);
|
1743
|
+
callback(null, wordList.map(function(word) {
|
1744
|
+
return {
|
1745
|
+
caption: word,
|
1746
|
+
value: word,
|
1747
|
+
score: wordScore[word],
|
1748
|
+
meta: "local"
|
1749
|
+
};
|
1750
|
+
}));
|
1751
|
+
};
|
1752
|
+
});
|
1753
|
+
|
1754
|
+
define("ace/ext/language_tools",["require","exports","module","ace/snippets","ace/autocomplete","ace/config","ace/lib/lang","ace/autocomplete/util","ace/autocomplete/text_completer","ace/editor","ace/config"], function(require, exports, module) {
|
1755
|
+
"use strict";
|
1756
|
+
|
1757
|
+
var snippetManager = require("../snippets").snippetManager;
|
1758
|
+
var Autocomplete = require("../autocomplete").Autocomplete;
|
1759
|
+
var config = require("../config");
|
1760
|
+
var lang = require("../lib/lang");
|
1761
|
+
var util = require("../autocomplete/util");
|
1762
|
+
|
1763
|
+
var textCompleter = require("../autocomplete/text_completer");
|
1764
|
+
var keyWordCompleter = {
|
1765
|
+
getCompletions: function(editor, session, pos, prefix, callback) {
|
1766
|
+
if (session.$mode.completer) {
|
1767
|
+
return session.$mode.completer.getCompletions(editor, session, pos, prefix, callback);
|
1768
|
+
}
|
1769
|
+
var state = editor.session.getState(pos.row);
|
1770
|
+
var completions = session.$mode.getCompletions(state, session, pos, prefix);
|
1771
|
+
callback(null, completions);
|
1772
|
+
}
|
1773
|
+
};
|
1774
|
+
|
1775
|
+
var snippetCompleter = {
|
1776
|
+
getCompletions: function(editor, session, pos, prefix, callback) {
|
1777
|
+
var snippetMap = snippetManager.snippetMap;
|
1778
|
+
var completions = [];
|
1779
|
+
snippetManager.getActiveScopes(editor).forEach(function(scope) {
|
1780
|
+
var snippets = snippetMap[scope] || [];
|
1781
|
+
for (var i = snippets.length; i--;) {
|
1782
|
+
var s = snippets[i];
|
1783
|
+
var caption = s.name || s.tabTrigger;
|
1784
|
+
if (!caption)
|
1785
|
+
continue;
|
1786
|
+
completions.push({
|
1787
|
+
caption: caption,
|
1788
|
+
snippet: s.content,
|
1789
|
+
meta: s.tabTrigger && !s.name ? s.tabTrigger + "\u21E5 " : "snippet",
|
1790
|
+
type: "snippet"
|
1791
|
+
});
|
1792
|
+
}
|
1793
|
+
}, this);
|
1794
|
+
callback(null, completions);
|
1795
|
+
},
|
1796
|
+
getDocTooltip: function(item) {
|
1797
|
+
if (item.type == "snippet" && !item.docHTML) {
|
1798
|
+
item.docHTML = [
|
1799
|
+
"<b>", lang.escapeHTML(item.caption), "</b>", "<hr></hr>",
|
1800
|
+
lang.escapeHTML(item.snippet)
|
1801
|
+
].join("");
|
1802
|
+
}
|
1803
|
+
}
|
1804
|
+
};
|
1805
|
+
|
1806
|
+
var completers = [snippetCompleter, textCompleter, keyWordCompleter];
|
1807
|
+
exports.setCompleters = function(val) {
|
1808
|
+
completers = val || [];
|
1809
|
+
};
|
1810
|
+
exports.addCompleter = function(completer) {
|
1811
|
+
completers.push(completer);
|
1812
|
+
};
|
1813
|
+
exports.textCompleter = textCompleter;
|
1814
|
+
exports.keyWordCompleter = keyWordCompleter;
|
1815
|
+
exports.snippetCompleter = snippetCompleter;
|
1816
|
+
|
1817
|
+
var expandSnippet = {
|
1818
|
+
name: "expandSnippet",
|
1819
|
+
exec: function(editor) {
|
1820
|
+
return snippetManager.expandWithTab(editor);
|
1821
|
+
},
|
1822
|
+
bindKey: "Tab"
|
1823
|
+
};
|
1824
|
+
|
1825
|
+
var onChangeMode = function(e, editor) {
|
1826
|
+
loadSnippetsForMode(editor.session.$mode);
|
1827
|
+
};
|
1828
|
+
|
1829
|
+
var loadSnippetsForMode = function(mode) {
|
1830
|
+
var id = mode.$id;
|
1831
|
+
if (!snippetManager.files)
|
1832
|
+
snippetManager.files = {};
|
1833
|
+
loadSnippetFile(id);
|
1834
|
+
if (mode.modes)
|
1835
|
+
mode.modes.forEach(loadSnippetsForMode);
|
1836
|
+
};
|
1837
|
+
|
1838
|
+
var loadSnippetFile = function(id) {
|
1839
|
+
if (!id || snippetManager.files[id])
|
1840
|
+
return;
|
1841
|
+
var snippetFilePath = id.replace("mode", "snippets");
|
1842
|
+
snippetManager.files[id] = {};
|
1843
|
+
config.loadModule(snippetFilePath, function(m) {
|
1844
|
+
if (m) {
|
1845
|
+
snippetManager.files[id] = m;
|
1846
|
+
if (!m.snippets && m.snippetText)
|
1847
|
+
m.snippets = snippetManager.parseSnippetFile(m.snippetText);
|
1848
|
+
snippetManager.register(m.snippets || [], m.scope);
|
1849
|
+
if (m.includeScopes) {
|
1850
|
+
snippetManager.snippetMap[m.scope].includeScopes = m.includeScopes;
|
1851
|
+
m.includeScopes.forEach(function(x) {
|
1852
|
+
loadSnippetFile("ace/mode/" + x);
|
1853
|
+
});
|
1854
|
+
}
|
1855
|
+
}
|
1856
|
+
});
|
1857
|
+
};
|
1858
|
+
|
1859
|
+
function getCompletionPrefix(editor) {
|
1860
|
+
var pos = editor.getCursorPosition();
|
1861
|
+
var line = editor.session.getLine(pos.row);
|
1862
|
+
var prefix;
|
1863
|
+
editor.completers.forEach(function(completer) {
|
1864
|
+
if (completer.identifierRegexps) {
|
1865
|
+
completer.identifierRegexps.forEach(function(identifierRegex) {
|
1866
|
+
if (!prefix && identifierRegex)
|
1867
|
+
prefix = util.retrievePrecedingIdentifier(line, pos.column, identifierRegex);
|
1868
|
+
});
|
1869
|
+
}
|
1870
|
+
});
|
1871
|
+
return prefix || util.retrievePrecedingIdentifier(line, pos.column);
|
1872
|
+
}
|
1873
|
+
|
1874
|
+
var doLiveAutocomplete = function(e) {
|
1875
|
+
var editor = e.editor;
|
1876
|
+
var hasCompleter = editor.completer && editor.completer.activated;
|
1877
|
+
if (e.command.name === "backspace") {
|
1878
|
+
if (hasCompleter && !getCompletionPrefix(editor))
|
1879
|
+
editor.completer.detach();
|
1880
|
+
}
|
1881
|
+
else if (e.command.name === "insertstring") {
|
1882
|
+
var prefix = getCompletionPrefix(editor);
|
1883
|
+
if (prefix && !hasCompleter) {
|
1884
|
+
if (!editor.completer) {
|
1885
|
+
editor.completer = new Autocomplete();
|
1886
|
+
}
|
1887
|
+
editor.completer.autoInsert = false;
|
1888
|
+
editor.completer.showPopup(editor);
|
1889
|
+
}
|
1890
|
+
}
|
1891
|
+
};
|
1892
|
+
|
1893
|
+
var Editor = require("../editor").Editor;
|
1894
|
+
require("../config").defineOptions(Editor.prototype, "editor", {
|
1895
|
+
enableBasicAutocompletion: {
|
1896
|
+
set: function(val) {
|
1897
|
+
if (val) {
|
1898
|
+
if (!this.completers)
|
1899
|
+
this.completers = Array.isArray(val)? val: completers;
|
1900
|
+
this.commands.addCommand(Autocomplete.startCommand);
|
1901
|
+
} else {
|
1902
|
+
this.commands.removeCommand(Autocomplete.startCommand);
|
1903
|
+
}
|
1904
|
+
},
|
1905
|
+
value: false
|
1906
|
+
},
|
1907
|
+
enableLiveAutocompletion: {
|
1908
|
+
set: function(val) {
|
1909
|
+
if (val) {
|
1910
|
+
if (!this.completers)
|
1911
|
+
this.completers = Array.isArray(val)? val: completers;
|
1912
|
+
this.commands.on('afterExec', doLiveAutocomplete);
|
1913
|
+
} else {
|
1914
|
+
this.commands.removeListener('afterExec', doLiveAutocomplete);
|
1915
|
+
}
|
1916
|
+
},
|
1917
|
+
value: false
|
1918
|
+
},
|
1919
|
+
enableSnippets: {
|
1920
|
+
set: function(val) {
|
1921
|
+
if (val) {
|
1922
|
+
this.commands.addCommand(expandSnippet);
|
1923
|
+
this.on("changeMode", onChangeMode);
|
1924
|
+
onChangeMode(null, this);
|
1925
|
+
} else {
|
1926
|
+
this.commands.removeCommand(expandSnippet);
|
1927
|
+
this.off("changeMode", onChangeMode);
|
1928
|
+
}
|
1929
|
+
},
|
1930
|
+
value: false
|
1931
|
+
}
|
1932
|
+
});
|
1933
|
+
});
|
1934
|
+
(function() {
|
1935
|
+
window.require(["ace/ext/language_tools"], function() {});
|
1936
|
+
})();
|
1937
|
+
|