hippo-fw 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.dir-locals.el +8 -0
- data/.eslintrc.js +7 -0
- data/.flowconfig +2 -0
- data/.gitignore +22 -0
- data/.jshintrc +3 -0
- data/.rubocop.yml +9 -0
- data/.ruby-version +1 -0
- data/.travis.yml +24 -0
- data/Gemfile +17 -0
- data/Guardfile +19 -0
- data/LICENSE-MIT.txt +21 -0
- data/README.md +36 -0
- data/Rakefile +39 -0
- data/bin/hippo +5 -0
- data/client/extension.js +0 -0
- data/client/hippo/__mocks__/config.js +17 -0
- data/client/hippo/access/index.js +4 -0
- data/client/hippo/access/login-dialog.jsx +38 -0
- data/client/hippo/access/styles.scss +0 -0
- data/client/hippo/boot.jsx +41 -0
- data/client/hippo/components/asset.jsx +81 -0
- data/client/hippo/components/asset.scss +15 -0
- data/client/hippo/components/calendar/Calendar.jsx +25 -0
- data/client/hippo/components/calendar/index.js +3 -0
- data/client/hippo/components/calendar/styles.scss +3 -0
- data/client/hippo/components/data-list.jsx +105 -0
- data/client/hippo/components/data-table.jsx +243 -0
- data/client/hippo/components/data-table/header-cell.jsx +94 -0
- data/client/hippo/components/data-table/table-styles.scss +34 -0
- data/client/hippo/components/enabled.js.erb +5 -0
- data/client/hippo/components/field-validation.js +7 -0
- data/client/hippo/components/form.jsx +65 -0
- data/client/hippo/components/form/field-prop-type.js +16 -0
- data/client/hippo/components/form/fields.jsx +76 -0
- data/client/hippo/components/form/fields/checkbox-wrapper.jsx +21 -0
- data/client/hippo/components/form/fields/date-wrapper.jsx +49 -0
- data/client/hippo/components/form/fields/form-field.scss +4 -0
- data/client/hippo/components/form/fields/select-wrapper.jsx +31 -0
- data/client/hippo/components/form/fields/text-wrapper.jsx +20 -0
- data/client/hippo/components/form/model.js +95 -0
- data/client/hippo/components/form/validations.js +0 -0
- data/client/hippo/components/form/wrapper.jsx +40 -0
- data/client/hippo/components/grid/config.json +3 -0
- data/client/hippo/components/grid/editors.scss +78 -0
- data/client/hippo/components/grid/index.js +2 -0
- data/client/hippo/components/grid/row-editor.scss +74 -0
- data/client/hippo/components/grid/styles.scss +118 -0
- data/client/hippo/components/icon.jsx +70 -0
- data/client/hippo/components/index.js +3 -0
- data/client/hippo/components/modal/index.js +1 -0
- data/client/hippo/components/modal/styles.scss +12 -0
- data/client/hippo/components/network-activity-overlay.jsx +127 -0
- data/client/hippo/components/network-activity-overlay.scss +52 -0
- data/client/hippo/components/query-builder.jsx +157 -0
- data/client/hippo/components/record-finder.jsx +95 -0
- data/client/hippo/components/record-finder/config.json +3 -0
- data/client/hippo/components/record-finder/query-layer.jsx +74 -0
- data/client/hippo/components/record-finder/record-finder.scss +12 -0
- data/client/hippo/components/request-spinner/index.js +1 -0
- data/client/hippo/components/screen.jsx +34 -0
- data/client/hippo/components/select-field/index.js +2 -0
- data/client/hippo/components/select-field/styles.scss +27 -0
- data/client/hippo/components/shared/AssetsListing.jsx +23 -0
- data/client/hippo/components/shared/Checkbox.jsx +49 -0
- data/client/hippo/components/shared/CountBadge.jsx +13 -0
- data/client/hippo/components/shared/DateTime.jsx +58 -0
- data/client/hippo/components/shared/DisplayValue.jsx +15 -0
- data/client/hippo/components/shared/ErrorDisplay.jsx +37 -0
- data/client/hippo/components/shared/FieldMixin.jsx +254 -0
- data/client/hippo/components/shared/FieldSet.jsx +52 -0
- data/client/hippo/components/shared/FieldWrapper.jsx +94 -0
- data/client/hippo/components/shared/FormGroup.jsx +41 -0
- data/client/hippo/components/shared/GenericField.jsx +7 -0
- data/client/hippo/components/shared/IconButton.jsx +13 -0
- data/client/hippo/components/shared/ImageAsset.jsx +78 -0
- data/client/hippo/components/shared/IndeterminateCheckbox.jsx +31 -0
- data/client/hippo/components/shared/Input.jsx +16 -0
- data/client/hippo/components/shared/InputFieldMixin.jsx +78 -0
- data/client/hippo/components/shared/JobProgress.jsx +46 -0
- data/client/hippo/components/shared/NumberInput.jsx +37 -0
- data/client/hippo/components/shared/PanelHeader.jsx +15 -0
- data/client/hippo/components/shared/RadioField.jsx +33 -0
- data/client/hippo/components/shared/ResizeSensor.jsx +18 -0
- data/client/hippo/components/shared/ScreenWrapper.jsx +17 -0
- data/client/hippo/components/shared/TextArea.jsx +19 -0
- data/client/hippo/components/shared/Throbber.jsx +8 -0
- data/client/hippo/components/shared/ToggleField.jsx +2 -0
- data/client/hippo/components/shared/Tooltip.jsx +23 -0
- data/client/hippo/components/shared/fields.scss +58 -0
- data/client/hippo/components/shared/fieldset.scss +27 -0
- data/client/hippo/components/shared/image-asset.scss +53 -0
- data/client/hippo/components/shared/index.js +5 -0
- data/client/hippo/components/shared/overlay.scss +83 -0
- data/client/hippo/components/shared/resize-sensor.scss +30 -0
- data/client/hippo/components/shared/styles.scss +64 -0
- data/client/hippo/components/shared/throbber.scss +53 -0
- data/client/hippo/components/toolbar/changes-notification.scss +63 -0
- data/client/hippo/components/toolbar/index.js +3 -0
- data/client/hippo/components/toolbar/styles.scss +74 -0
- data/client/hippo/components/warning-notification.jsx +14 -0
- data/client/hippo/config.js +72 -0
- data/client/hippo/extensions/EarlyExtensions.js.erb +3 -0
- data/client/hippo/extensions/LateLoaded.js.erb +4 -0
- data/client/hippo/extensions/base.js +23 -0
- data/client/hippo/extensions/hippo.js +11 -0
- data/client/hippo/extensions/index.js +47 -0
- data/client/hippo/extensions/namespace-available.js.erb +3 -0
- data/client/hippo/fonts/fontawesome-webfont.woff +0 -0
- data/client/hippo/fonts/fontawesome-webfont.woff2 +0 -0
- data/client/hippo/index.js +1 -0
- data/client/hippo/index.scss.erb +31 -0
- data/client/hippo/lib/__mocks__/loader.js +11 -0
- data/client/hippo/lib/__mocks__/request-assets.js +6 -0
- data/client/hippo/lib/all.js +14 -0
- data/client/hippo/lib/bootstrap.js +45 -0
- data/client/hippo/lib/index.js.erb +6 -0
- data/client/hippo/lib/loader.js +67 -0
- data/client/hippo/lib/request-assets.js +38 -0
- data/client/hippo/lib/smooth-scroll.js +68 -0
- data/client/hippo/lib/util.js +101 -0
- data/client/hippo/models/PubSub.js +208 -0
- data/client/hippo/models/__mocks__/sync.js +17 -0
- data/client/hippo/models/asset.js +104 -0
- data/client/hippo/models/base.js +142 -0
- data/client/hippo/models/collection.js +58 -0
- data/client/hippo/models/decorators.js +72 -0
- data/client/hippo/models/index.js +10 -0
- data/client/hippo/models/query.js +116 -0
- data/client/hippo/models/query/array-result.js +188 -0
- data/client/hippo/models/query/clause.js +52 -0
- data/client/hippo/models/query/field.js +63 -0
- data/client/hippo/models/query/info.js +43 -0
- data/client/hippo/models/query/operator.js +21 -0
- data/client/hippo/models/query/result.js +21 -0
- data/client/hippo/models/query/types.js +5 -0
- data/client/hippo/models/sync.js +135 -0
- data/client/hippo/models/system-setting.js +26 -0
- data/client/hippo/react/DefaultComponentNotFound.jsx +23 -0
- data/client/hippo/react/Root.jsx +24 -0
- data/client/hippo/react/index.js +7 -0
- data/client/hippo/react/viewport-root.jsx +44 -0
- data/client/hippo/screens/all.js.erb +3 -0
- data/client/hippo/screens/definition.js +67 -0
- data/client/hippo/screens/group.js +35 -0
- data/client/hippo/screens/index.js +34 -0
- data/client/hippo/screens/instance.js +99 -0
- data/client/hippo/screens/mixins/index.js +0 -0
- data/client/hippo/screens/register.js.erb +14 -0
- data/client/hippo/screens/styles.scss +8 -0
- data/client/hippo/screens/system-settings.jsx +92 -0
- data/client/hippo/screens/system-settings/mailer-config.jsx +53 -0
- data/client/hippo/screens/system-settings/system-settings.scss +8 -0
- data/client/hippo/screens/user-management.jsx +67 -0
- data/client/hippo/screens/user-management/edit-form.jsx +94 -0
- data/client/hippo/screens/user-management/index.scss +7 -0
- data/client/hippo/styles/fonts.scss +23 -0
- data/client/hippo/styles/fonts/_animated.scss +34 -0
- data/client/hippo/styles/fonts/_bordered-pulled.scss +25 -0
- data/client/hippo/styles/fonts/_core.scss +12 -0
- data/client/hippo/styles/fonts/_fixed-width.scss +6 -0
- data/client/hippo/styles/fonts/_icons.scss +789 -0
- data/client/hippo/styles/fonts/_larger.scss +13 -0
- data/client/hippo/styles/fonts/_list.scss +19 -0
- data/client/hippo/styles/fonts/_mixins.scss +60 -0
- data/client/hippo/styles/fonts/_path.scss +10 -0
- data/client/hippo/styles/fonts/_rotated-flipped.scss +20 -0
- data/client/hippo/styles/fonts/_screen-reader.scss +5 -0
- data/client/hippo/styles/fonts/_stacked.scss +20 -0
- data/client/hippo/styles/fonts/_variables.scss +800 -0
- data/client/hippo/styles/fonts/font-awesome.scss +18 -0
- data/client/hippo/styles/fonts/index.scss +2 -0
- data/client/hippo/styles/global.scss +3 -0
- data/client/hippo/styles/global/fancy-header.scss +14 -0
- data/client/hippo/styles/global/mixins.scss +5 -0
- data/client/hippo/styles/global/styles.scss +6 -0
- data/client/hippo/styles/variables.scss +28 -0
- data/client/hippo/testing/index.js +6 -0
- data/client/hippo/testing/matchers.js +14 -0
- data/client/hippo/testing/mocks/fetch.js +54 -0
- data/client/hippo/testing/screens.js +64 -0
- data/client/hippo/testing/utils.js +1 -0
- data/client/hippo/user.js +93 -0
- data/client/hippo/workspace/content.jsx +22 -0
- data/client/hippo/workspace/foo.js +0 -0
- data/client/hippo/workspace/index.jsx +85 -0
- data/client/hippo/workspace/menu-group.jsx +39 -0
- data/client/hippo/workspace/menu-option.jsx +41 -0
- data/client/hippo/workspace/menu.jsx +71 -0
- data/client/hippo/workspace/navbar.jsx +46 -0
- data/client/hippo/workspace/screen.jsx +50 -0
- data/client/hippo/workspace/styles.scss +61 -0
- data/client/hippo/workspace/styles/forms.scss +4 -0
- data/client/hippo/workspace/styles/header.scss +69 -0
- data/client/hippo/workspace/styles/keybindings.scss +6 -0
- data/client/hippo/workspace/styles/layout.scss +230 -0
- data/client/hippo/workspace/styles/screens.scss +15 -0
- data/client/hippo/workspace/styles/tabs.scss +141 -0
- data/client/hippo/workspace/tabs.jsx +60 -0
- data/client/hippo/workspace/viewport.jsx +82 -0
- data/client/images/hippo/ajax-loader.gif +0 -0
- data/client/images/hippo/logo-sm.png +0 -0
- data/coffeelint.json +49 -0
- data/command-reference-files/initial/.babelrc +20 -0
- data/command-reference-files/initial/.eslintrc.js +7 -0
- data/command-reference-files/initial/.gitignore +4 -0
- data/command-reference-files/initial/.rubocop.yml +9 -0
- data/command-reference-files/initial/Gemfile +9 -0
- data/command-reference-files/initial/Guardfile +13 -0
- data/command-reference-files/initial/Rakefile +2 -0
- data/command-reference-files/initial/client/appy-app/components/.gitkeep +0 -0
- data/command-reference-files/initial/client/appy-app/extension.js +32 -0
- data/command-reference-files/initial/client/appy-app/index.js +6 -0
- data/command-reference-files/initial/client/appy-app/models/.gitkeep +0 -0
- data/command-reference-files/initial/client/appy-app/models/base.js +11 -0
- data/command-reference-files/initial/client/appy-app/screens/.gitkeep +0 -0
- data/command-reference-files/initial/client/appy-app/styles.scss +1 -0
- data/command-reference-files/initial/config.ru +7 -0
- data/command-reference-files/initial/config/database.yml +11 -0
- data/command-reference-files/initial/config/initialize.rb +10 -0
- data/command-reference-files/initial/config/jest.config.json +19 -0
- data/command-reference-files/initial/config/jest/babel-transform.js +47 -0
- data/command-reference-files/initial/config/routes.rb +4 -0
- data/command-reference-files/initial/config/screens.rb +10 -0
- data/command-reference-files/initial/config/webpack.config.js +106 -0
- data/command-reference-files/initial/db/.gitkeep +0 -0
- data/command-reference-files/initial/lib/appy-app.rb +15 -0
- data/command-reference-files/initial/lib/appy-app/extension.rb +22 -0
- data/command-reference-files/initial/lib/appy-app/model.rb +11 -0
- data/command-reference-files/initial/lib/appy-app/version.rb +3 -0
- data/command-reference-files/initial/package.json +6 -0
- data/command-reference-files/initial/spec/client/.eslintrc.js +20 -0
- data/command-reference-files/initial/spec/client/setup.js +17 -0
- data/command-reference-files/initial/spec/server/spec_helper.rb +8 -0
- data/command-reference-files/initial/views/index.html +69 -0
- data/command-reference-files/model/client/appy-app/models/test_test.js +12 -0
- data/command-reference-files/model/config/routes.rb +4 -0
- data/command-reference-files/model/db/migrate/20150218032025_create_test_tests.rb +10 -0
- data/command-reference-files/model/lib/appy-app/model.rb +12 -0
- data/command-reference-files/model/lib/appy-app/models/test_test.rb +7 -0
- data/command-reference-files/model/spec/client/models/test_test.spec.js +8 -0
- data/command-reference-files/model/spec/fixtures/appy-app/test_test.yml +11 -0
- data/command-reference-files/model/spec/server/test_test_spec.rb +10 -0
- data/command-reference-files/screen/client/appy-app/extension.js +32 -0
- data/command-reference-files/screen/client/appy-app/screens/ready-set-go.jsx +22 -0
- data/command-reference-files/screen/config/screens.rb +19 -0
- data/command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx +12 -0
- data/config.ru +5 -0
- data/config/database.yml +9 -0
- data/config/jest.config.json +27 -0
- data/config/jest/babel-transform.js +47 -0
- data/config/jest/style-mock.js +2 -0
- data/config/jest/yaml-transform.js +19 -0
- data/config/routes.rb +28 -0
- data/config/screens.rb +42 -0
- data/config/webpack.config.js +105 -0
- data/db/migrate/01_create_system_settings.rb +10 -0
- data/db/migrate/02_create_assets.rb +13 -0
- data/db/migrate/20140615031600_create_users.rb +12 -0
- data/db/seed.rb +1 -0
- data/docs/command.md +114 -0
- data/docs/model.md +217 -0
- data/docs/react.md +137 -0
- data/docs/todo-example-part-1.md +69 -0
- data/docs/welcome.md +0 -0
- data/hippo-fw.gemspec +79 -0
- data/lib/generators/hippo/migrations/install_generator.rb +42 -0
- data/lib/hippo-fw.rb +1 -0
- data/lib/hippo.rb +34 -0
- data/lib/hippo/access.rb +49 -0
- data/lib/hippo/access/authentication_provider.rb +79 -0
- data/lib/hippo/access/config/database.yml +9 -0
- data/lib/hippo/access/config/routes.rb +20 -0
- data/lib/hippo/access/locked_fields.rb +43 -0
- data/lib/hippo/access/public/files/1nty/7ebo/n7k0/8b2ac0bbd97f401951fe40546f977200.png +0 -0
- data/lib/hippo/access/public/files/6hgp/eiw1/8dua/ba944287e36e101713a9c1ad793353b8.png +0 -0
- data/lib/hippo/access/public/files/94bd/9agc/2ua3/33800e285d7145760650ac88d1c558fb.png +0 -0
- data/lib/hippo/access/public/files/cr1e/vfwc/fvrh/0e7fe6ef12d622bfb93e024883c2f81c.png +0 -0
- data/lib/hippo/access/public/files/kezo/fm8j/u6xl/dfc47658aedd8e546abff63366a7285d.png +0 -0
- data/lib/hippo/access/public/files/n5c4/uovf/jec6/7ee9a3519e2b60430e095160a23f1d77.png +0 -0
- data/lib/hippo/access/role.rb +86 -0
- data/lib/hippo/access/role_collection.rb +88 -0
- data/lib/hippo/access/roles/administrator.rb +32 -0
- data/lib/hippo/access/roles/basic_user.rb +13 -0
- data/lib/hippo/access/roles/support.rb +15 -0
- data/lib/hippo/access/test_fixture_extensions.rb +16 -0
- data/lib/hippo/access/track_modifications.rb +79 -0
- data/lib/hippo/access/version.rb +5 -0
- data/lib/hippo/api.rb +23 -0
- data/lib/hippo/api/cable.rb +57 -0
- data/lib/hippo/api/controller_base.rb +299 -0
- data/lib/hippo/api/default_routes.rb +38 -0
- data/lib/hippo/api/error_formatter.rb +37 -0
- data/lib/hippo/api/formatted_reply.rb +62 -0
- data/lib/hippo/api/generic_controller.rb +35 -0
- data/lib/hippo/api/handlers/asset.rb +38 -0
- data/lib/hippo/api/handlers/print.rb +15 -0
- data/lib/hippo/api/handlers/user_session.rb +42 -0
- data/lib/hippo/api/helper_methods.rb +58 -0
- data/lib/hippo/api/pub_sub.rb +36 -0
- data/lib/hippo/api/request_wrapper.rb +105 -0
- data/lib/hippo/api/root.rb +70 -0
- data/lib/hippo/api/routing.rb +111 -0
- data/lib/hippo/api/sprockets_extension.rb +105 -0
- data/lib/hippo/api/to_json.rb +7 -0
- data/lib/hippo/api/updates.rb +37 -0
- data/lib/hippo/asset.rb +18 -0
- data/lib/hippo/capistrano.rb +30 -0
- data/lib/hippo/cli.rb +50 -0
- data/lib/hippo/command.rb +43 -0
- data/lib/hippo/command/app.rb +90 -0
- data/lib/hippo/command/client_config.rb +69 -0
- data/lib/hippo/command/client_model_update.rb +65 -0
- data/lib/hippo/command/console.rb +23 -0
- data/lib/hippo/command/db.rb +36 -0
- data/lib/hippo/command/db.usage +1 -0
- data/lib/hippo/command/generate.rb +24 -0
- data/lib/hippo/command/generate_component.rb +28 -0
- data/lib/hippo/command/generate_component.usage +11 -0
- data/lib/hippo/command/generate_migration.rb +33 -0
- data/lib/hippo/command/generate_model.rb +91 -0
- data/lib/hippo/command/generate_model.usage +45 -0
- data/lib/hippo/command/generate_screen.rb +40 -0
- data/lib/hippo/command/generate_screen.usage +8 -0
- data/lib/hippo/command/guard.rb +18 -0
- data/lib/hippo/command/jest.rb +40 -0
- data/lib/hippo/command/migration_support.rb +29 -0
- data/lib/hippo/command/model_attribute.rb +193 -0
- data/lib/hippo/command/named_command.rb +33 -0
- data/lib/hippo/command/puma.rb +56 -0
- data/lib/hippo/command/server.rb +19 -0
- data/lib/hippo/command/server.usage +3 -0
- data/lib/hippo/command/update.rb +13 -0
- data/lib/hippo/command/update_model.rb +127 -0
- data/lib/hippo/command/update_model.usage +2 -0
- data/lib/hippo/command/webpack.rb +57 -0
- data/lib/hippo/command/webpack_view.rb +32 -0
- data/lib/hippo/concerns/all.rb +15 -0
- data/lib/hippo/concerns/api_path.rb +21 -0
- data/lib/hippo/concerns/asset_uploader.rb +38 -0
- data/lib/hippo/concerns/association_extensions.rb +94 -0
- data/lib/hippo/concerns/attr_accessor_with_default.rb +68 -0
- data/lib/hippo/concerns/code_identifier.rb +43 -0
- data/lib/hippo/concerns/export_associations.rb +52 -0
- data/lib/hippo/concerns/export_join_tables.rb +39 -0
- data/lib/hippo/concerns/export_methods.rb +104 -0
- data/lib/hippo/concerns/export_scope.rb +64 -0
- data/lib/hippo/concerns/exported_limit_evaluator.rb +17 -0
- data/lib/hippo/concerns/pub_sub.rb +127 -0
- data/lib/hippo/concerns/queries.rb +24 -0
- data/lib/hippo/concerns/random_identifier.rb +37 -0
- data/lib/hippo/concerns/sanitize_fields.rb +32 -0
- data/lib/hippo/concerns/set_attribute_data.rb +125 -0
- data/lib/hippo/concerns/sorting_expressions.rb +34 -0
- data/lib/hippo/configuration.rb +143 -0
- data/lib/hippo/db.rb +57 -0
- data/lib/hippo/db/migrations.rb +32 -0
- data/lib/hippo/environment.rb +22 -0
- data/lib/hippo/extension.rb +112 -0
- data/lib/hippo/extension/definition.rb +90 -0
- data/lib/hippo/guard_tasks.rb +62 -0
- data/lib/hippo/hippo_guard_plugin.rb +80 -0
- data/lib/hippo/job.rb +82 -0
- data/lib/hippo/job/failure_logger.rb +33 -0
- data/lib/hippo/logger.rb +64 -0
- data/lib/hippo/mailer.rb +28 -0
- data/lib/hippo/model.rb +24 -0
- data/lib/hippo/multi_server_boot.rb +26 -0
- data/lib/hippo/numbers.rb +72 -0
- data/lib/hippo/rails_engine.rb +5 -0
- data/lib/hippo/rake_tasks.rb +69 -0
- data/lib/hippo/redis.rb +13 -0
- data/lib/hippo/reloadable_sinatra.rb +24 -0
- data/lib/hippo/reloadable_view.rb +13 -0
- data/lib/hippo/screen.rb +152 -0
- data/lib/hippo/spec_helper.rb +141 -0
- data/lib/hippo/strings.rb +56 -0
- data/lib/hippo/system_settings.rb +72 -0
- data/lib/hippo/templates/base.rb +44 -0
- data/lib/hippo/templates/latex.rb +101 -0
- data/lib/hippo/templates/liquid.rb +28 -0
- data/lib/hippo/user.rb +152 -0
- data/lib/hippo/validators/all.rb +2 -0
- data/lib/hippo/validators/email.rb +17 -0
- data/lib/hippo/validators/set.rb +18 -0
- data/lib/hippo/version.rb +5 -0
- data/lib/hippo/workspace.rb +4 -0
- data/lib/hippo/workspace/config/screens.rb +6 -0
- data/package.json +82 -0
- data/spec/client/.eslintrc.js +20 -0
- data/spec/client/access/login-dialog.spec.jsx +28 -0
- data/spec/client/components/__snapshots__/asset.spec.jsx.snap +48 -0
- data/spec/client/components/__snapshots__/network-activity-overlay.spec.jsx.snap +35 -0
- data/spec/client/components/__snapshots__/query-builder.spec.jsx.snap +82 -0
- data/spec/client/components/asset.spec.jsx +16 -0
- data/spec/client/components/data-list.spec.jsx +36 -0
- data/spec/client/components/data-table.spec.jsx +55 -0
- data/spec/client/components/form.spec.jsx +63 -0
- data/spec/client/components/network-activity-overlay.spec.jsx +30 -0
- data/spec/client/components/query-builder.spec.jsx +45 -0
- data/spec/client/components/record-finder.spec.jsx +45 -0
- data/spec/client/extension/base.spec.js +15 -0
- data/spec/client/lib/util.spec.js +48 -0
- data/spec/client/models/asset.spec.js +50 -0
- data/spec/client/models/base.spec.js +95 -0
- data/spec/client/models/collection.spec.js +51 -0
- data/spec/client/models/query.spec.js +243 -0
- data/spec/client/models/sync.spec.js +42 -0
- data/spec/client/models/system-setting.spec.js +19 -0
- data/spec/client/screens/__snapshots__/system-settings.spec.jsx.snap +364 -0
- data/spec/client/screens/__snapshots__/tabs.spec.jsx.snap +127 -0
- data/spec/client/screens/definition.spec.js +24 -0
- data/spec/client/screens/group.spec.js +33 -0
- data/spec/client/screens/instance.spec.js +61 -0
- data/spec/client/screens/system-settings.spec.jsx +22 -0
- data/spec/client/screens/tabs.spec.jsx +36 -0
- data/spec/client/screens/user-management.spec.jsx +48 -0
- data/spec/client/setup.js +12 -0
- data/spec/client/test-logo.json +41 -0
- data/spec/client/test-models.js +94 -0
- data/spec/client/user.spec.js +19 -0
- data/spec/client/workspace/__snapshots__/menu.spec.jsx.snap +380 -0
- data/spec/client/workspace/menu.spec.jsx +52 -0
- data/spec/factories/user.rb +11 -0
- data/spec/fixtures/logo.png +0 -0
- data/spec/fixtures/system_settings.yml +8 -0
- data/spec/fixtures/test_printer.tex +22 -0
- data/spec/fixtures/user.yml +2 -0
- data/spec/hippo/components/grid/GridSpec.coffee +56 -0
- data/spec/hippo/components/grid/PopoverEditorSpec.coffee +47 -0
- data/spec/hippo/components/grid/RowEditorSpec.coffee +98 -0
- data/spec/hippo/components/select-field/SelectFieldSpec.coffee +106 -0
- data/spec/hippo/components/shared/NetworkActivityOverlaySpec.coffee +34 -0
- data/spec/hippo/helpers/.gitkeep +0 -0
- data/spec/hippo/helpers/hippo-helpers.coffee +5 -0
- data/spec/hippo/helpers/jasmine-matchers.js +1580 -0
- data/spec/hippo/helpers/mock-ajax.js +573 -0
- data/spec/hippo/models/AssociationMapSpec.coffee +85 -0
- data/spec/hippo/models/AssociationProxySpec.coffee +76 -0
- data/spec/hippo/models/BaseSpec.coffee +155 -0
- data/spec/hippo/models/CollectionSpec.coffee +32 -0
- data/spec/hippo/models/EnumMapSpec.coffee +26 -0
- data/spec/hippo/models/PubSubSpec.coffee +71 -0
- data/spec/hippo/models/QuerySpec.coffee +19 -0
- data/spec/hippo/models/SyncSpec.coffee +28 -0
- data/spec/hippo/models/UserSpec.coffee +17 -0
- data/spec/hippo/react/mixins/DataSpec.coffee +74 -0
- data/spec/hippo/screens/DefinitionsSpec.coffee +33 -0
- data/spec/hippo/views/BaseSpec.coffee +147 -0
- data/spec/hippo/views/FormBindingsSpec.coffee +32 -0
- data/spec/server/api/controller_base_spec.rb +101 -0
- data/spec/server/assertions.rb +11 -0
- data/spec/server/asset_spec.rb +42 -0
- data/spec/server/command_spec.rb +73 -0
- data/spec/server/concerns/api_path_spec.rb +20 -0
- data/spec/server/concerns/association_extensions_spec.rb +24 -0
- data/spec/server/concerns/attr_accessor_with_default_spec.rb +63 -0
- data/spec/server/concerns/export_methods_spec.rb +34 -0
- data/spec/server/concerns/export_scope_spec.rb +14 -0
- data/spec/server/concerns/exported_limits_spec.rb +51 -0
- data/spec/server/concerns/pub_sub_spec.rb +132 -0
- data/spec/server/concerns/set_attribute_data_spec.rb +76 -0
- data/spec/server/concerns/sorting_expressions_spec.rb +34 -0
- data/spec/server/concerns/track_modifications_spec.rb +18 -0
- data/spec/server/configuration_spec.rb +26 -0
- data/spec/server/job_spec.rb +54 -0
- data/spec/server/mailer_spec.rb +33 -0
- data/spec/server/numbers_spec.rb +25 -0
- data/spec/server/print/form_spec.rb +29 -0
- data/spec/server/spec_helper.rb +74 -0
- data/spec/server/strings_spec.rb +41 -0
- data/spec/server/system_settings_spec.rb +39 -0
- data/tasks/migrations.rake +22 -0
- data/tasks/publish.rake +8 -0
- data/templates/.babelrc +20 -0
- data/templates/.gitignore +4 -0
- data/templates/Gemfile +9 -0
- data/templates/Guardfile +13 -0
- data/templates/Rakefile +2 -0
- data/templates/client/components/.gitkeep +0 -0
- data/templates/client/components/BaseComponent.coffee +9 -0
- data/templates/client/components/Component.cjsx +4 -0
- data/templates/client/components/template.html +3 -0
- data/templates/client/extension.js +32 -0
- data/templates/client/index.js +6 -0
- data/templates/client/models/base.js +11 -0
- data/templates/client/models/model.js +17 -0
- data/templates/client/screens/screen.jsx +22 -0
- data/templates/client/styles.scss +1 -0
- data/templates/config.ru +7 -0
- data/templates/config/database.yml +11 -0
- data/templates/config/initialize.rb +10 -0
- data/templates/config/jest.config.json +19 -0
- data/templates/config/jest/babel-transform.js +47 -0
- data/templates/config/routes.rb +4 -0
- data/templates/config/screen.rb +9 -0
- data/templates/config/screens.rb +10 -0
- data/templates/config/webpack.config.js +106 -0
- data/templates/db/create_table_migration.rb +19 -0
- data/templates/gitignore +4 -0
- data/templates/js/config-data.js +10 -0
- data/templates/js/jest.config.json +11 -0
- data/templates/js/root-view.html +71 -0
- data/templates/js/screen-definitions.js +22 -0
- data/templates/lib/namespace.rb +15 -0
- data/templates/lib/namespace/base_model.rb +11 -0
- data/templates/lib/namespace/extension.rb +22 -0
- data/templates/lib/namespace/model.rb +7 -0
- data/templates/lib/namespace/version.rb +3 -0
- data/templates/public/.gitkeep +0 -0
- data/templates/spec/client/components/ComponentSpec.coffee +5 -0
- data/templates/spec/client/models/model.spec.js +8 -0
- data/templates/spec/client/screen.spec.jsx +12 -0
- data/templates/spec/client/setup.js +17 -0
- data/templates/spec/fixtures/namespace/model.yml +16 -0
- data/templates/spec/server/model_spec.rb +10 -0
- data/templates/spec/server/spec_helper.rb +8 -0
- data/test.js +7 -0
- data/views/hippo_root_view.erb +68 -0
- data/views/index.html +71 -0
- data/yard_ext/all.rb +9 -0
- data/yard_ext/code_identifier_handler.rb +33 -0
- data/yard_ext/concern_meta_methods.rb +60 -0
- data/yard_ext/config_options.rb +27 -0
- data/yard_ext/exported_scope.rb +4 -0
- data/yard_ext/immutable_handler.rb +17 -0
- data/yard_ext/json_attr_accessor.rb +22 -0
- data/yard_ext/locked_fields_handler.rb +21 -0
- data/yard_ext/templates/default/layout/html/layout.erb +20 -0
- data/yard_ext/templates/default/method_details/html/github_link.erb +1 -0
- data/yard_ext/templates/default/method_details/setup.rb +3 -0
- data/yard_ext/validators.rb +1 -0
- data/yard_ext/visible_id_handler.rb +38 -0
- data/yarn.lock +6562 -0
- metadata +1182 -0
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
import './boot';
|
@@ -0,0 +1,31 @@
|
|
1
|
+
@import "styles/variables";
|
2
|
+
@import "styles/fonts";
|
3
|
+
@import "styles/mixins/all";
|
4
|
+
|
5
|
+
html { height: 100%; }
|
6
|
+
body { margin: 0; height: 100%; }
|
7
|
+
.hippo-root {
|
8
|
+
height: 100%;
|
9
|
+
.hippo > div { height: 100%; }
|
10
|
+
}
|
11
|
+
|
12
|
+
.hippo {
|
13
|
+
height: 100%;
|
14
|
+
@import "styles/global";
|
15
|
+
|
16
|
+
<% Hippo::Extensions.each_asset(phase: :all, type: :css) do | asset | %>
|
17
|
+
@import "<%= asset %>";
|
18
|
+
<% end %>
|
19
|
+
|
20
|
+
@import "hippo/components/shared/styles";
|
21
|
+
|
22
|
+
<% Hippo::Components.enabled_with_dependencies(self) do | component | %>
|
23
|
+
@import "hippo/components/<%= component %>/styles";
|
24
|
+
<% end %>
|
25
|
+
|
26
|
+
<% if !Hippo.config.initial_workspace_screen_id.blank? &&
|
27
|
+
screen = Hippo::Screen[Hippo.config.initial_workspace_screen_id] %>
|
28
|
+
@import "<%= screen.css.remove(/\.css$/) + "/index.scss" %>";
|
29
|
+
<% end %>
|
30
|
+
|
31
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
//= require ./namespace
|
2
|
+
//= require ./utilFunctions
|
3
|
+
//= require ./objToParam
|
4
|
+
//= require ./ModuleSupport
|
5
|
+
//= require ./loader
|
6
|
+
//= require ./RequestAssets
|
7
|
+
//= require ./MakeBaseClass
|
8
|
+
//= require ./el
|
9
|
+
//= require ./polyfills
|
10
|
+
//= require ./dom
|
11
|
+
//= require ./format
|
12
|
+
//= require ./promise_helpers
|
13
|
+
//= require ./results
|
14
|
+
//= require ./ResizeSensor
|
@@ -0,0 +1,45 @@
|
|
1
|
+
// this file's imports should be kept as small as possible, it'll be typical used
|
2
|
+
// to bootstrap a remote lib
|
3
|
+
import whenDomReady from 'when-dom-ready';
|
4
|
+
|
5
|
+
const PENDING = Symbol('PENDING');
|
6
|
+
const ERROR = Symbol('ERROR');
|
7
|
+
const COMPLETE = Symbol('COMPLETE');
|
8
|
+
|
9
|
+
export default class Bootstrap {
|
10
|
+
|
11
|
+
constructor(options = {}) {
|
12
|
+
this.options = options;
|
13
|
+
this.callbacks = { onReady: [] };
|
14
|
+
this.status = PENDING;
|
15
|
+
if (this.options.onReady) { this.onReady(this.options.onReady); }
|
16
|
+
|
17
|
+
whenDomReady(() => this.readLoadUrl());
|
18
|
+
}
|
19
|
+
|
20
|
+
tagMatches(tag) {
|
21
|
+
return !!tag.src.match(this.options.srcTag);
|
22
|
+
}
|
23
|
+
|
24
|
+
readLoadUrl() {
|
25
|
+
const tags = document.querySelectorAll('script');
|
26
|
+
for (let i = 0; i < tags.length; i += 1) {
|
27
|
+
const tag = tags[i];
|
28
|
+
if (this.tagMatches(tag)) {
|
29
|
+
this.signalDone(tag.src.replace(this.options.srcTag, ''), tag.dataset);
|
30
|
+
return;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
this.state = ERROR;
|
34
|
+
console.error('Unable to find script tag that Stockor was loaded from'); // eslint-disable-line no-console
|
35
|
+
}
|
36
|
+
|
37
|
+
onReady(cb) {
|
38
|
+
return this.callbacks.onReady.push(cb);
|
39
|
+
}
|
40
|
+
|
41
|
+
signalDone(host, data) {
|
42
|
+
this.status = COMPLETE;
|
43
|
+
this.callbacks.onReady.map(cb => cb(host, data));
|
44
|
+
}
|
45
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
let doc = window.document;
|
2
|
+
export function setDocument(newDocument) {
|
3
|
+
doc = newDocument;
|
4
|
+
}
|
5
|
+
|
6
|
+
const insertBefore = () => {
|
7
|
+
const refs = doc.getElementsByTagName('head')[0].childNodes;
|
8
|
+
return refs[refs.length - 1];
|
9
|
+
};
|
10
|
+
|
11
|
+
// https://github.com/filamentgroup/loadJS/blob/master/loadJS.js
|
12
|
+
export function loadJS(src, cb) {
|
13
|
+
const ref = insertBefore();
|
14
|
+
const script = doc.createElement('script');
|
15
|
+
script.src = src;
|
16
|
+
script.async = true;
|
17
|
+
ref.parentNode.insertBefore(script, ref);
|
18
|
+
if (cb) {
|
19
|
+
script.onload = ev => cb(script, ev);
|
20
|
+
}
|
21
|
+
return script;
|
22
|
+
}
|
23
|
+
|
24
|
+
|
25
|
+
// https://github.com/filamentgroup/loadCSS/blob/master/src/loadCSS.js
|
26
|
+
export function loadCSS(href, cb) {
|
27
|
+
const ss = doc.createElement('link');
|
28
|
+
const ref = insertBefore();
|
29
|
+
|
30
|
+
const sheets = doc.styleSheets;
|
31
|
+
ss.rel = 'stylesheet';
|
32
|
+
ss.href = href;
|
33
|
+
ss.media = 'only x';
|
34
|
+
|
35
|
+
ref.parentNode.insertBefore(ss, ref.nextSibling);
|
36
|
+
|
37
|
+
// A method (exposed on return object for external use) that mimics onload
|
38
|
+
// by polling document.styleSheets until it includes the new sheet.
|
39
|
+
const onloadcssdefined = (onDefCb) => {
|
40
|
+
const resolvedHref = ss.href;
|
41
|
+
for (let i = 0; i < sheets.length; i += 1) {
|
42
|
+
if (sheets[i].href === resolvedHref) {
|
43
|
+
onDefCb(sheets[i]);
|
44
|
+
return;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
setTimeout(() => {
|
48
|
+
onloadcssdefined(onDefCb);
|
49
|
+
});
|
50
|
+
};
|
51
|
+
|
52
|
+
function loadCB(ev) {
|
53
|
+
if (ss.addEventListener) {
|
54
|
+
ss.removeEventListener('load', loadCB);
|
55
|
+
}
|
56
|
+
ss.media = 'all';
|
57
|
+
if (cb) { cb(ss, ev); }
|
58
|
+
}
|
59
|
+
|
60
|
+
// once loaded, set link's media back to `all` so that the stylesheet applies once it loads
|
61
|
+
if (ss.addEventListener) {
|
62
|
+
ss.addEventListener('load', loadCB);
|
63
|
+
} else {
|
64
|
+
onloadcssdefined(loadCB);
|
65
|
+
}
|
66
|
+
return ss;
|
67
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import { isArray, pick, isEmpty, keys } from 'lodash';
|
2
|
+
import { loadCSS, loadJS } from './loader';
|
3
|
+
import { logger } from './util';
|
4
|
+
|
5
|
+
class AssetLoader {
|
6
|
+
constructor(urls, cb) {
|
7
|
+
let finished = 0;
|
8
|
+
const completed = {};
|
9
|
+
const onComplete = (url, success, error = false) => {
|
10
|
+
finished += 1;
|
11
|
+
completed[url] = { success: true === success, error };
|
12
|
+
if (finished === urls.length) { cb(completed); }
|
13
|
+
};
|
14
|
+
|
15
|
+
Array.from(urls).forEach((baseUrl) => {
|
16
|
+
const url = `http://localhost:8889${baseUrl}?${parseInt(Math.random() * 100000, 10)}`;
|
17
|
+
if (/.css($|\?)/.test(url)) {
|
18
|
+
loadCSS(url, onComplete);
|
19
|
+
} else {
|
20
|
+
loadJS(url, onComplete);
|
21
|
+
}
|
22
|
+
});
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
export default function RequestAssets(...urlArgs) {
|
27
|
+
const urls = ((1 === urlArgs.length) && isArray(urlArgs[0])) ? urlArgs[0] : urlArgs;
|
28
|
+
return new Promise((resolve, reject) =>
|
29
|
+
new AssetLoader(urls, (completed) => {
|
30
|
+
const failures = pick(completed, status => !status.success);
|
31
|
+
if (isEmpty(failures)) {
|
32
|
+
return resolve(completed);
|
33
|
+
}
|
34
|
+
logger.warn(`${keys(failures).join(',')} failed to load`);
|
35
|
+
return reject(failures);
|
36
|
+
}),
|
37
|
+
);
|
38
|
+
}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
if (!window.Argosity) { window.Argosity = {}; }
|
2
|
+
|
3
|
+
const DEFAULT_DURATION = 750; // milliseconds
|
4
|
+
|
5
|
+
const EASE_IN_OUT = function(t) {
|
6
|
+
if (t < .5) { return 4 * t * t * t; } else { return ((t - 1) * ((2 * t) - 2) * ((2 * t) - 2)) + 1; }
|
7
|
+
};
|
8
|
+
|
9
|
+
const POSITION = function(start, end, elapsed, duration) {
|
10
|
+
if (elapsed > duration) {
|
11
|
+
return end;
|
12
|
+
} else {
|
13
|
+
return start + ((end - start) * EASE_IN_OUT(elapsed / duration));
|
14
|
+
}
|
15
|
+
};
|
16
|
+
|
17
|
+
|
18
|
+
export default class SmoothScroll {
|
19
|
+
|
20
|
+
constructor(link, destination, options) {
|
21
|
+
this.link = link;
|
22
|
+
this.destination = destination;
|
23
|
+
if (options == null) { options = {}; }
|
24
|
+
this.options = options;
|
25
|
+
if (!(this.destination instanceof Element)) {
|
26
|
+
this.destination = document.querySelector(this.destination);
|
27
|
+
}
|
28
|
+
if (!(this.link instanceof Element)) {
|
29
|
+
this.link = document.querySelector(this.link);
|
30
|
+
}
|
31
|
+
if (this.link && this.destination) {
|
32
|
+
this.link.addEventListener('click', () => this.scrollToElement());
|
33
|
+
} else {
|
34
|
+
console.warn("failed to setup link", this.link, this.destination);
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
scrollToElement() {
|
39
|
+
return this.constructor.scroll(this.destination, this.options.duration || DEFAULT_DURATION);
|
40
|
+
}
|
41
|
+
|
42
|
+
static scroll(destination, duration) {
|
43
|
+
if (duration == null) { duration = DEFAULT_DURATION; }
|
44
|
+
if (!(destination instanceof Element)) {
|
45
|
+
destination = document.querySelector(destination);
|
46
|
+
}
|
47
|
+
|
48
|
+
if (!destination) {
|
49
|
+
console.warn("failed to scroll to", destination);
|
50
|
+
return false;
|
51
|
+
}
|
52
|
+
|
53
|
+
const startPos = window.pageYOffset;
|
54
|
+
|
55
|
+
const endPos =
|
56
|
+
destination.getBoundingClientRect().top -
|
57
|
+
document.body.getBoundingClientRect().top;
|
58
|
+
|
59
|
+
const startTime = Date.now();
|
60
|
+
|
61
|
+
var step = function() {
|
62
|
+
const elapsed = Date.now() - startTime;
|
63
|
+
window.scroll(0, POSITION(startPos, endPos, elapsed, duration) );
|
64
|
+
if (elapsed < duration) { return window.requestAnimationFrame(step); }
|
65
|
+
};
|
66
|
+
return step();
|
67
|
+
}
|
68
|
+
};
|
@@ -0,0 +1,101 @@
|
|
1
|
+
import logger from 'loglevel';
|
2
|
+
import {
|
3
|
+
trim, isDate, isNaN, isError, isElement, isFunction, isBoolean, isRegExp,
|
4
|
+
isNumber, isObject, isEmpty, isNil, isString, each,
|
5
|
+
} from 'lodash';
|
6
|
+
import pluralize from 'pluralize';
|
7
|
+
|
8
|
+
function lcDash(char, match, index) {
|
9
|
+
return (0 === index ? '' : '_') + char.toLowerCase();
|
10
|
+
}
|
11
|
+
|
12
|
+
export { logger };
|
13
|
+
|
14
|
+
export function emptyFn() {}
|
15
|
+
|
16
|
+
export function capitalize(str) {
|
17
|
+
return str.charAt(0).toUpperCase() + str.slice(1);
|
18
|
+
}
|
19
|
+
|
20
|
+
export function dasherize(str) {
|
21
|
+
return trim(str)
|
22
|
+
.replace(/([A-Z])/g, lcDash)
|
23
|
+
.replace(/[-_\s]+/g, '-')
|
24
|
+
.toLowerCase();
|
25
|
+
}
|
26
|
+
|
27
|
+
export function titleize(words) {
|
28
|
+
if ('string' !== typeof words) { return words; }
|
29
|
+
return (words)
|
30
|
+
.replace(/[\W_]/g, ' ')
|
31
|
+
.replace(/\S+/g, word => (word.charAt(0).toUpperCase() + word.slice(1)),
|
32
|
+
);
|
33
|
+
}
|
34
|
+
|
35
|
+
export function underscored(str) {
|
36
|
+
return trim(str)
|
37
|
+
.replace(/([a-z\d])([A-Z]+)/g, '$1_$2')
|
38
|
+
.replace(/[-\s]+/g, '_')
|
39
|
+
.toLowerCase();
|
40
|
+
}
|
41
|
+
|
42
|
+
export function humanize(str) {
|
43
|
+
return capitalize(trim(underscored(str)
|
44
|
+
.replace(/_id$/, '')
|
45
|
+
.replace(/_/g, ' ')));
|
46
|
+
}
|
47
|
+
|
48
|
+
export function renameProperties(object, keyMap) {
|
49
|
+
each(keyMap, (to, from) => {
|
50
|
+
if (object[from]) {
|
51
|
+
object[to] = object[from]; // eslint-disable-line no-param-reassign
|
52
|
+
delete object[from]; // eslint-disable-line no-param-reassign
|
53
|
+
}
|
54
|
+
});
|
55
|
+
return object;
|
56
|
+
}
|
57
|
+
|
58
|
+
export function toSentence(sentence, comma = ', ', nd = ' and ') {
|
59
|
+
let words = isString(sentence) ? sentence.split(' ') : sentence;
|
60
|
+
if (null == words) { words = []; }
|
61
|
+
const last = words.pop();
|
62
|
+
if (last) {
|
63
|
+
return words.length ? [words.join(comma), last].join(nd) : last;
|
64
|
+
}
|
65
|
+
return '';
|
66
|
+
}
|
67
|
+
|
68
|
+
export function singular(str) {
|
69
|
+
return pluralize.singular(str);
|
70
|
+
}
|
71
|
+
|
72
|
+
export function classify(str) {
|
73
|
+
return str
|
74
|
+
.replace(/\S+/g, word => (word.charAt(0).toUpperCase() + word.slice(1)))
|
75
|
+
.replace(/-\S+/g, word => (word.charAt(1).toUpperCase() + word.slice(2)))
|
76
|
+
.replace(/\/\S+/g, word => (`::${word.charAt(1).toUpperCase()}${word.slice(2)}`))
|
77
|
+
.replace(/\s/g, '');
|
78
|
+
}
|
79
|
+
|
80
|
+
export function isBlank(value) {
|
81
|
+
switch (true) {
|
82
|
+
case isDate(value):
|
83
|
+
return isNaN(value.getDate());
|
84
|
+
case isError(value):
|
85
|
+
case isNaN(value):
|
86
|
+
return true;
|
87
|
+
case isElement(value):
|
88
|
+
case isFunction(value):
|
89
|
+
case isBoolean(value):
|
90
|
+
case isRegExp(value):
|
91
|
+
return false;
|
92
|
+
case isNumber(value):
|
93
|
+
return !value;
|
94
|
+
case isObject(value):
|
95
|
+
return isEmpty(value);
|
96
|
+
case isString(value):
|
97
|
+
return isEmpty(trim(value));
|
98
|
+
default:
|
99
|
+
return isNil(value);
|
100
|
+
}
|
101
|
+
}
|
@@ -0,0 +1,208 @@
|
|
1
|
+
import { find, remove, extend } from 'lodash';
|
2
|
+
import { logger } from '../lib/logger';
|
3
|
+
import {
|
4
|
+
BaseModel,
|
5
|
+
} from '../models/base';
|
6
|
+
|
7
|
+
import User from '../user';
|
8
|
+
import Config from '../config';
|
9
|
+
|
10
|
+
const ActionCable = {};
|
11
|
+
|
12
|
+
class ModelConfig {
|
13
|
+
|
14
|
+
constructor(type, model) {
|
15
|
+
this.type = type;
|
16
|
+
this.id = model.getId();
|
17
|
+
this.channel = `${model.identifiedBy}/${this.id}`;
|
18
|
+
this.count = 0;
|
19
|
+
this.models = [];
|
20
|
+
}
|
21
|
+
|
22
|
+
add(model) {
|
23
|
+
if (0 === this.count) {
|
24
|
+
// Hippo.Models.PubSub.channel.subscribe(this.channel);
|
25
|
+
// __guard__(Hippo.Models.PubSub.channel, x => x
|
26
|
+
// .subscribe(this.channel)); // , @mbCallBack(@models))
|
27
|
+
}
|
28
|
+
this.count += 1;
|
29
|
+
const config = this.modelConfig(model);
|
30
|
+
return (config.count += 1);
|
31
|
+
}
|
32
|
+
|
33
|
+
modelConfig(model) {
|
34
|
+
let config = find(this.models, { model });
|
35
|
+
if (!config) {
|
36
|
+
config = { model, count: 0 };
|
37
|
+
this.models.push(config);
|
38
|
+
}
|
39
|
+
return config;
|
40
|
+
}
|
41
|
+
|
42
|
+
remove(model) {
|
43
|
+
const config = find(this.models, { model });
|
44
|
+
if (!config) { return null; }
|
45
|
+
this.count -= 1;
|
46
|
+
if (0 === this.count) { // all removed, just unsubscribe
|
47
|
+
return this.unsubscribe();
|
48
|
+
}
|
49
|
+
config.count -= 1;
|
50
|
+
if (0 === config.count) { return remove(this.models, { model }); }
|
51
|
+
return null;
|
52
|
+
}
|
53
|
+
|
54
|
+
unsubscribe() {
|
55
|
+
// __guard__(Hippo.Models.PubSub.channel, x => x.unsubscribe(this.channel));
|
56
|
+
return delete this.type.records[this.id];
|
57
|
+
}
|
58
|
+
|
59
|
+
onChange(data) {
|
60
|
+
return Array.from(this.models).map(config => config.model.addChangeSet(data));
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
class ModelType {
|
65
|
+
|
66
|
+
constructor(attr) {
|
67
|
+
extend(this, attr);
|
68
|
+
this.records = {};
|
69
|
+
}
|
70
|
+
|
71
|
+
add(model) {
|
72
|
+
const config = this.records[model.id] || (
|
73
|
+
this.records[model.id] = new ModelConfig(this, model)
|
74
|
+
);
|
75
|
+
return config.add(model);
|
76
|
+
}
|
77
|
+
|
78
|
+
remove(model) {
|
79
|
+
return this.records[model.id] && this.records[model.id].remove(model);
|
80
|
+
}
|
81
|
+
|
82
|
+
onChange(id, data) {
|
83
|
+
return this.records[id].onChange(data);
|
84
|
+
}
|
85
|
+
|
86
|
+
unsubscribeAll() {
|
87
|
+
return (() => {
|
88
|
+
const result = [];
|
89
|
+
this.recoards.forEach((record) => {
|
90
|
+
result.push(record.unsubscribe());
|
91
|
+
});
|
92
|
+
return result;
|
93
|
+
})();
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
class ModelTypesCollection extends BaseModel {
|
98
|
+
static initClass() {
|
99
|
+
this.prototype.model = ModelType;
|
100
|
+
}
|
101
|
+
|
102
|
+
forModel(model) {
|
103
|
+
const path = model.identifiedBy;
|
104
|
+
return this.get(path) || this.add({ id: path });
|
105
|
+
}
|
106
|
+
}
|
107
|
+
ModelTypesCollection.initClass();
|
108
|
+
|
109
|
+
const CableChannel = {};
|
110
|
+
|
111
|
+
const PubSub = {
|
112
|
+
|
113
|
+
types: new ModelTypesCollection(),
|
114
|
+
|
115
|
+
add(model) {
|
116
|
+
// if (!__guardMethod__(model, 'isPersistent',
|
117
|
+
// o => o.isPersistent())) { return; }
|
118
|
+
return this.types.forModel(model).add(model);
|
119
|
+
},
|
120
|
+
|
121
|
+
remove(model) {
|
122
|
+
// if (!model || !__guardMethod__(model, 'isPersistent',
|
123
|
+
// o => o.isPersistent())) { return; }
|
124
|
+
return this.types.forModel(model).remove(model);
|
125
|
+
},
|
126
|
+
|
127
|
+
// instanceFor(model_klass, id) {
|
128
|
+
// // const path = _.result(model_klass.prototype, 'api_path');
|
129
|
+
// //return __guard__(__guard__(__guard__(this.types.get(path),
|
130
|
+
// // x2 => x2.records[id]), x1 => x1.models[0]), x => x.model);
|
131
|
+
// },
|
132
|
+
|
133
|
+
// clear() {
|
134
|
+
// return this.types = new ModelTypesCollection();
|
135
|
+
// },
|
136
|
+
|
137
|
+
// initialize() {
|
138
|
+
// Hippo.current_user.on('change:isLoggedIn', _.bind(this.onLoginChange, this));
|
139
|
+
// if (Hippo.current_user.isLoggedIn) { return this.onLoginChange(); }
|
140
|
+
// },
|
141
|
+
|
142
|
+
// onChange(path, id, data) {
|
143
|
+
// return this.types.get(path).onChange(id, data);
|
144
|
+
// },
|
145
|
+
|
146
|
+
onLoginChange() {
|
147
|
+
if (User.isLoggedIn) {
|
148
|
+
const url = `${Config.api_host}${Config.api_path}/ws`;
|
149
|
+
this.cable = ActionCable.createConsumer(url);
|
150
|
+
this.channel = this.cable.subscriptions.create(
|
151
|
+
'Hippo::API::PubSub', CableChannel,
|
152
|
+
);
|
153
|
+
}
|
154
|
+
PubSub.types.each(t => t.unsubscribeAll());
|
155
|
+
delete this.channel;
|
156
|
+
this.cable.disconnect();
|
157
|
+
return delete this.cable;
|
158
|
+
},
|
159
|
+
|
160
|
+
};
|
161
|
+
|
162
|
+
const CHANNEL_SPLITTER = new RegExp('^(.*):(.*)/([^/]+)$');
|
163
|
+
|
164
|
+
extend(CableChannel, {
|
165
|
+
connected() {
|
166
|
+
// return this.subscribe('file-change', () => HotReload.initiate(changes));
|
167
|
+
},
|
168
|
+
|
169
|
+
subscribe(channel) {
|
170
|
+
logger.info(`[pubsub] subscribe to: ${channel}`);
|
171
|
+
return this.perform('on', { channel });
|
172
|
+
},
|
173
|
+
|
174
|
+
unsubscribe(channel) {
|
175
|
+
logger.info(`[pubsub] unsubscribe from: ${channel}`);
|
176
|
+
return this.perform('off', { channel });
|
177
|
+
},
|
178
|
+
|
179
|
+
received(data) {
|
180
|
+
const [channel, _, model, id] = Array.from(
|
181
|
+
data.channel.match(CHANNEL_SPLITTER),
|
182
|
+
);
|
183
|
+
logger.info(`[pubsub] change recvd for: ${channel}`);
|
184
|
+
PubSub.onChange(
|
185
|
+
model, id, _.omit(data, 'channel'),
|
186
|
+
);
|
187
|
+
},
|
188
|
+
|
189
|
+
});
|
190
|
+
|
191
|
+
export function start() {
|
192
|
+
// PubSub.initialize();
|
193
|
+
}
|
194
|
+
|
195
|
+
export function stop() {
|
196
|
+
PubSub.kill();
|
197
|
+
}
|
198
|
+
|
199
|
+
|
200
|
+
function __guard__(value, transform) {
|
201
|
+
return ('undefined' !== typeof value && null !== value) ? transform(value) : undefined;
|
202
|
+
}
|
203
|
+
function __guardMethod__(obj, methodName, transform) {
|
204
|
+
if ('undefined' !== typeof obj && null !== obj && 'function' === typeof obj[methodName]) {
|
205
|
+
return transform(obj, methodName);
|
206
|
+
}
|
207
|
+
return undefined;
|
208
|
+
}
|