PixelForce_ETS 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.codeclimate.yml +4 -0
- data/.gitattributes +2 -0
- data/.github/issue_template.md +22 -0
- data/.github/pull_request_template.md +6 -0
- data/.gitignore +21 -0
- data/.rubocop.yml +100 -0
- data/.travis.yml +43 -0
- data/CONTRIBUTING.md +35 -0
- data/Gemfile +29 -0
- data/LICENSE +20 -0
- data/README.md +116 -0
- data/Rakefile +5 -0
- data/app/assets/fonts/comfy/admin/cms/lib/redactor-font.eot +0 -0
- data/app/assets/javascripts/comfy/admin/cms/application.js +39 -0
- data/app/assets/javascripts/comfy/admin/cms/base.js +46 -0
- data/app/assets/javascripts/comfy/admin/cms/categories.js +17 -0
- data/app/assets/javascripts/comfy/admin/cms/codemirror.js +31 -0
- data/app/assets/javascripts/comfy/admin/cms/custom.js +1 -0
- data/app/assets/javascripts/comfy/admin/cms/diff.js +10 -0
- data/app/assets/javascripts/comfy/admin/cms/file_link.js +67 -0
- data/app/assets/javascripts/comfy/admin/cms/file_upload.js +194 -0
- data/app/assets/javascripts/comfy/admin/cms/files_modal.js +40 -0
- data/app/assets/javascripts/comfy/admin/cms/page_fragments.js +22 -0
- data/app/assets/javascripts/comfy/admin/cms/slugify.js +34 -0
- data/app/assets/javascripts/comfy/admin/cms/sortable_list.js +40 -0
- data/app/assets/javascripts/comfy/admin/cms/timepicker.js +30 -0
- data/app/assets/javascripts/comfy/admin/cms/wysiwyg.js +65 -0
- data/app/assets/javascripts/comfy/vendor/Moxie.swf +0 -0
- data/app/assets/javascripts/comfy/vendor/Moxie.xap +0 -0
- data/app/assets/javascripts/comfy/vendor/bootstrap.bundle.min.js +7 -0
- data/app/assets/javascripts/comfy/vendor/bootstrap.bundle.min.js.map +1 -0
- data/app/assets/javascripts/comfy/vendor/codemirror.js +9653 -0
- data/app/assets/javascripts/comfy/vendor/codemirror/addon/edit/closetag.js +169 -0
- data/app/assets/javascripts/comfy/vendor/codemirror/mode/css/css.js +832 -0
- data/app/assets/javascripts/comfy/vendor/codemirror/mode/htmlmixed/htmlmixed.js +152 -0
- data/app/assets/javascripts/comfy/vendor/codemirror/mode/javascript/javascript.js +875 -0
- data/app/assets/javascripts/comfy/vendor/codemirror/mode/markdown/markdown.js +861 -0
- data/app/assets/javascripts/comfy/vendor/codemirror/mode/xml/xml.js +394 -0
- data/app/assets/javascripts/comfy/vendor/diff/diff_match_patch.min.js +49 -0
- data/app/assets/javascripts/comfy/vendor/diff/pretty_text_diff.js +76 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr.min.js +2 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/ar.js +52 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/bg.js +65 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/bn.js +65 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/ca.js +83 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/cs.js +70 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/cy.js +92 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/da.js +71 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/de.js +70 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/default.js +80 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/eo.js +73 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/es.js +69 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/et.js +73 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/fa.js +68 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/fi.js +69 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/fr.js +75 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/gr.js +74 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/he.js +57 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/hi.js +65 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/hr.js +66 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/hu.js +72 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/id.js +61 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/it.js +70 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/ja.js +57 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/ko.js +60 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/lt.js +72 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/lv.js +67 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/mk.js +69 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/mn.js +67 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/ms.js +68 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/my.js +69 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/nl.js +75 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/no.js +73 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/pa.js +65 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/pl.js +68 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/pt-BR.js +66 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/pt.js +66 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/ro.js +69 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/ru.js +66 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/si.js +65 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/sk.js +70 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/sl.js +70 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/sq.js +65 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/sr.js +69 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/sv.js +70 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/th.js +72 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/tr.js +66 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/uk.js +66 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/vn.js +66 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/zh-CN.js +61 -0
- data/app/assets/javascripts/comfy/vendor/flatpickr/i18n/zh-TW.js +61 -0
- data/app/assets/javascripts/comfy/vendor/fontawesome.js +5 -0
- data/app/assets/javascripts/comfy/vendor/moxie.min.js +16 -0
- data/app/assets/javascripts/comfy/vendor/plupload.dev.js +2497 -0
- data/app/assets/javascripts/comfy/vendor/redactor.js +9561 -0
- data/app/assets/javascripts/comfy/vendor/redactor/definedlinks.js +53 -0
- data/app/assets/javascripts/comfy/vendor/redactor/filemanager.js +64 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/ar.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/az.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/ba.js +79 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/bg.js +77 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/by.js +77 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/ca.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/cs.js +87 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/da.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/de.js +80 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/el.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/en.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/eo.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/es.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/es_AR.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/fa.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/fi.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/fr.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/ge.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/gr.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/he.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/hr.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/hu.js +77 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/id.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/it.js +78 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/ja.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/kn.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/ko.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/lt.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/lv.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/mk.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/nb.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/nl.js +80 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/pl.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/pt-BR.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/pt.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/ro.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/ru.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/sk.js +76 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/sl.js +79 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/sq.js +79 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/sr-CIR.js +79 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/sr-LAT.js +79 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/sv.js +74 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/th.js +74 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/tr.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/ua.js +77 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/uk.js +77 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/vi.js +74 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/zh-CN.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/i18n/zh-TW.js +75 -0
- data/app/assets/javascripts/comfy/vendor/redactor/imagemanager.js +57 -0
- data/app/assets/javascripts/comfy/vendor/redactor/table.js +337 -0
- data/app/assets/javascripts/comfy/vendor/redactor/video.js +77 -0
- data/app/assets/javascripts/comfy/vendor/sortable.min.js +5 -0
- data/app/assets/stylesheets/comfy/admin/cms/application.sass +11 -0
- data/app/assets/stylesheets/comfy/admin/cms/base.sass +256 -0
- data/app/assets/stylesheets/comfy/admin/cms/codemirror_overrides.sass +19 -0
- data/app/assets/stylesheets/comfy/admin/cms/custom.sass +1 -0
- data/app/assets/stylesheets/comfy/admin/cms/redactor_overrides.sass +22 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_alert.scss +51 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_badge.scss +54 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_breadcrumb.scss +41 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_button-group.scss +163 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_buttons.scss +137 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_card.scss +289 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_carousel.scss +197 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_close.scss +41 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_code.scss +48 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_custom-forms.scss +507 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_dropdown.scss +191 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_forms.scss +330 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_functions.scss +86 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_grid.scss +52 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_images.scss +42 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_input-group.scss +193 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_jumbotron.scss +17 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_list-group.scss +149 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_media.scss +8 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_mixins.scss +47 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_modal.scss +229 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_nav.scss +120 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_navbar.scss +294 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_pagination.scss +73 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_popover.scss +171 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_print.scss +141 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_progress.scss +43 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_reboot.scss +483 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_root.scss +19 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_spinners.scss +55 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_tables.scss +185 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_toasts.scss +44 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_tooltip.scss +115 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_transitions.scss +20 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_type.scss +125 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_utilities.scss +17 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/_variables.scss +1123 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/bootstrap-grid.scss +29 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/bootstrap-reboot.scss +12 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/bootstrap.scss +44 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_alert.scss +13 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_background-variant.scss +21 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_badge.scss +17 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_border-radius.scss +63 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_box-shadow.scss +20 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_breakpoints.scss +123 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_buttons.scss +107 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_caret.scss +62 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_clearfix.scss +7 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_deprecate.scss +10 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_float.scss +14 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_forms.scss +192 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_gradients.scss +45 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_grid-framework.scss +66 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_grid.scss +51 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_hover.scss +37 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_image.scss +36 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_list-group.scss +21 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_lists.scss +7 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_nav-divider.scss +10 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_pagination.scss +22 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_reset-text.scss +17 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_resize.scss +6 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_screen-reader.scss +33 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_size.scss +7 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_table-row.scss +39 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_text-emphasis.scss +16 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_text-hide.scss +11 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_text-truncate.scss +8 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_transition.scss +16 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_visibility.scss +8 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_align.scss +8 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_background.scss +19 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_borders.scss +75 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_clearfix.scss +3 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_display.scss +26 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_embed.scss +39 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_flex.scss +51 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_float.scss +11 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_overflow.scss +5 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_position.scss +32 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_screenreaders.scss +11 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_shadows.scss +6 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_sizing.scss +20 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_spacing.scss +73 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_stretched-link.scss +19 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_text.scss +72 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/utilities/_visibility.scss +13 -0
- data/app/assets/stylesheets/comfy/vendor/bootstrap/vendor/_rfs.scss +204 -0
- data/app/assets/stylesheets/comfy/vendor/codemirror.css +346 -0
- data/app/assets/stylesheets/comfy/vendor/flatpickr.min.css +13 -0
- data/app/assets/stylesheets/comfy/vendor/fontawesome.css +343 -0
- data/app/assets/stylesheets/comfy/vendor/redactor.css +948 -0
- data/app/controllers/application_controller.rb +7 -0
- data/app/controllers/comfy/admin/base_controller.rb +22 -0
- data/app/controllers/comfy/admin/cms/base_controller.rb +55 -0
- data/app/controllers/comfy/admin/cms/categories_controller.rb +40 -0
- data/app/controllers/comfy/admin/cms/files_controller.rb +142 -0
- data/app/controllers/comfy/admin/cms/layouts_controller.rb +69 -0
- data/app/controllers/comfy/admin/cms/pages_controller.rb +156 -0
- data/app/controllers/comfy/admin/cms/revisions/base_controller.rb +50 -0
- data/app/controllers/comfy/admin/cms/revisions/layout_controller.rb +18 -0
- data/app/controllers/comfy/admin/cms/revisions/page_controller.rb +30 -0
- data/app/controllers/comfy/admin/cms/revisions/snippet_controller.rb +18 -0
- data/app/controllers/comfy/admin/cms/revisions/translation_controller.rb +31 -0
- data/app/controllers/comfy/admin/cms/sites_controller.rb +69 -0
- data/app/controllers/comfy/admin/cms/snippets_controller.rb +66 -0
- data/app/controllers/comfy/admin/cms/translations_controller.rb +107 -0
- data/app/controllers/comfy/cms/assets_controller.rb +40 -0
- data/app/controllers/comfy/cms/base_controller.rb +33 -0
- data/app/controllers/comfy/cms/content_controller.rb +87 -0
- data/app/controllers/concerns/comfy/paginate.rb +16 -0
- data/app/controllers/concerns/comfy/reorder_action.rb +19 -0
- data/app/helpers/comfy/admin/cms_helper.rb +49 -0
- data/app/helpers/comfy/cms_helper.rb +73 -0
- data/app/models/comfy/cms/categorization.rb +16 -0
- data/app/models/comfy/cms/category.rb +24 -0
- data/app/models/comfy/cms/file.rb +57 -0
- data/app/models/comfy/cms/fragment.rb +59 -0
- data/app/models/comfy/cms/layout.rb +113 -0
- data/app/models/comfy/cms/page.rb +169 -0
- data/app/models/comfy/cms/revision.rb +12 -0
- data/app/models/comfy/cms/site.rb +94 -0
- data/app/models/comfy/cms/snippet.rb +45 -0
- data/app/models/comfy/cms/translation.rb +43 -0
- data/app/models/concerns/comfy/cms/with_categories.rb +53 -0
- data/app/models/concerns/comfy/cms/with_fragments.rb +125 -0
- data/app/views/comfy/admin/cms/categories/_categories.html.haml +4 -0
- data/app/views/comfy/admin/cms/categories/_edit.html.haml +7 -0
- data/app/views/comfy/admin/cms/categories/_form.html.haml +5 -0
- data/app/views/comfy/admin/cms/categories/_index.html.haml +28 -0
- data/app/views/comfy/admin/cms/categories/_show.html.haml +15 -0
- data/app/views/comfy/admin/cms/categories/create.js.erb +7 -0
- data/app/views/comfy/admin/cms/categories/destroy.js.erb +8 -0
- data/app/views/comfy/admin/cms/categories/edit.js.erb +3 -0
- data/app/views/comfy/admin/cms/categories/update.js.erb +6 -0
- data/app/views/comfy/admin/cms/files/_file.html.haml +31 -0
- data/app/views/comfy/admin/cms/files/_form.html.haml +26 -0
- data/app/views/comfy/admin/cms/files/_modal.html.haml +3 -0
- data/app/views/comfy/admin/cms/files/destroy.js.erb +4 -0
- data/app/views/comfy/admin/cms/files/edit.html.haml +5 -0
- data/app/views/comfy/admin/cms/files/index.html.haml +29 -0
- data/app/views/comfy/admin/cms/files/new.html.haml +5 -0
- data/app/views/comfy/admin/cms/fragments/_form_fragment_attachments.html.haml +23 -0
- data/app/views/comfy/admin/cms/fragments/_form_fragments.html.haml +38 -0
- data/app/views/comfy/admin/cms/layouts/_form.html.haml +20 -0
- data/app/views/comfy/admin/cms/layouts/_index_branch.html.haml +26 -0
- data/app/views/comfy/admin/cms/layouts/edit.html.haml +9 -0
- data/app/views/comfy/admin/cms/layouts/index.html.haml +10 -0
- data/app/views/comfy/admin/cms/layouts/new.html.haml +5 -0
- data/app/views/comfy/admin/cms/pages/_form.html.haml +31 -0
- data/app/views/comfy/admin/cms/pages/_index_branch.html.haml +44 -0
- data/app/views/comfy/admin/cms/pages/edit.html.haml +10 -0
- data/app/views/comfy/admin/cms/pages/index.html.haml +13 -0
- data/app/views/comfy/admin/cms/pages/new.html.haml +5 -0
- data/app/views/comfy/admin/cms/pages/toggle_branch.js.erb +13 -0
- data/app/views/comfy/admin/cms/revisions/_sidebar.html.haml +2 -0
- data/app/views/comfy/admin/cms/revisions/show.html.haml +36 -0
- data/app/views/comfy/admin/cms/sites/_form.html.haml +15 -0
- data/app/views/comfy/admin/cms/sites/edit.html.haml +5 -0
- data/app/views/comfy/admin/cms/sites/index.html.haml +28 -0
- data/app/views/comfy/admin/cms/sites/new.html.haml +5 -0
- data/app/views/comfy/admin/cms/snippets/_form.html.haml +13 -0
- data/app/views/comfy/admin/cms/snippets/edit.html.haml +9 -0
- data/app/views/comfy/admin/cms/snippets/index.html.haml +33 -0
- data/app/views/comfy/admin/cms/snippets/new.html.haml +5 -0
- data/app/views/comfy/admin/cms/translations/_form.html.haml +20 -0
- data/app/views/comfy/admin/cms/translations/_sidebar.html.haml +19 -0
- data/app/views/comfy/admin/cms/translations/edit.html.haml +10 -0
- data/app/views/comfy/admin/cms/translations/new.html.haml +5 -0
- data/app/views/kaminari/comfy/_first_page.html.haml +3 -0
- data/app/views/kaminari/comfy/_gap.html.haml +2 -0
- data/app/views/kaminari/comfy/_last_page.html.haml +3 -0
- data/app/views/kaminari/comfy/_next_page.html.haml +2 -0
- data/app/views/kaminari/comfy/_page.html.haml +2 -0
- data/app/views/kaminari/comfy/_paginator.html.haml +11 -0
- data/app/views/kaminari/comfy/_prev_page.html.haml +2 -0
- data/app/views/layouts/comfy/admin/cms.html.haml +4 -0
- data/app/views/layouts/comfy/admin/cms/_body.html.haml +14 -0
- data/app/views/layouts/comfy/admin/cms/_flash.html.haml +4 -0
- data/app/views/layouts/comfy/admin/cms/_footer_js.html.haml +6 -0
- data/app/views/layouts/comfy/admin/cms/_head.html.haml +19 -0
- data/app/views/layouts/comfy/admin/cms/_left.html.haml +39 -0
- data/app/views/layouts/comfy/admin/cms/_right.html.haml +5 -0
- data/bin/bundle +3 -0
- data/bin/rails +4 -0
- data/bin/rake +4 -0
- data/bin/setup +36 -0
- data/bin/update +31 -0
- data/bin/yarn +11 -0
- data/comfortable_mexican_sofa.gemspec +34 -0
- data/config.ru +6 -0
- data/config/application.rb +39 -0
- data/config/boot.rb +7 -0
- data/config/cms_routes.rb +8 -0
- data/config/database.yml +11 -0
- data/config/environment.rb +7 -0
- data/config/environments/development.rb +64 -0
- data/config/environments/test.rb +55 -0
- data/config/initializers/comfortable_mexican_sofa.rb +122 -0
- data/config/locales/ca.yml +263 -0
- data/config/locales/cs.yml +263 -0
- data/config/locales/da.yml +263 -0
- data/config/locales/de.yml +263 -0
- data/config/locales/en.yml +263 -0
- data/config/locales/es.yml +263 -0
- data/config/locales/fi.yml +263 -0
- data/config/locales/fr.yml +263 -0
- data/config/locales/gr.yml +263 -0
- data/config/locales/hr.yml +263 -0
- data/config/locales/it.yml +263 -0
- data/config/locales/ja.yml +263 -0
- data/config/locales/nb.yml +263 -0
- data/config/locales/nl.yml +263 -0
- data/config/locales/pl.yml +263 -0
- data/config/locales/pt-BR.yml +263 -0
- data/config/locales/ru.yml +263 -0
- data/config/locales/sk.yml +263 -0
- data/config/locales/sv.yml +263 -0
- data/config/locales/tr.yml +263 -0
- data/config/locales/uk.yml +263 -0
- data/config/locales/zh-CN.yml +263 -0
- data/config/locales/zh-TW.yml +263 -0
- data/config/storage.yml +35 -0
- data/db/cms_seeds/sample-site/files/_default.jpg.yml +5 -0
- data/db/cms_seeds/sample-site/files/default.jpg +0 -0
- data/db/cms_seeds/sample-site/layouts/default/content.html +16 -0
- data/db/cms_seeds/sample-site/layouts/default/nested/content.html +14 -0
- data/db/cms_seeds/sample-site/pages/index/child_a/content.html +7 -0
- data/db/cms_seeds/sample-site/pages/index/child_b/content.html +6 -0
- data/db/cms_seeds/sample-site/pages/index/cms logo.png +0 -0
- data/db/cms_seeds/sample-site/pages/index/content.es.html +6 -0
- data/db/cms_seeds/sample-site/pages/index/content.fr.html +6 -0
- data/db/cms_seeds/sample-site/pages/index/content.html +25 -0
- data/db/cms_seeds/sample-site/pages/index/footer.png +0 -0
- data/db/cms_seeds/sample-site/pages/index/header.png +0 -0
- data/db/cms_seeds/sample-site/snippets/default.html +8 -0
- data/db/migrate/00_create_active_storage_tables.active_storage.rb +26 -0
- data/db/migrate/01_create_cms.rb +142 -0
- data/lib/comfortable_mexican_sofa.rb +60 -0
- data/lib/comfortable_mexican_sofa/access_control/admin_authentication.rb +24 -0
- data/lib/comfortable_mexican_sofa/access_control/admin_authorization.rb +12 -0
- data/lib/comfortable_mexican_sofa/access_control/public_authentication.rb +12 -0
- data/lib/comfortable_mexican_sofa/access_control/public_authorization.rb +12 -0
- data/lib/comfortable_mexican_sofa/configuration.rb +139 -0
- data/lib/comfortable_mexican_sofa/content.rb +31 -0
- data/lib/comfortable_mexican_sofa/content/block.rb +14 -0
- data/lib/comfortable_mexican_sofa/content/params_parser.rb +149 -0
- data/lib/comfortable_mexican_sofa/content/renderer.rb +149 -0
- data/lib/comfortable_mexican_sofa/content/tag.rb +50 -0
- data/lib/comfortable_mexican_sofa/content/tags/asset.rb +59 -0
- data/lib/comfortable_mexican_sofa/content/tags/checkbox.rb +29 -0
- data/lib/comfortable_mexican_sofa/content/tags/date.rb +21 -0
- data/lib/comfortable_mexican_sofa/content/tags/datetime.rb +44 -0
- data/lib/comfortable_mexican_sofa/content/tags/file.rb +72 -0
- data/lib/comfortable_mexican_sofa/content/tags/file_link.rb +63 -0
- data/lib/comfortable_mexican_sofa/content/tags/files.rb +43 -0
- data/lib/comfortable_mexican_sofa/content/tags/fragment.rb +66 -0
- data/lib/comfortable_mexican_sofa/content/tags/helper.rb +55 -0
- data/lib/comfortable_mexican_sofa/content/tags/markdown.rb +24 -0
- data/lib/comfortable_mexican_sofa/content/tags/mixins/file_content.rb +43 -0
- data/lib/comfortable_mexican_sofa/content/tags/number.rb +20 -0
- data/lib/comfortable_mexican_sofa/content/tags/page_file_link.rb +84 -0
- data/lib/comfortable_mexican_sofa/content/tags/partial.rb +49 -0
- data/lib/comfortable_mexican_sofa/content/tags/snippet.rb +34 -0
- data/lib/comfortable_mexican_sofa/content/tags/template.rb +44 -0
- data/lib/comfortable_mexican_sofa/content/tags/text.rb +20 -0
- data/lib/comfortable_mexican_sofa/content/tags/textarea.rb +20 -0
- data/lib/comfortable_mexican_sofa/content/tags/wysiwyg.rb +21 -0
- data/lib/comfortable_mexican_sofa/engine.rb +31 -0
- data/lib/comfortable_mexican_sofa/error.rb +32 -0
- data/lib/comfortable_mexican_sofa/extensions/acts_as_tree.rb +120 -0
- data/lib/comfortable_mexican_sofa/extensions/has_revisions.rb +72 -0
- data/lib/comfortable_mexican_sofa/form_builder.rb +47 -0
- data/lib/comfortable_mexican_sofa/render_methods.rb +112 -0
- data/lib/comfortable_mexican_sofa/routes/cms.rb +18 -0
- data/lib/comfortable_mexican_sofa/routes/cms_admin.rb +58 -0
- data/lib/comfortable_mexican_sofa/routing.rb +12 -0
- data/lib/comfortable_mexican_sofa/seeds.rb +114 -0
- data/lib/comfortable_mexican_sofa/seeds/file/exporter.rb +43 -0
- data/lib/comfortable_mexican_sofa/seeds/file/importer.rb +63 -0
- data/lib/comfortable_mexican_sofa/seeds/layout/exporter.rb +40 -0
- data/lib/comfortable_mexican_sofa/seeds/layout/importer.rb +62 -0
- data/lib/comfortable_mexican_sofa/seeds/page/exporter.rb +92 -0
- data/lib/comfortable_mexican_sofa/seeds/page/importer.rb +219 -0
- data/lib/comfortable_mexican_sofa/seeds/snippet/exporter.rb +34 -0
- data/lib/comfortable_mexican_sofa/seeds/snippet/importer.rb +51 -0
- data/lib/comfortable_mexican_sofa/version.rb +9 -0
- data/lib/comfortable_mexican_sofa/view_hooks.rb +35 -0
- data/lib/generators/comfy/cms/README +17 -0
- data/lib/generators/comfy/cms/assets_generator.rb +18 -0
- data/lib/generators/comfy/cms/cms_generator.rb +69 -0
- data/lib/generators/comfy/cms/controllers_generator.rb +17 -0
- data/lib/generators/comfy/cms/models_generator.rb +17 -0
- data/lib/generators/comfy/cms/views_generator.rb +17 -0
- data/lib/generators/comfy/scaffold/scaffold_generator.rb +80 -0
- data/lib/generators/comfy/scaffold/templates/controller.rb.tt +62 -0
- data/lib/generators/comfy/scaffold/templates/migration.rb.tt +11 -0
- data/lib/generators/comfy/scaffold/templates/model.rb.tt +21 -0
- data/lib/generators/comfy/scaffold/templates/tests/controller.rb.tt +115 -0
- data/lib/generators/comfy/scaffold/templates/tests/fixture.yml.tt +4 -0
- data/lib/generators/comfy/scaffold/templates/tests/model.rb.tt +26 -0
- data/lib/generators/comfy/scaffold/templates/views/_form.haml.tt +7 -0
- data/lib/generators/comfy/scaffold/templates/views/edit.haml.tt +5 -0
- data/lib/generators/comfy/scaffold/templates/views/index.haml.tt +21 -0
- data/lib/generators/comfy/scaffold/templates/views/new.haml.tt +5 -0
- data/lib/generators/comfy/scaffold/templates/views/show.haml.tt +4 -0
- data/lib/tasks/cms_seeds.rake +40 -0
- data/public/favicon.ico +0 -0
- metadata +648 -0
@@ -0,0 +1,152 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
(function(mod) {
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
6
|
+
mod(require("../../lib/codemirror"), require("../xml/xml"), require("../javascript/javascript"), require("../css/css"));
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
8
|
+
define(["../../lib/codemirror", "../xml/xml", "../javascript/javascript", "../css/css"], mod);
|
9
|
+
else // Plain browser env
|
10
|
+
mod(CodeMirror);
|
11
|
+
})(function(CodeMirror) {
|
12
|
+
"use strict";
|
13
|
+
|
14
|
+
var defaultTags = {
|
15
|
+
script: [
|
16
|
+
["lang", /(javascript|babel)/i, "javascript"],
|
17
|
+
["type", /^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i, "javascript"],
|
18
|
+
["type", /./, "text/plain"],
|
19
|
+
[null, null, "javascript"]
|
20
|
+
],
|
21
|
+
style: [
|
22
|
+
["lang", /^css$/i, "css"],
|
23
|
+
["type", /^(text\/)?(x-)?(stylesheet|css)$/i, "css"],
|
24
|
+
["type", /./, "text/plain"],
|
25
|
+
[null, null, "css"]
|
26
|
+
]
|
27
|
+
};
|
28
|
+
|
29
|
+
function maybeBackup(stream, pat, style) {
|
30
|
+
var cur = stream.current(), close = cur.search(pat);
|
31
|
+
if (close > -1) {
|
32
|
+
stream.backUp(cur.length - close);
|
33
|
+
} else if (cur.match(/<\/?$/)) {
|
34
|
+
stream.backUp(cur.length);
|
35
|
+
if (!stream.match(pat, false)) stream.match(cur);
|
36
|
+
}
|
37
|
+
return style;
|
38
|
+
}
|
39
|
+
|
40
|
+
var attrRegexpCache = {};
|
41
|
+
function getAttrRegexp(attr) {
|
42
|
+
var regexp = attrRegexpCache[attr];
|
43
|
+
if (regexp) return regexp;
|
44
|
+
return attrRegexpCache[attr] = new RegExp("\\s+" + attr + "\\s*=\\s*('|\")?([^'\"]+)('|\")?\\s*");
|
45
|
+
}
|
46
|
+
|
47
|
+
function getAttrValue(text, attr) {
|
48
|
+
var match = text.match(getAttrRegexp(attr))
|
49
|
+
return match ? /^\s*(.*?)\s*$/.exec(match[2])[1] : ""
|
50
|
+
}
|
51
|
+
|
52
|
+
function getTagRegexp(tagName, anchored) {
|
53
|
+
return new RegExp((anchored ? "^" : "") + "<\/\s*" + tagName + "\s*>", "i");
|
54
|
+
}
|
55
|
+
|
56
|
+
function addTags(from, to) {
|
57
|
+
for (var tag in from) {
|
58
|
+
var dest = to[tag] || (to[tag] = []);
|
59
|
+
var source = from[tag];
|
60
|
+
for (var i = source.length - 1; i >= 0; i--)
|
61
|
+
dest.unshift(source[i])
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
function findMatchingMode(tagInfo, tagText) {
|
66
|
+
for (var i = 0; i < tagInfo.length; i++) {
|
67
|
+
var spec = tagInfo[i];
|
68
|
+
if (!spec[0] || spec[1].test(getAttrValue(tagText, spec[0]))) return spec[2];
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
CodeMirror.defineMode("htmlmixed", function (config, parserConfig) {
|
73
|
+
var htmlMode = CodeMirror.getMode(config, {
|
74
|
+
name: "xml",
|
75
|
+
htmlMode: true,
|
76
|
+
multilineTagIndentFactor: parserConfig.multilineTagIndentFactor,
|
77
|
+
multilineTagIndentPastTag: parserConfig.multilineTagIndentPastTag
|
78
|
+
});
|
79
|
+
|
80
|
+
var tags = {};
|
81
|
+
var configTags = parserConfig && parserConfig.tags, configScript = parserConfig && parserConfig.scriptTypes;
|
82
|
+
addTags(defaultTags, tags);
|
83
|
+
if (configTags) addTags(configTags, tags);
|
84
|
+
if (configScript) for (var i = configScript.length - 1; i >= 0; i--)
|
85
|
+
tags.script.unshift(["type", configScript[i].matches, configScript[i].mode])
|
86
|
+
|
87
|
+
function html(stream, state) {
|
88
|
+
var style = htmlMode.token(stream, state.htmlState), tag = /\btag\b/.test(style), tagName
|
89
|
+
if (tag && !/[<>\s\/]/.test(stream.current()) &&
|
90
|
+
(tagName = state.htmlState.tagName && state.htmlState.tagName.toLowerCase()) &&
|
91
|
+
tags.hasOwnProperty(tagName)) {
|
92
|
+
state.inTag = tagName + " "
|
93
|
+
} else if (state.inTag && tag && />$/.test(stream.current())) {
|
94
|
+
var inTag = /^([\S]+) (.*)/.exec(state.inTag)
|
95
|
+
state.inTag = null
|
96
|
+
var modeSpec = stream.current() == ">" && findMatchingMode(tags[inTag[1]], inTag[2])
|
97
|
+
var mode = CodeMirror.getMode(config, modeSpec)
|
98
|
+
var endTagA = getTagRegexp(inTag[1], true), endTag = getTagRegexp(inTag[1], false);
|
99
|
+
state.token = function (stream, state) {
|
100
|
+
if (stream.match(endTagA, false)) {
|
101
|
+
state.token = html;
|
102
|
+
state.localState = state.localMode = null;
|
103
|
+
return null;
|
104
|
+
}
|
105
|
+
return maybeBackup(stream, endTag, state.localMode.token(stream, state.localState));
|
106
|
+
};
|
107
|
+
state.localMode = mode;
|
108
|
+
state.localState = CodeMirror.startState(mode, htmlMode.indent(state.htmlState, ""));
|
109
|
+
} else if (state.inTag) {
|
110
|
+
state.inTag += stream.current()
|
111
|
+
if (stream.eol()) state.inTag += " "
|
112
|
+
}
|
113
|
+
return style;
|
114
|
+
};
|
115
|
+
|
116
|
+
return {
|
117
|
+
startState: function () {
|
118
|
+
var state = CodeMirror.startState(htmlMode);
|
119
|
+
return {token: html, inTag: null, localMode: null, localState: null, htmlState: state};
|
120
|
+
},
|
121
|
+
|
122
|
+
copyState: function (state) {
|
123
|
+
var local;
|
124
|
+
if (state.localState) {
|
125
|
+
local = CodeMirror.copyState(state.localMode, state.localState);
|
126
|
+
}
|
127
|
+
return {token: state.token, inTag: state.inTag,
|
128
|
+
localMode: state.localMode, localState: local,
|
129
|
+
htmlState: CodeMirror.copyState(htmlMode, state.htmlState)};
|
130
|
+
},
|
131
|
+
|
132
|
+
token: function (stream, state) {
|
133
|
+
return state.token(stream, state);
|
134
|
+
},
|
135
|
+
|
136
|
+
indent: function (state, textAfter, line) {
|
137
|
+
if (!state.localMode || /^\s*<\//.test(textAfter))
|
138
|
+
return htmlMode.indent(state.htmlState, textAfter);
|
139
|
+
else if (state.localMode.indent)
|
140
|
+
return state.localMode.indent(state.localState, textAfter, line);
|
141
|
+
else
|
142
|
+
return CodeMirror.Pass;
|
143
|
+
},
|
144
|
+
|
145
|
+
innerMode: function (state) {
|
146
|
+
return {state: state.localState || state.htmlState, mode: state.localMode || htmlMode};
|
147
|
+
}
|
148
|
+
};
|
149
|
+
}, "xml", "javascript", "css");
|
150
|
+
|
151
|
+
CodeMirror.defineMIME("text/html", "htmlmixed");
|
152
|
+
});
|
@@ -0,0 +1,875 @@
|
|
1
|
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2
|
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3
|
+
|
4
|
+
(function(mod) {
|
5
|
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
6
|
+
mod(require("../../lib/codemirror"));
|
7
|
+
else if (typeof define == "function" && define.amd) // AMD
|
8
|
+
define(["../../lib/codemirror"], mod);
|
9
|
+
else // Plain browser env
|
10
|
+
mod(CodeMirror);
|
11
|
+
})(function(CodeMirror) {
|
12
|
+
"use strict";
|
13
|
+
|
14
|
+
CodeMirror.defineMode("javascript", function(config, parserConfig) {
|
15
|
+
var indentUnit = config.indentUnit;
|
16
|
+
var statementIndent = parserConfig.statementIndent;
|
17
|
+
var jsonldMode = parserConfig.jsonld;
|
18
|
+
var jsonMode = parserConfig.json || jsonldMode;
|
19
|
+
var isTS = parserConfig.typescript;
|
20
|
+
var wordRE = parserConfig.wordCharacters || /[\w$\xa1-\uffff]/;
|
21
|
+
|
22
|
+
// Tokenizer
|
23
|
+
|
24
|
+
var keywords = function(){
|
25
|
+
function kw(type) {return {type: type, style: "keyword"};}
|
26
|
+
var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c"), D = kw("keyword d");
|
27
|
+
var operator = kw("operator"), atom = {type: "atom", style: "atom"};
|
28
|
+
|
29
|
+
var jsKeywords = {
|
30
|
+
"if": kw("if"), "while": A, "with": A, "else": B, "do": B, "try": B, "finally": B,
|
31
|
+
"return": D, "break": D, "continue": D, "new": kw("new"), "delete": C, "void": C, "throw": C,
|
32
|
+
"debugger": kw("debugger"), "var": kw("var"), "const": kw("var"), "let": kw("var"),
|
33
|
+
"function": kw("function"), "catch": kw("catch"),
|
34
|
+
"for": kw("for"), "switch": kw("switch"), "case": kw("case"), "default": kw("default"),
|
35
|
+
"in": operator, "typeof": operator, "instanceof": operator,
|
36
|
+
"true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom,
|
37
|
+
"this": kw("this"), "class": kw("class"), "super": kw("atom"),
|
38
|
+
"yield": C, "export": kw("export"), "import": kw("import"), "extends": C,
|
39
|
+
"await": C
|
40
|
+
};
|
41
|
+
|
42
|
+
// Extend the 'normal' keywords with the TypeScript language extensions
|
43
|
+
if (isTS) {
|
44
|
+
var type = {type: "variable", style: "type"};
|
45
|
+
var tsKeywords = {
|
46
|
+
// object-like things
|
47
|
+
"interface": kw("class"),
|
48
|
+
"implements": C,
|
49
|
+
"namespace": C,
|
50
|
+
|
51
|
+
// scope modifiers
|
52
|
+
"public": kw("modifier"),
|
53
|
+
"private": kw("modifier"),
|
54
|
+
"protected": kw("modifier"),
|
55
|
+
"abstract": kw("modifier"),
|
56
|
+
"readonly": kw("modifier"),
|
57
|
+
|
58
|
+
// types
|
59
|
+
"string": type, "number": type, "boolean": type, "any": type
|
60
|
+
};
|
61
|
+
|
62
|
+
for (var attr in tsKeywords) {
|
63
|
+
jsKeywords[attr] = tsKeywords[attr];
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
return jsKeywords;
|
68
|
+
}();
|
69
|
+
|
70
|
+
var isOperatorChar = /[+\-*&%=<>!?|~^@]/;
|
71
|
+
var isJsonldKeyword = /^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;
|
72
|
+
|
73
|
+
function readRegexp(stream) {
|
74
|
+
var escaped = false, next, inSet = false;
|
75
|
+
while ((next = stream.next()) != null) {
|
76
|
+
if (!escaped) {
|
77
|
+
if (next == "/" && !inSet) return;
|
78
|
+
if (next == "[") inSet = true;
|
79
|
+
else if (inSet && next == "]") inSet = false;
|
80
|
+
}
|
81
|
+
escaped = !escaped && next == "\\";
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
// Used as scratch variables to communicate multiple values without
|
86
|
+
// consing up tons of objects.
|
87
|
+
var type, content;
|
88
|
+
function ret(tp, style, cont) {
|
89
|
+
type = tp; content = cont;
|
90
|
+
return style;
|
91
|
+
}
|
92
|
+
function tokenBase(stream, state) {
|
93
|
+
var ch = stream.next();
|
94
|
+
if (ch == '"' || ch == "'") {
|
95
|
+
state.tokenize = tokenString(ch);
|
96
|
+
return state.tokenize(stream, state);
|
97
|
+
} else if (ch == "." && stream.match(/^\d+(?:[eE][+\-]?\d+)?/)) {
|
98
|
+
return ret("number", "number");
|
99
|
+
} else if (ch == "." && stream.match("..")) {
|
100
|
+
return ret("spread", "meta");
|
101
|
+
} else if (/[\[\]{}\(\),;\:\.]/.test(ch)) {
|
102
|
+
return ret(ch);
|
103
|
+
} else if (ch == "=" && stream.eat(">")) {
|
104
|
+
return ret("=>", "operator");
|
105
|
+
} else if (ch == "0" && stream.eat(/x/i)) {
|
106
|
+
stream.eatWhile(/[\da-f]/i);
|
107
|
+
return ret("number", "number");
|
108
|
+
} else if (ch == "0" && stream.eat(/o/i)) {
|
109
|
+
stream.eatWhile(/[0-7]/i);
|
110
|
+
return ret("number", "number");
|
111
|
+
} else if (ch == "0" && stream.eat(/b/i)) {
|
112
|
+
stream.eatWhile(/[01]/i);
|
113
|
+
return ret("number", "number");
|
114
|
+
} else if (/\d/.test(ch)) {
|
115
|
+
stream.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/);
|
116
|
+
return ret("number", "number");
|
117
|
+
} else if (ch == "/") {
|
118
|
+
if (stream.eat("*")) {
|
119
|
+
state.tokenize = tokenComment;
|
120
|
+
return tokenComment(stream, state);
|
121
|
+
} else if (stream.eat("/")) {
|
122
|
+
stream.skipToEnd();
|
123
|
+
return ret("comment", "comment");
|
124
|
+
} else if (expressionAllowed(stream, state, 1)) {
|
125
|
+
readRegexp(stream);
|
126
|
+
stream.match(/^\b(([gimyu])(?![gimyu]*\2))+\b/);
|
127
|
+
return ret("regexp", "string-2");
|
128
|
+
} else {
|
129
|
+
stream.eat("=");
|
130
|
+
return ret("operator", "operator", stream.current());
|
131
|
+
}
|
132
|
+
} else if (ch == "`") {
|
133
|
+
state.tokenize = tokenQuasi;
|
134
|
+
return tokenQuasi(stream, state);
|
135
|
+
} else if (ch == "#") {
|
136
|
+
stream.skipToEnd();
|
137
|
+
return ret("error", "error");
|
138
|
+
} else if (isOperatorChar.test(ch)) {
|
139
|
+
if (ch != ">" || !state.lexical || state.lexical.type != ">") {
|
140
|
+
if (stream.eat("=")) {
|
141
|
+
if (ch == "!" || ch == "=") stream.eat("=")
|
142
|
+
} else if (/[<>*+\-]/.test(ch)) {
|
143
|
+
stream.eat(ch)
|
144
|
+
if (ch == ">") stream.eat(ch)
|
145
|
+
}
|
146
|
+
}
|
147
|
+
return ret("operator", "operator", stream.current());
|
148
|
+
} else if (wordRE.test(ch)) {
|
149
|
+
stream.eatWhile(wordRE);
|
150
|
+
var word = stream.current()
|
151
|
+
if (state.lastType != ".") {
|
152
|
+
if (keywords.propertyIsEnumerable(word)) {
|
153
|
+
var kw = keywords[word]
|
154
|
+
return ret(kw.type, kw.style, word)
|
155
|
+
}
|
156
|
+
if (word == "async" && stream.match(/^(\s|\/\*.*?\*\/)*[\(\w]/, false))
|
157
|
+
return ret("async", "keyword", word)
|
158
|
+
}
|
159
|
+
return ret("variable", "variable", word)
|
160
|
+
}
|
161
|
+
}
|
162
|
+
|
163
|
+
function tokenString(quote) {
|
164
|
+
return function(stream, state) {
|
165
|
+
var escaped = false, next;
|
166
|
+
if (jsonldMode && stream.peek() == "@" && stream.match(isJsonldKeyword)){
|
167
|
+
state.tokenize = tokenBase;
|
168
|
+
return ret("jsonld-keyword", "meta");
|
169
|
+
}
|
170
|
+
while ((next = stream.next()) != null) {
|
171
|
+
if (next == quote && !escaped) break;
|
172
|
+
escaped = !escaped && next == "\\";
|
173
|
+
}
|
174
|
+
if (!escaped) state.tokenize = tokenBase;
|
175
|
+
return ret("string", "string");
|
176
|
+
};
|
177
|
+
}
|
178
|
+
|
179
|
+
function tokenComment(stream, state) {
|
180
|
+
var maybeEnd = false, ch;
|
181
|
+
while (ch = stream.next()) {
|
182
|
+
if (ch == "/" && maybeEnd) {
|
183
|
+
state.tokenize = tokenBase;
|
184
|
+
break;
|
185
|
+
}
|
186
|
+
maybeEnd = (ch == "*");
|
187
|
+
}
|
188
|
+
return ret("comment", "comment");
|
189
|
+
}
|
190
|
+
|
191
|
+
function tokenQuasi(stream, state) {
|
192
|
+
var escaped = false, next;
|
193
|
+
while ((next = stream.next()) != null) {
|
194
|
+
if (!escaped && (next == "`" || next == "$" && stream.eat("{"))) {
|
195
|
+
state.tokenize = tokenBase;
|
196
|
+
break;
|
197
|
+
}
|
198
|
+
escaped = !escaped && next == "\\";
|
199
|
+
}
|
200
|
+
return ret("quasi", "string-2", stream.current());
|
201
|
+
}
|
202
|
+
|
203
|
+
var brackets = "([{}])";
|
204
|
+
// This is a crude lookahead trick to try and notice that we're
|
205
|
+
// parsing the argument patterns for a fat-arrow function before we
|
206
|
+
// actually hit the arrow token. It only works if the arrow is on
|
207
|
+
// the same line as the arguments and there's no strange noise
|
208
|
+
// (comments) in between. Fallback is to only notice when we hit the
|
209
|
+
// arrow, and not declare the arguments as locals for the arrow
|
210
|
+
// body.
|
211
|
+
function findFatArrow(stream, state) {
|
212
|
+
if (state.fatArrowAt) state.fatArrowAt = null;
|
213
|
+
var arrow = stream.string.indexOf("=>", stream.start);
|
214
|
+
if (arrow < 0) return;
|
215
|
+
|
216
|
+
if (isTS) { // Try to skip TypeScript return type declarations after the arguments
|
217
|
+
var m = /:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(stream.string.slice(stream.start, arrow))
|
218
|
+
if (m) arrow = m.index
|
219
|
+
}
|
220
|
+
|
221
|
+
var depth = 0, sawSomething = false;
|
222
|
+
for (var pos = arrow - 1; pos >= 0; --pos) {
|
223
|
+
var ch = stream.string.charAt(pos);
|
224
|
+
var bracket = brackets.indexOf(ch);
|
225
|
+
if (bracket >= 0 && bracket < 3) {
|
226
|
+
if (!depth) { ++pos; break; }
|
227
|
+
if (--depth == 0) { if (ch == "(") sawSomething = true; break; }
|
228
|
+
} else if (bracket >= 3 && bracket < 6) {
|
229
|
+
++depth;
|
230
|
+
} else if (wordRE.test(ch)) {
|
231
|
+
sawSomething = true;
|
232
|
+
} else if (/["'\/]/.test(ch)) {
|
233
|
+
return;
|
234
|
+
} else if (sawSomething && !depth) {
|
235
|
+
++pos;
|
236
|
+
break;
|
237
|
+
}
|
238
|
+
}
|
239
|
+
if (sawSomething && !depth) state.fatArrowAt = pos;
|
240
|
+
}
|
241
|
+
|
242
|
+
// Parser
|
243
|
+
|
244
|
+
var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true, "this": true, "jsonld-keyword": true};
|
245
|
+
|
246
|
+
function JSLexical(indented, column, type, align, prev, info) {
|
247
|
+
this.indented = indented;
|
248
|
+
this.column = column;
|
249
|
+
this.type = type;
|
250
|
+
this.prev = prev;
|
251
|
+
this.info = info;
|
252
|
+
if (align != null) this.align = align;
|
253
|
+
}
|
254
|
+
|
255
|
+
function inScope(state, varname) {
|
256
|
+
for (var v = state.localVars; v; v = v.next)
|
257
|
+
if (v.name == varname) return true;
|
258
|
+
for (var cx = state.context; cx; cx = cx.prev) {
|
259
|
+
for (var v = cx.vars; v; v = v.next)
|
260
|
+
if (v.name == varname) return true;
|
261
|
+
}
|
262
|
+
}
|
263
|
+
|
264
|
+
function parseJS(state, style, type, content, stream) {
|
265
|
+
var cc = state.cc;
|
266
|
+
// Communicate our context to the combinators.
|
267
|
+
// (Less wasteful than consing up a hundred closures on every call.)
|
268
|
+
cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc; cx.style = style;
|
269
|
+
|
270
|
+
if (!state.lexical.hasOwnProperty("align"))
|
271
|
+
state.lexical.align = true;
|
272
|
+
|
273
|
+
while(true) {
|
274
|
+
var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement;
|
275
|
+
if (combinator(type, content)) {
|
276
|
+
while(cc.length && cc[cc.length - 1].lex)
|
277
|
+
cc.pop()();
|
278
|
+
if (cx.marked) return cx.marked;
|
279
|
+
if (type == "variable" && inScope(state, content)) return "variable-2";
|
280
|
+
return style;
|
281
|
+
}
|
282
|
+
}
|
283
|
+
}
|
284
|
+
|
285
|
+
// Combinator utils
|
286
|
+
|
287
|
+
var cx = {state: null, column: null, marked: null, cc: null};
|
288
|
+
function pass() {
|
289
|
+
for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]);
|
290
|
+
}
|
291
|
+
function cont() {
|
292
|
+
pass.apply(null, arguments);
|
293
|
+
return true;
|
294
|
+
}
|
295
|
+
function register(varname) {
|
296
|
+
function inList(list) {
|
297
|
+
for (var v = list; v; v = v.next)
|
298
|
+
if (v.name == varname) return true;
|
299
|
+
return false;
|
300
|
+
}
|
301
|
+
var state = cx.state;
|
302
|
+
cx.marked = "def";
|
303
|
+
if (state.context) {
|
304
|
+
if (inList(state.localVars)) return;
|
305
|
+
state.localVars = {name: varname, next: state.localVars};
|
306
|
+
} else {
|
307
|
+
if (inList(state.globalVars)) return;
|
308
|
+
if (parserConfig.globalVars)
|
309
|
+
state.globalVars = {name: varname, next: state.globalVars};
|
310
|
+
}
|
311
|
+
}
|
312
|
+
|
313
|
+
// Combinators
|
314
|
+
|
315
|
+
var defaultVars = {name: "this", next: {name: "arguments"}};
|
316
|
+
function pushcontext() {
|
317
|
+
cx.state.context = {prev: cx.state.context, vars: cx.state.localVars};
|
318
|
+
cx.state.localVars = defaultVars;
|
319
|
+
}
|
320
|
+
function popcontext() {
|
321
|
+
cx.state.localVars = cx.state.context.vars;
|
322
|
+
cx.state.context = cx.state.context.prev;
|
323
|
+
}
|
324
|
+
function pushlex(type, info) {
|
325
|
+
var result = function() {
|
326
|
+
var state = cx.state, indent = state.indented;
|
327
|
+
if (state.lexical.type == "stat") indent = state.lexical.indented;
|
328
|
+
else for (var outer = state.lexical; outer && outer.type == ")" && outer.align; outer = outer.prev)
|
329
|
+
indent = outer.indented;
|
330
|
+
state.lexical = new JSLexical(indent, cx.stream.column(), type, null, state.lexical, info);
|
331
|
+
};
|
332
|
+
result.lex = true;
|
333
|
+
return result;
|
334
|
+
}
|
335
|
+
function poplex() {
|
336
|
+
var state = cx.state;
|
337
|
+
if (state.lexical.prev) {
|
338
|
+
if (state.lexical.type == ")")
|
339
|
+
state.indented = state.lexical.indented;
|
340
|
+
state.lexical = state.lexical.prev;
|
341
|
+
}
|
342
|
+
}
|
343
|
+
poplex.lex = true;
|
344
|
+
|
345
|
+
function expect(wanted) {
|
346
|
+
function exp(type) {
|
347
|
+
if (type == wanted) return cont();
|
348
|
+
else if (wanted == ";") return pass();
|
349
|
+
else return cont(exp);
|
350
|
+
};
|
351
|
+
return exp;
|
352
|
+
}
|
353
|
+
|
354
|
+
function statement(type, value) {
|
355
|
+
if (type == "var") return cont(pushlex("vardef", value.length), vardef, expect(";"), poplex);
|
356
|
+
if (type == "keyword a") return cont(pushlex("form"), parenExpr, statement, poplex);
|
357
|
+
if (type == "keyword b") return cont(pushlex("form"), statement, poplex);
|
358
|
+
if (type == "keyword d") return cx.stream.match(/^\s*$/, false) ? cont() : cont(pushlex("stat"), maybeexpression, expect(";"), poplex);
|
359
|
+
if (type == "debugger") return cont(expect(";"));
|
360
|
+
if (type == "{") return cont(pushlex("}"), block, poplex);
|
361
|
+
if (type == ";") return cont();
|
362
|
+
if (type == "if") {
|
363
|
+
if (cx.state.lexical.info == "else" && cx.state.cc[cx.state.cc.length - 1] == poplex)
|
364
|
+
cx.state.cc.pop()();
|
365
|
+
return cont(pushlex("form"), parenExpr, statement, poplex, maybeelse);
|
366
|
+
}
|
367
|
+
if (type == "function") return cont(functiondef);
|
368
|
+
if (type == "for") return cont(pushlex("form"), forspec, statement, poplex);
|
369
|
+
if (type == "variable") {
|
370
|
+
if (isTS && value == "type") {
|
371
|
+
cx.marked = "keyword"
|
372
|
+
return cont(typeexpr, expect("operator"), typeexpr, expect(";"));
|
373
|
+
} else if (isTS && value == "declare") {
|
374
|
+
cx.marked = "keyword"
|
375
|
+
return cont(statement)
|
376
|
+
} else if (isTS && (value == "module" || value == "enum") && cx.stream.match(/^\s*\w/, false)) {
|
377
|
+
cx.marked = "keyword"
|
378
|
+
return cont(pushlex("form"), pattern, expect("{"), pushlex("}"), block, poplex, poplex)
|
379
|
+
} else {
|
380
|
+
return cont(pushlex("stat"), maybelabel);
|
381
|
+
}
|
382
|
+
}
|
383
|
+
if (type == "switch") return cont(pushlex("form"), parenExpr, expect("{"), pushlex("}", "switch"),
|
384
|
+
block, poplex, poplex);
|
385
|
+
if (type == "case") return cont(expression, expect(":"));
|
386
|
+
if (type == "default") return cont(expect(":"));
|
387
|
+
if (type == "catch") return cont(pushlex("form"), pushcontext, expect("("), funarg, expect(")"),
|
388
|
+
statement, poplex, popcontext);
|
389
|
+
if (type == "class") return cont(pushlex("form"), className, poplex);
|
390
|
+
if (type == "export") return cont(pushlex("stat"), afterExport, poplex);
|
391
|
+
if (type == "import") return cont(pushlex("stat"), afterImport, poplex);
|
392
|
+
if (type == "async") return cont(statement)
|
393
|
+
if (value == "@") return cont(expression, statement)
|
394
|
+
return pass(pushlex("stat"), expression, expect(";"), poplex);
|
395
|
+
}
|
396
|
+
function expression(type) {
|
397
|
+
return expressionInner(type, false);
|
398
|
+
}
|
399
|
+
function expressionNoComma(type) {
|
400
|
+
return expressionInner(type, true);
|
401
|
+
}
|
402
|
+
function parenExpr(type) {
|
403
|
+
if (type != "(") return pass()
|
404
|
+
return cont(pushlex(")"), expression, expect(")"), poplex)
|
405
|
+
}
|
406
|
+
function expressionInner(type, noComma) {
|
407
|
+
if (cx.state.fatArrowAt == cx.stream.start) {
|
408
|
+
var body = noComma ? arrowBodyNoComma : arrowBody;
|
409
|
+
if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, expect("=>"), body, popcontext);
|
410
|
+
else if (type == "variable") return pass(pushcontext, pattern, expect("=>"), body, popcontext);
|
411
|
+
}
|
412
|
+
|
413
|
+
var maybeop = noComma ? maybeoperatorNoComma : maybeoperatorComma;
|
414
|
+
if (atomicTypes.hasOwnProperty(type)) return cont(maybeop);
|
415
|
+
if (type == "function") return cont(functiondef, maybeop);
|
416
|
+
if (type == "class") return cont(pushlex("form"), classExpression, poplex);
|
417
|
+
if (type == "keyword c" || type == "async") return cont(noComma ? expressionNoComma : expression);
|
418
|
+
if (type == "(") return cont(pushlex(")"), maybeexpression, expect(")"), poplex, maybeop);
|
419
|
+
if (type == "operator" || type == "spread") return cont(noComma ? expressionNoComma : expression);
|
420
|
+
if (type == "[") return cont(pushlex("]"), arrayLiteral, poplex, maybeop);
|
421
|
+
if (type == "{") return contCommasep(objprop, "}", null, maybeop);
|
422
|
+
if (type == "quasi") return pass(quasi, maybeop);
|
423
|
+
if (type == "new") return cont(maybeTarget(noComma));
|
424
|
+
return cont();
|
425
|
+
}
|
426
|
+
function maybeexpression(type) {
|
427
|
+
if (type.match(/[;\}\)\],]/)) return pass();
|
428
|
+
return pass(expression);
|
429
|
+
}
|
430
|
+
|
431
|
+
function maybeoperatorComma(type, value) {
|
432
|
+
if (type == ",") return cont(expression);
|
433
|
+
return maybeoperatorNoComma(type, value, false);
|
434
|
+
}
|
435
|
+
function maybeoperatorNoComma(type, value, noComma) {
|
436
|
+
var me = noComma == false ? maybeoperatorComma : maybeoperatorNoComma;
|
437
|
+
var expr = noComma == false ? expression : expressionNoComma;
|
438
|
+
if (type == "=>") return cont(pushcontext, noComma ? arrowBodyNoComma : arrowBody, popcontext);
|
439
|
+
if (type == "operator") {
|
440
|
+
if (/\+\+|--/.test(value) || isTS && value == "!") return cont(me);
|
441
|
+
if (isTS && value == "<" && cx.stream.match(/^([^>]|<.*?>)*>\s*\(/, false))
|
442
|
+
return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, me);
|
443
|
+
if (value == "?") return cont(expression, expect(":"), expr);
|
444
|
+
return cont(expr);
|
445
|
+
}
|
446
|
+
if (type == "quasi") { return pass(quasi, me); }
|
447
|
+
if (type == ";") return;
|
448
|
+
if (type == "(") return contCommasep(expressionNoComma, ")", "call", me);
|
449
|
+
if (type == ".") return cont(property, me);
|
450
|
+
if (type == "[") return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me);
|
451
|
+
if (isTS && value == "as") { cx.marked = "keyword"; return cont(typeexpr, me) }
|
452
|
+
if (type == "regexp") {
|
453
|
+
cx.state.lastType = cx.marked = "operator"
|
454
|
+
cx.stream.backUp(cx.stream.pos - cx.stream.start - 1)
|
455
|
+
return cont(expr)
|
456
|
+
}
|
457
|
+
}
|
458
|
+
function quasi(type, value) {
|
459
|
+
if (type != "quasi") return pass();
|
460
|
+
if (value.slice(value.length - 2) != "${") return cont(quasi);
|
461
|
+
return cont(expression, continueQuasi);
|
462
|
+
}
|
463
|
+
function continueQuasi(type) {
|
464
|
+
if (type == "}") {
|
465
|
+
cx.marked = "string-2";
|
466
|
+
cx.state.tokenize = tokenQuasi;
|
467
|
+
return cont(quasi);
|
468
|
+
}
|
469
|
+
}
|
470
|
+
function arrowBody(type) {
|
471
|
+
findFatArrow(cx.stream, cx.state);
|
472
|
+
return pass(type == "{" ? statement : expression);
|
473
|
+
}
|
474
|
+
function arrowBodyNoComma(type) {
|
475
|
+
findFatArrow(cx.stream, cx.state);
|
476
|
+
return pass(type == "{" ? statement : expressionNoComma);
|
477
|
+
}
|
478
|
+
function maybeTarget(noComma) {
|
479
|
+
return function(type) {
|
480
|
+
if (type == ".") return cont(noComma ? targetNoComma : target);
|
481
|
+
else if (type == "variable" && isTS) return cont(maybeTypeArgs, noComma ? maybeoperatorNoComma : maybeoperatorComma)
|
482
|
+
else return pass(noComma ? expressionNoComma : expression);
|
483
|
+
};
|
484
|
+
}
|
485
|
+
function target(_, value) {
|
486
|
+
if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorComma); }
|
487
|
+
}
|
488
|
+
function targetNoComma(_, value) {
|
489
|
+
if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorNoComma); }
|
490
|
+
}
|
491
|
+
function maybelabel(type) {
|
492
|
+
if (type == ":") return cont(poplex, statement);
|
493
|
+
return pass(maybeoperatorComma, expect(";"), poplex);
|
494
|
+
}
|
495
|
+
function property(type) {
|
496
|
+
if (type == "variable") {cx.marked = "property"; return cont();}
|
497
|
+
}
|
498
|
+
function objprop(type, value) {
|
499
|
+
if (type == "async") {
|
500
|
+
cx.marked = "property";
|
501
|
+
return cont(objprop);
|
502
|
+
} else if (type == "variable" || cx.style == "keyword") {
|
503
|
+
cx.marked = "property";
|
504
|
+
if (value == "get" || value == "set") return cont(getterSetter);
|
505
|
+
var m // Work around fat-arrow-detection complication for detecting typescript typed arrow params
|
506
|
+
if (isTS && cx.state.fatArrowAt == cx.stream.start && (m = cx.stream.match(/^\s*:\s*/, false)))
|
507
|
+
cx.state.fatArrowAt = cx.stream.pos + m[0].length
|
508
|
+
return cont(afterprop);
|
509
|
+
} else if (type == "number" || type == "string") {
|
510
|
+
cx.marked = jsonldMode ? "property" : (cx.style + " property");
|
511
|
+
return cont(afterprop);
|
512
|
+
} else if (type == "jsonld-keyword") {
|
513
|
+
return cont(afterprop);
|
514
|
+
} else if (type == "modifier") {
|
515
|
+
return cont(objprop)
|
516
|
+
} else if (type == "[") {
|
517
|
+
return cont(expression, expect("]"), afterprop);
|
518
|
+
} else if (type == "spread") {
|
519
|
+
return cont(expressionNoComma, afterprop);
|
520
|
+
} else if (value == "*") {
|
521
|
+
cx.marked = "keyword";
|
522
|
+
return cont(objprop);
|
523
|
+
} else if (type == ":") {
|
524
|
+
return pass(afterprop)
|
525
|
+
}
|
526
|
+
}
|
527
|
+
function getterSetter(type) {
|
528
|
+
if (type != "variable") return pass(afterprop);
|
529
|
+
cx.marked = "property";
|
530
|
+
return cont(functiondef);
|
531
|
+
}
|
532
|
+
function afterprop(type) {
|
533
|
+
if (type == ":") return cont(expressionNoComma);
|
534
|
+
if (type == "(") return pass(functiondef);
|
535
|
+
}
|
536
|
+
function commasep(what, end, sep) {
|
537
|
+
function proceed(type, value) {
|
538
|
+
if (sep ? sep.indexOf(type) > -1 : type == ",") {
|
539
|
+
var lex = cx.state.lexical;
|
540
|
+
if (lex.info == "call") lex.pos = (lex.pos || 0) + 1;
|
541
|
+
return cont(function(type, value) {
|
542
|
+
if (type == end || value == end) return pass()
|
543
|
+
return pass(what)
|
544
|
+
}, proceed);
|
545
|
+
}
|
546
|
+
if (type == end || value == end) return cont();
|
547
|
+
return cont(expect(end));
|
548
|
+
}
|
549
|
+
return function(type, value) {
|
550
|
+
if (type == end || value == end) return cont();
|
551
|
+
return pass(what, proceed);
|
552
|
+
};
|
553
|
+
}
|
554
|
+
function contCommasep(what, end, info) {
|
555
|
+
for (var i = 3; i < arguments.length; i++)
|
556
|
+
cx.cc.push(arguments[i]);
|
557
|
+
return cont(pushlex(end, info), commasep(what, end), poplex);
|
558
|
+
}
|
559
|
+
function block(type) {
|
560
|
+
if (type == "}") return cont();
|
561
|
+
return pass(statement, block);
|
562
|
+
}
|
563
|
+
function maybetype(type, value) {
|
564
|
+
if (isTS) {
|
565
|
+
if (type == ":") return cont(typeexpr);
|
566
|
+
if (value == "?") return cont(maybetype);
|
567
|
+
}
|
568
|
+
}
|
569
|
+
function mayberettype(type) {
|
570
|
+
if (isTS && type == ":") {
|
571
|
+
if (cx.stream.match(/^\s*\w+\s+is\b/, false)) return cont(expression, isKW, typeexpr)
|
572
|
+
else return cont(typeexpr)
|
573
|
+
}
|
574
|
+
}
|
575
|
+
function isKW(_, value) {
|
576
|
+
if (value == "is") {
|
577
|
+
cx.marked = "keyword"
|
578
|
+
return cont()
|
579
|
+
}
|
580
|
+
}
|
581
|
+
function typeexpr(type, value) {
|
582
|
+
if (type == "variable" || value == "void") {
|
583
|
+
if (value == "keyof") {
|
584
|
+
cx.marked = "keyword"
|
585
|
+
return cont(typeexpr)
|
586
|
+
} else {
|
587
|
+
cx.marked = "type"
|
588
|
+
return cont(afterType)
|
589
|
+
}
|
590
|
+
}
|
591
|
+
if (type == "string" || type == "number" || type == "atom") return cont(afterType);
|
592
|
+
if (type == "[") return cont(pushlex("]"), commasep(typeexpr, "]", ","), poplex, afterType)
|
593
|
+
if (type == "{") return cont(pushlex("}"), commasep(typeprop, "}", ",;"), poplex, afterType)
|
594
|
+
if (type == "(") return cont(commasep(typearg, ")"), maybeReturnType)
|
595
|
+
}
|
596
|
+
function maybeReturnType(type) {
|
597
|
+
if (type == "=>") return cont(typeexpr)
|
598
|
+
}
|
599
|
+
function typeprop(type, value) {
|
600
|
+
if (type == "variable" || cx.style == "keyword") {
|
601
|
+
cx.marked = "property"
|
602
|
+
return cont(typeprop)
|
603
|
+
} else if (value == "?") {
|
604
|
+
return cont(typeprop)
|
605
|
+
} else if (type == ":") {
|
606
|
+
return cont(typeexpr)
|
607
|
+
} else if (type == "[") {
|
608
|
+
return cont(expression, maybetype, expect("]"), typeprop)
|
609
|
+
}
|
610
|
+
}
|
611
|
+
function typearg(type) {
|
612
|
+
if (type == "variable") return cont(typearg)
|
613
|
+
else if (type == ":") return cont(typeexpr)
|
614
|
+
}
|
615
|
+
function afterType(type, value) {
|
616
|
+
if (value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, afterType)
|
617
|
+
if (value == "|" || type == ".") return cont(typeexpr)
|
618
|
+
if (type == "[") return cont(expect("]"), afterType)
|
619
|
+
if (value == "extends") return cont(typeexpr)
|
620
|
+
}
|
621
|
+
function maybeTypeArgs(_, value) {
|
622
|
+
if (value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, afterType)
|
623
|
+
}
|
624
|
+
function typeparam() {
|
625
|
+
return pass(typeexpr, maybeTypeDefault)
|
626
|
+
}
|
627
|
+
function maybeTypeDefault(_, value) {
|
628
|
+
if (value == "=") return cont(typeexpr)
|
629
|
+
}
|
630
|
+
function vardef() {
|
631
|
+
return pass(pattern, maybetype, maybeAssign, vardefCont);
|
632
|
+
}
|
633
|
+
function pattern(type, value) {
|
634
|
+
if (type == "modifier") return cont(pattern)
|
635
|
+
if (type == "variable") { register(value); return cont(); }
|
636
|
+
if (type == "spread") return cont(pattern);
|
637
|
+
if (type == "[") return contCommasep(pattern, "]");
|
638
|
+
if (type == "{") return contCommasep(proppattern, "}");
|
639
|
+
}
|
640
|
+
function proppattern(type, value) {
|
641
|
+
if (type == "variable" && !cx.stream.match(/^\s*:/, false)) {
|
642
|
+
register(value);
|
643
|
+
return cont(maybeAssign);
|
644
|
+
}
|
645
|
+
if (type == "variable") cx.marked = "property";
|
646
|
+
if (type == "spread") return cont(pattern);
|
647
|
+
if (type == "}") return pass();
|
648
|
+
return cont(expect(":"), pattern, maybeAssign);
|
649
|
+
}
|
650
|
+
function maybeAssign(_type, value) {
|
651
|
+
if (value == "=") return cont(expressionNoComma);
|
652
|
+
}
|
653
|
+
function vardefCont(type) {
|
654
|
+
if (type == ",") return cont(vardef);
|
655
|
+
}
|
656
|
+
function maybeelse(type, value) {
|
657
|
+
if (type == "keyword b" && value == "else") return cont(pushlex("form", "else"), statement, poplex);
|
658
|
+
}
|
659
|
+
function forspec(type) {
|
660
|
+
if (type == "(") return cont(pushlex(")"), forspec1, expect(")"), poplex);
|
661
|
+
}
|
662
|
+
function forspec1(type) {
|
663
|
+
if (type == "var") return cont(vardef, expect(";"), forspec2);
|
664
|
+
if (type == ";") return cont(forspec2);
|
665
|
+
if (type == "variable") return cont(formaybeinof);
|
666
|
+
return pass(expression, expect(";"), forspec2);
|
667
|
+
}
|
668
|
+
function formaybeinof(_type, value) {
|
669
|
+
if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); }
|
670
|
+
return cont(maybeoperatorComma, forspec2);
|
671
|
+
}
|
672
|
+
function forspec2(type, value) {
|
673
|
+
if (type == ";") return cont(forspec3);
|
674
|
+
if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); }
|
675
|
+
return pass(expression, expect(";"), forspec3);
|
676
|
+
}
|
677
|
+
function forspec3(type) {
|
678
|
+
if (type != ")") cont(expression);
|
679
|
+
}
|
680
|
+
function functiondef(type, value) {
|
681
|
+
if (value == "*") {cx.marked = "keyword"; return cont(functiondef);}
|
682
|
+
if (type == "variable") {register(value); return cont(functiondef);}
|
683
|
+
if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, mayberettype, statement, popcontext);
|
684
|
+
if (isTS && value == "<") return cont(pushlex(">"), commasep(typeparam, ">"), poplex, functiondef)
|
685
|
+
}
|
686
|
+
function funarg(type, value) {
|
687
|
+
if (value == "@") cont(expression, funarg)
|
688
|
+
if (type == "spread" || type == "modifier") return cont(funarg);
|
689
|
+
return pass(pattern, maybetype, maybeAssign);
|
690
|
+
}
|
691
|
+
function classExpression(type, value) {
|
692
|
+
// Class expressions may have an optional name.
|
693
|
+
if (type == "variable") return className(type, value);
|
694
|
+
return classNameAfter(type, value);
|
695
|
+
}
|
696
|
+
function className(type, value) {
|
697
|
+
if (type == "variable") {register(value); return cont(classNameAfter);}
|
698
|
+
}
|
699
|
+
function classNameAfter(type, value) {
|
700
|
+
if (value == "<") return cont(pushlex(">"), commasep(typeparam, ">"), poplex, classNameAfter)
|
701
|
+
if (value == "extends" || value == "implements" || (isTS && type == ","))
|
702
|
+
return cont(isTS ? typeexpr : expression, classNameAfter);
|
703
|
+
if (type == "{") return cont(pushlex("}"), classBody, poplex);
|
704
|
+
}
|
705
|
+
function classBody(type, value) {
|
706
|
+
if (type == "modifier" || type == "async" ||
|
707
|
+
(type == "variable" &&
|
708
|
+
(value == "static" || value == "get" || value == "set") &&
|
709
|
+
cx.stream.match(/^\s+[\w$\xa1-\uffff]/, false))) {
|
710
|
+
cx.marked = "keyword";
|
711
|
+
return cont(classBody);
|
712
|
+
}
|
713
|
+
if (type == "variable" || cx.style == "keyword") {
|
714
|
+
cx.marked = "property";
|
715
|
+
return cont(isTS ? classfield : functiondef, classBody);
|
716
|
+
}
|
717
|
+
if (type == "[")
|
718
|
+
return cont(expression, expect("]"), isTS ? classfield : functiondef, classBody)
|
719
|
+
if (value == "*") {
|
720
|
+
cx.marked = "keyword";
|
721
|
+
return cont(classBody);
|
722
|
+
}
|
723
|
+
if (type == ";") return cont(classBody);
|
724
|
+
if (type == "}") return cont();
|
725
|
+
if (value == "@") return cont(expression, classBody)
|
726
|
+
}
|
727
|
+
function classfield(type, value) {
|
728
|
+
if (value == "?") return cont(classfield)
|
729
|
+
if (type == ":") return cont(typeexpr, maybeAssign)
|
730
|
+
if (value == "=") return cont(expressionNoComma)
|
731
|
+
return pass(functiondef)
|
732
|
+
}
|
733
|
+
function afterExport(type, value) {
|
734
|
+
if (value == "*") { cx.marked = "keyword"; return cont(maybeFrom, expect(";")); }
|
735
|
+
if (value == "default") { cx.marked = "keyword"; return cont(expression, expect(";")); }
|
736
|
+
if (type == "{") return cont(commasep(exportField, "}"), maybeFrom, expect(";"));
|
737
|
+
return pass(statement);
|
738
|
+
}
|
739
|
+
function exportField(type, value) {
|
740
|
+
if (value == "as") { cx.marked = "keyword"; return cont(expect("variable")); }
|
741
|
+
if (type == "variable") return pass(expressionNoComma, exportField);
|
742
|
+
}
|
743
|
+
function afterImport(type) {
|
744
|
+
if (type == "string") return cont();
|
745
|
+
return pass(importSpec, maybeMoreImports, maybeFrom);
|
746
|
+
}
|
747
|
+
function importSpec(type, value) {
|
748
|
+
if (type == "{") return contCommasep(importSpec, "}");
|
749
|
+
if (type == "variable") register(value);
|
750
|
+
if (value == "*") cx.marked = "keyword";
|
751
|
+
return cont(maybeAs);
|
752
|
+
}
|
753
|
+
function maybeMoreImports(type) {
|
754
|
+
if (type == ",") return cont(importSpec, maybeMoreImports)
|
755
|
+
}
|
756
|
+
function maybeAs(_type, value) {
|
757
|
+
if (value == "as") { cx.marked = "keyword"; return cont(importSpec); }
|
758
|
+
}
|
759
|
+
function maybeFrom(_type, value) {
|
760
|
+
if (value == "from") { cx.marked = "keyword"; return cont(expression); }
|
761
|
+
}
|
762
|
+
function arrayLiteral(type) {
|
763
|
+
if (type == "]") return cont();
|
764
|
+
return pass(commasep(expressionNoComma, "]"));
|
765
|
+
}
|
766
|
+
|
767
|
+
function isContinuedStatement(state, textAfter) {
|
768
|
+
return state.lastType == "operator" || state.lastType == "," ||
|
769
|
+
isOperatorChar.test(textAfter.charAt(0)) ||
|
770
|
+
/[,.]/.test(textAfter.charAt(0));
|
771
|
+
}
|
772
|
+
|
773
|
+
function expressionAllowed(stream, state, backUp) {
|
774
|
+
return state.tokenize == tokenBase &&
|
775
|
+
/^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\[{}\(,;:]|=>)$/.test(state.lastType) ||
|
776
|
+
(state.lastType == "quasi" && /\{\s*$/.test(stream.string.slice(0, stream.pos - (backUp || 0))))
|
777
|
+
}
|
778
|
+
|
779
|
+
// Interface
|
780
|
+
|
781
|
+
return {
|
782
|
+
startState: function(basecolumn) {
|
783
|
+
var state = {
|
784
|
+
tokenize: tokenBase,
|
785
|
+
lastType: "sof",
|
786
|
+
cc: [],
|
787
|
+
lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false),
|
788
|
+
localVars: parserConfig.localVars,
|
789
|
+
context: parserConfig.localVars && {vars: parserConfig.localVars},
|
790
|
+
indented: basecolumn || 0
|
791
|
+
};
|
792
|
+
if (parserConfig.globalVars && typeof parserConfig.globalVars == "object")
|
793
|
+
state.globalVars = parserConfig.globalVars;
|
794
|
+
return state;
|
795
|
+
},
|
796
|
+
|
797
|
+
token: function(stream, state) {
|
798
|
+
if (stream.sol()) {
|
799
|
+
if (!state.lexical.hasOwnProperty("align"))
|
800
|
+
state.lexical.align = false;
|
801
|
+
state.indented = stream.indentation();
|
802
|
+
findFatArrow(stream, state);
|
803
|
+
}
|
804
|
+
if (state.tokenize != tokenComment && stream.eatSpace()) return null;
|
805
|
+
var style = state.tokenize(stream, state);
|
806
|
+
if (type == "comment") return style;
|
807
|
+
state.lastType = type == "operator" && (content == "++" || content == "--") ? "incdec" : type;
|
808
|
+
return parseJS(state, style, type, content, stream);
|
809
|
+
},
|
810
|
+
|
811
|
+
indent: function(state, textAfter) {
|
812
|
+
if (state.tokenize == tokenComment) return CodeMirror.Pass;
|
813
|
+
if (state.tokenize != tokenBase) return 0;
|
814
|
+
var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical, top
|
815
|
+
// Kludge to prevent 'maybelse' from blocking lexical scope pops
|
816
|
+
if (!/^\s*else\b/.test(textAfter)) for (var i = state.cc.length - 1; i >= 0; --i) {
|
817
|
+
var c = state.cc[i];
|
818
|
+
if (c == poplex) lexical = lexical.prev;
|
819
|
+
else if (c != maybeelse) break;
|
820
|
+
}
|
821
|
+
while ((lexical.type == "stat" || lexical.type == "form") &&
|
822
|
+
(firstChar == "}" || ((top = state.cc[state.cc.length - 1]) &&
|
823
|
+
(top == maybeoperatorComma || top == maybeoperatorNoComma) &&
|
824
|
+
!/^[,\.=+\-*:?[\(]/.test(textAfter))))
|
825
|
+
lexical = lexical.prev;
|
826
|
+
if (statementIndent && lexical.type == ")" && lexical.prev.type == "stat")
|
827
|
+
lexical = lexical.prev;
|
828
|
+
var type = lexical.type, closing = firstChar == type;
|
829
|
+
|
830
|
+
if (type == "vardef") return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? lexical.info + 1 : 0);
|
831
|
+
else if (type == "form" && firstChar == "{") return lexical.indented;
|
832
|
+
else if (type == "form") return lexical.indented + indentUnit;
|
833
|
+
else if (type == "stat")
|
834
|
+
return lexical.indented + (isContinuedStatement(state, textAfter) ? statementIndent || indentUnit : 0);
|
835
|
+
else if (lexical.info == "switch" && !closing && parserConfig.doubleIndentSwitch != false)
|
836
|
+
return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit);
|
837
|
+
else if (lexical.align) return lexical.column + (closing ? 0 : 1);
|
838
|
+
else return lexical.indented + (closing ? 0 : indentUnit);
|
839
|
+
},
|
840
|
+
|
841
|
+
electricInput: /^\s*(?:case .*?:|default:|\{|\})$/,
|
842
|
+
blockCommentStart: jsonMode ? null : "/*",
|
843
|
+
blockCommentEnd: jsonMode ? null : "*/",
|
844
|
+
blockCommentContinue: jsonMode ? null : " * ",
|
845
|
+
lineComment: jsonMode ? null : "//",
|
846
|
+
fold: "brace",
|
847
|
+
closeBrackets: "()[]{}''\"\"``",
|
848
|
+
|
849
|
+
helperType: jsonMode ? "json" : "javascript",
|
850
|
+
jsonldMode: jsonldMode,
|
851
|
+
jsonMode: jsonMode,
|
852
|
+
|
853
|
+
expressionAllowed: expressionAllowed,
|
854
|
+
|
855
|
+
skipExpression: function(state) {
|
856
|
+
var top = state.cc[state.cc.length - 1]
|
857
|
+
if (top == expression || top == expressionNoComma) state.cc.pop()
|
858
|
+
}
|
859
|
+
};
|
860
|
+
});
|
861
|
+
|
862
|
+
CodeMirror.registerHelper("wordChars", "javascript", /[\w$]/);
|
863
|
+
|
864
|
+
CodeMirror.defineMIME("text/javascript", "javascript");
|
865
|
+
CodeMirror.defineMIME("text/ecmascript", "javascript");
|
866
|
+
CodeMirror.defineMIME("application/javascript", "javascript");
|
867
|
+
CodeMirror.defineMIME("application/x-javascript", "javascript");
|
868
|
+
CodeMirror.defineMIME("application/ecmascript", "javascript");
|
869
|
+
CodeMirror.defineMIME("application/json", {name: "javascript", json: true});
|
870
|
+
CodeMirror.defineMIME("application/x-json", {name: "javascript", json: true});
|
871
|
+
CodeMirror.defineMIME("application/ld+json", {name: "javascript", jsonld: true});
|
872
|
+
CodeMirror.defineMIME("text/typescript", { name: "javascript", typescript: true });
|
873
|
+
CodeMirror.defineMIME("application/typescript", { name: "javascript", typescript: true });
|
874
|
+
|
875
|
+
});
|