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
@@ -0,0 +1,51 @@
|
|
1
|
+
import { autorun } from 'mobx';
|
2
|
+
import { Box } from '../test-models';
|
3
|
+
|
4
|
+
describe('Model Collection Test', () => {
|
5
|
+
it('adds items specific for each model', () => {
|
6
|
+
const collection = Box.Collection.create();
|
7
|
+
expect(Box.identifiedBy).toEqual('test/box');
|
8
|
+
collection.push({ width: 3, height: 3, depth: 3 });
|
9
|
+
const box = collection[0];
|
10
|
+
expect(box).toBeInstanceOf(Box);
|
11
|
+
expect(box.volume).toBe(27);
|
12
|
+
});
|
13
|
+
|
14
|
+
it('has custom properties are observable', () => {
|
15
|
+
const collection = Box.Collection.create();
|
16
|
+
const spy = jest.fn();
|
17
|
+
autorun(() => { spy(collection.lastServerMessage); });
|
18
|
+
expect(spy).toHaveBeenCalledTimes(1);
|
19
|
+
collection.lastServerMessage = 'test-2';
|
20
|
+
expect(collection.lastServerMessage).toEqual('test-2');
|
21
|
+
expect(spy).toHaveBeenCalledTimes(2);
|
22
|
+
expect(spy).toHaveBeenLastCalledWith('test-2');
|
23
|
+
});
|
24
|
+
|
25
|
+
it('can fetch', () => {
|
26
|
+
fetch.mockResponseOnce(JSON.stringify({ data: [{ width: 12, height: 12, depth: 10 }] }));
|
27
|
+
Box.Collection.create().fetch().then((collection) => {
|
28
|
+
expect(fetch).lastCalledWith(
|
29
|
+
'/api/test/boxes.json',
|
30
|
+
{ headers: { 'Content-Type': 'application/json' } },
|
31
|
+
);
|
32
|
+
expect(collection.length).toEqual(1);
|
33
|
+
expect(collection[0].volume).toBe(1440);
|
34
|
+
});
|
35
|
+
});
|
36
|
+
|
37
|
+
it('can be initialized with models', () => {
|
38
|
+
const collection = Box.Collection.create([{ width: 3, height: 3, depth: 3 }]);
|
39
|
+
expect(collection[0].volume).toBe(27);
|
40
|
+
});
|
41
|
+
|
42
|
+
it('can set default attributes', () => {
|
43
|
+
const collection = Box.Collection.create(
|
44
|
+
[{ width: 3 }],
|
45
|
+
{ defaults: { label: 'paper box' } },
|
46
|
+
);
|
47
|
+
expect(collection[0].width).toBe(3); // doesn't overwrite
|
48
|
+
collection.push({ });
|
49
|
+
expect(collection[1].label).toEqual('paper box');
|
50
|
+
});
|
51
|
+
});
|
@@ -0,0 +1,243 @@
|
|
1
|
+
import Config from 'hippo/config';
|
2
|
+
import Sync from 'hippo/models/sync';
|
3
|
+
|
4
|
+
import { map, find, range, shuffle } from 'lodash';
|
5
|
+
|
6
|
+
import Clause from 'hippo/models/query/clause';
|
7
|
+
import Query from 'hippo/models/query';
|
8
|
+
import { Box } from '../test-models';
|
9
|
+
|
10
|
+
jest.mock('hippo/models/sync');
|
11
|
+
jest.useFakeTimers();
|
12
|
+
describe('Model Queries', () => {
|
13
|
+
let query;
|
14
|
+
|
15
|
+
beforeEach(() => {
|
16
|
+
query = new Query({
|
17
|
+
src: Box,
|
18
|
+
fields: [
|
19
|
+
{ id: 'id', visible: false, queryable: false },
|
20
|
+
{ id: 'computed', title: 'IsAdmin?', loadable: false },
|
21
|
+
{ id: 'label' },
|
22
|
+
{ id: 'width' },
|
23
|
+
{ id: 'height' },
|
24
|
+
{ id: 'depth', visible: false },
|
25
|
+
],
|
26
|
+
});
|
27
|
+
});
|
28
|
+
|
29
|
+
it('autoloads query when changed', () => {
|
30
|
+
query.fetch = jest.fn();
|
31
|
+
query.autoFetch = true;
|
32
|
+
expect(query.fetch).toHaveBeenCalled();
|
33
|
+
query.clauses[0].value = 'test value';
|
34
|
+
jest.runAllTimers();
|
35
|
+
expect(query.fetch).toHaveBeenCalledTimes(2);
|
36
|
+
query.clauses[0].value = 'test two value';
|
37
|
+
jest.runAllTimers();
|
38
|
+
expect(query.fetch).toHaveBeenCalledTimes(3);
|
39
|
+
|
40
|
+
query.autoFetch = false;
|
41
|
+
query.clauses[0].value = 'yet another value';
|
42
|
+
jest.runAllTimers();
|
43
|
+
expect(query.fetch).toHaveBeenCalledTimes(3);
|
44
|
+
});
|
45
|
+
|
46
|
+
it('calculates fields', () => {
|
47
|
+
const q = new Query({ src: Box });
|
48
|
+
expect(q.src).toEqual(Box);
|
49
|
+
expect(q.clauses).toHaveLength(1);
|
50
|
+
const clause = q.clauses[0];
|
51
|
+
expect(clause).toBeInstanceOf(Clause);
|
52
|
+
expect(clause.query).toBe(q);
|
53
|
+
});
|
54
|
+
|
55
|
+
it('calculates min width', () => {
|
56
|
+
expect(query.info.minWidth).toEqual(400);
|
57
|
+
});
|
58
|
+
|
59
|
+
it('has operators that can calculate valid types', () => {
|
60
|
+
let op = find(query.operators, { id: 'like' });
|
61
|
+
expect(op.isValidForField(query.fields[0])).toBe(false);
|
62
|
+
expect(op.isValidForField(query.fields[1])).toBe(true);
|
63
|
+
expect(op.isValidForField(query.fields[2])).toBe(true);
|
64
|
+
|
65
|
+
op = find(query.operators, { id: 'eq' });
|
66
|
+
query.fields.forEach((f) => {
|
67
|
+
expect(op.isValidForField(f)).toBe(true);
|
68
|
+
});
|
69
|
+
|
70
|
+
op = find(query.operators, { id: 'lt' });
|
71
|
+
expect(op.isValidForField(query.fields[0])).toBe(true);
|
72
|
+
expect(op.isValidForField(query.fields[1])).toBe(false);
|
73
|
+
expect(op.isValidForField(query.fields[2])).toBe(false);
|
74
|
+
});
|
75
|
+
|
76
|
+
it('filters available fields and clauses', () => {
|
77
|
+
expect(map(query.info.queryableFields, 'id')).toEqual(
|
78
|
+
['computed', 'label', 'width', 'height', 'depth'],
|
79
|
+
);
|
80
|
+
const clause = query.clauses[0];
|
81
|
+
expect(clause.field.id).toEqual('computed');
|
82
|
+
expect(clause.operator.id).toEqual('like');
|
83
|
+
expect(map(clause.validOperators, 'id')).toEqual(['like', 'eq']);
|
84
|
+
clause.field = query.fields[3];
|
85
|
+
expect(clause.operator.id).toEqual('eq');
|
86
|
+
expect(map(clause.validOperators, 'id')).toEqual(['eq', 'lt', 'gt']);
|
87
|
+
});
|
88
|
+
|
89
|
+
it('can read visible identifier field', () => {
|
90
|
+
expect(query.info.visibleIdentifierField.id).toEqual('id');
|
91
|
+
});
|
92
|
+
|
93
|
+
it('converts a row to object', () => {
|
94
|
+
const i = 1;
|
95
|
+
query.results.rows.push([i, `${i} l`, 10 + i, 10 + i, 10 + i]);
|
96
|
+
expect(query.results.rowAsObject(0)).toEqual({
|
97
|
+
id: 1,
|
98
|
+
label: '1 l',
|
99
|
+
depth: 11,
|
100
|
+
height: 11,
|
101
|
+
width: 11,
|
102
|
+
});
|
103
|
+
});
|
104
|
+
|
105
|
+
it('converts a row to model', () => {
|
106
|
+
const i = 1;
|
107
|
+
query.results.rows.push([i, `${i} l`, 10 + i, 10 + i, 10 + i]);
|
108
|
+
const box = query.results.modelForRow(0);
|
109
|
+
expect(box).toBeInstanceOf(Box);
|
110
|
+
expect(box.label).toEqual('1 l'); // 'label' isn't serialized; it's a session property
|
111
|
+
expect(box.serialize()).toEqual({
|
112
|
+
id: 1,
|
113
|
+
depth: 11,
|
114
|
+
height: 11,
|
115
|
+
width: 11,
|
116
|
+
});
|
117
|
+
});
|
118
|
+
|
119
|
+
it('calculates dataIndex', () => {
|
120
|
+
expect(query.fields[0].queryable).toBe(false);
|
121
|
+
expect(query.fields[1].queryable).toBe(true);
|
122
|
+
expect(query.fields[0].dataIndex).toEqual(0);
|
123
|
+
expect(query.fields[1].dataIndex).toEqual(null);
|
124
|
+
expect(query.fields[2].dataIndex).toEqual(1);
|
125
|
+
expect(query.fields[3].dataIndex).toEqual(2);
|
126
|
+
expect(query.fields[4].dataIndex).toEqual(3);
|
127
|
+
});
|
128
|
+
|
129
|
+
describe('loading', () => {
|
130
|
+
beforeEach(() => {
|
131
|
+
Sync.perform.mockReturnValue(Promise.resolve({
|
132
|
+
total: 200,
|
133
|
+
data: map(range(0, 20), i => [i, `label ${i}`, 10 + i, 10 + i, 10 + i]),
|
134
|
+
}));
|
135
|
+
});
|
136
|
+
it('sends query', () => {
|
137
|
+
expect(map(query.info.loadableFields, 'id')).toEqual(
|
138
|
+
['id', 'label', 'width', 'height', 'depth'],
|
139
|
+
);
|
140
|
+
query.clauses[0].value = 'test value';
|
141
|
+
query.results.fetch();
|
142
|
+
expect(Sync.perform).toHaveBeenLastCalledWith(
|
143
|
+
'/api/test/boxes', {
|
144
|
+
total_count: 't',
|
145
|
+
fields: ['id', 'label', 'width', 'height', 'depth'],
|
146
|
+
query: { computed: { op: 'like', value: 'test value%' } },
|
147
|
+
format: 'array',
|
148
|
+
limit: 20,
|
149
|
+
start: 0,
|
150
|
+
},
|
151
|
+
);
|
152
|
+
});
|
153
|
+
|
154
|
+
it('loads sequentially without arguments', () => {
|
155
|
+
query.clauses[0].value = 'test value';
|
156
|
+
return query.results.fetch().then(() => {
|
157
|
+
expect(query.results.totalCount).toEqual(200);
|
158
|
+
expect(query.results.rows).toHaveLength(20);
|
159
|
+
expect(query.results.rows[0]).toEqual([0, 'label 0', 10, 10, 10]);
|
160
|
+
expect(query.results.rows[1]).toEqual([1, 'label 1', 11, 11, 11]);
|
161
|
+
expect(query.results.rows[18]).toEqual([18, 'label 18', 28, 28, 28]);
|
162
|
+
|
163
|
+
expect(query.results.rows.map(r => r[0])).toEqual(range(0, 20));
|
164
|
+
return query.results;
|
165
|
+
}).then((results) => {
|
166
|
+
Sync.perform.mockReturnValueOnce(Promise.resolve({
|
167
|
+
total: 200,
|
168
|
+
data: map(range(20, 40), i => [i, `label ${i}`, 10 + i, 10 + i, 10 + i]),
|
169
|
+
}));
|
170
|
+
return results.fetch().then(() => {
|
171
|
+
expect(results.rows).toHaveLength(40);
|
172
|
+
expect(query.results.rows[38]).toEqual([38, 'label 38', 48, 48, 48]);
|
173
|
+
});
|
174
|
+
});
|
175
|
+
});
|
176
|
+
it('can load past previous end', () => {
|
177
|
+
expect(query.results.rows).toHaveLength(0);
|
178
|
+
const promise = query.results.fetch({ start: 10, limit: 20 }).then(() => {
|
179
|
+
expect(query.results.rows).toHaveLength(30);
|
180
|
+
expect(query.results.rows[0]).toEqual([]);
|
181
|
+
expect(query.results.rows[11]).toEqual([1, 'label 1', 11, 11, 11]);
|
182
|
+
expect(query.results.isRowLoading(11)).toBe(false);
|
183
|
+
});
|
184
|
+
expect(query.results.isRowLoading(1)).toBe(false);
|
185
|
+
expect(query.results.isRowLoading(11)).toBe(true);
|
186
|
+
expect(query.results.isRowLoading(20)).toBe(true);
|
187
|
+
expect(query.results.isRowLoading(40)).toBe(false);
|
188
|
+
return promise;
|
189
|
+
});
|
190
|
+
it('replaces previous records', () => {
|
191
|
+
range(0, 50).forEach(i => query.results.rows.push(['blank', i]));
|
192
|
+
expect(query.results.rows).toHaveLength(50);
|
193
|
+
const promise = query.results.fetch({ start: 10, limit: 20 }).then(() => {
|
194
|
+
expect(query.results.rows).toHaveLength(50);
|
195
|
+
expect(query.results.rows[0][0]).toEqual('blank');
|
196
|
+
expect(query.results.rows[11]).toEqual([1, 'label 1', 11, 11, 11]);
|
197
|
+
expect(query.results.rows[15]).toEqual([5, 'label 5', 15, 15, 15]);
|
198
|
+
expect(query.results.rows[29]).toEqual([19, 'label 19', 29, 29, 29]);
|
199
|
+
expect(query.results.isRowLoading(29)).toBe(false);
|
200
|
+
expect(query.results.rows[30]).toEqual(['blank', 30]);
|
201
|
+
expect(query.results.isRowLoading(30)).toBe(false);
|
202
|
+
});
|
203
|
+
expect(query.results.isRowLoading(1)).toBe(false);
|
204
|
+
expect(query.results.isRowLoading(11)).toBe(true);
|
205
|
+
expect(query.results.isRowLoading(30)).toBe(false);
|
206
|
+
return promise;
|
207
|
+
});
|
208
|
+
});
|
209
|
+
|
210
|
+
describe('sorting', () => {
|
211
|
+
beforeEach(() => {
|
212
|
+
query.results.reset();
|
213
|
+
shuffle(range(0, 5)).forEach(
|
214
|
+
i => query.results.rows.push([i, `${i} l`, 10 + i, 10 + i, 10 + i]),
|
215
|
+
);
|
216
|
+
});
|
217
|
+
|
218
|
+
it('sorts in place when fully loaded', () => {
|
219
|
+
query.results.totalCount = 5;
|
220
|
+
expect(query.results.fullyLoaded).toEqual(true);
|
221
|
+
query.setSort({ field: query.fields[0], ascending: true });
|
222
|
+
expect(map(query.results.rows, '0')).toEqual([0, 1, 2, 3, 4]);
|
223
|
+
query.setSort({ field: query.fields[1], ascending: false });
|
224
|
+
expect(map(query.results.rows, '0')).toEqual([0, 1, 2, 3, 4]);
|
225
|
+
});
|
226
|
+
|
227
|
+
it('loads sorted', () => {
|
228
|
+
query.results.totalCount = 15;
|
229
|
+
expect(query.results.fullyLoaded).toEqual(false);
|
230
|
+
query.setSort({ field: query.fields[2], ascending: true });
|
231
|
+
expect(Sync.perform).toHaveBeenLastCalledWith(
|
232
|
+
'/api/test/boxes', {
|
233
|
+
total_count: 't',
|
234
|
+
fields: ['id', 'label', 'width', 'height', 'depth'],
|
235
|
+
order: { label: 'asc' },
|
236
|
+
format: 'array',
|
237
|
+
limit: 20,
|
238
|
+
start: 0, // will request from start, ignoring the 5 existing records
|
239
|
+
},
|
240
|
+
);
|
241
|
+
});
|
242
|
+
});
|
243
|
+
});
|
@@ -0,0 +1,42 @@
|
|
1
|
+
import Sync from 'hippo/models/sync';
|
2
|
+
import { Box } from '../test-models';
|
3
|
+
|
4
|
+
describe('Network sync', () => {
|
5
|
+
it('makes a request', () => {
|
6
|
+
fetch.mockResponseOnce(JSON.stringify({ access_token: '12345' }));
|
7
|
+
Sync.perform('/foo')
|
8
|
+
.then((json) => {
|
9
|
+
expect(json).toEqual({ access_token: '12345' });
|
10
|
+
});
|
11
|
+
expect(fetch).toHaveBeenCalledWith(
|
12
|
+
'/foo.json',
|
13
|
+
{ headers: { 'Content-Type': 'application/json' } },
|
14
|
+
);
|
15
|
+
});
|
16
|
+
|
17
|
+
it('makes request using options', () => {
|
18
|
+
Sync.perform('/foo', { fields: ['test'] });
|
19
|
+
expect(fetch).lastCalledWith('/foo.json?f%5B%5D=test', expect.any(Object));
|
20
|
+
Sync.perform('/foo', { with: 'test' });
|
21
|
+
expect(fetch).lastCalledWith('/foo.json?w=test', expect.any(Object));
|
22
|
+
Sync.perform('/foo', { query: { bar: 'baz' } });
|
23
|
+
expect(fetch).lastCalledWith('/foo.json?q%5Bbar%5D=baz', expect.any(Object));
|
24
|
+
});
|
25
|
+
|
26
|
+
it('sets a models value', () => {
|
27
|
+
fetch.mockResponseOnce(JSON.stringify({ data: { width: 12, height: 12, depth: 10 } }));
|
28
|
+
const box = new Box({ width: 5 });
|
29
|
+
expect(box.width).toEqual(5);
|
30
|
+
Sync.forModel(box, 'GET').then(() => expect(box.width).toEqual(12));
|
31
|
+
});
|
32
|
+
|
33
|
+
it('saves a model', () => {
|
34
|
+
fetch.mockResponseOnce(JSON.stringify({ data: { width: 12, height: 12, depth: 10 } }));
|
35
|
+
const box = new Box({ id: 11, width: 5 });
|
36
|
+
const body = JSON.stringify(box.syncData);
|
37
|
+
Sync.forModel(box).then(() => expect(box.width).toEqual(12));
|
38
|
+
expect(fetch).lastCalledWith(
|
39
|
+
'/api/test/boxes/11.json',
|
40
|
+
{ body, headers: { 'Content-Type': 'application/json' }, method: 'PUT' });
|
41
|
+
});
|
42
|
+
});
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import SystemSettings from 'hippo/models/system-setting';
|
2
|
+
import Asset from 'hippo/models/asset';
|
3
|
+
|
4
|
+
const TEST_SETTINGS = {
|
5
|
+
id: 1,
|
6
|
+
logo: { file_data: { foo: 'bar' } },
|
7
|
+
settings: { hippo: { smtp: { login: 'test', server: 'test.test.test', password: 'test' } } },
|
8
|
+
};
|
9
|
+
|
10
|
+
describe('SystemSettings Model', () => {
|
11
|
+
it('has an asset', () => {
|
12
|
+
const ss = new SystemSettings();
|
13
|
+
ss.logo = TEST_SETTINGS.logo;
|
14
|
+
expect(ss.logo).toBeInstanceOf(Asset);
|
15
|
+
expect(ss.logo.file_data.foo).toEqual('bar');
|
16
|
+
ss.logo = { };
|
17
|
+
expect(ss.logo).toBeInstanceOf(Asset);
|
18
|
+
});
|
19
|
+
});
|
@@ -0,0 +1,364 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`SystemSettings Screen renders 1`] = `
|
4
|
+
<div
|
5
|
+
className="screen is-active"
|
6
|
+
data-screen-id="test"
|
7
|
+
>
|
8
|
+
<div
|
9
|
+
className="grommetux-header__container grommetux-header__container--fixed grommetux-header__container--fill"
|
10
|
+
>
|
11
|
+
<div
|
12
|
+
className="grommetux-header__mirror"
|
13
|
+
/>
|
14
|
+
<div
|
15
|
+
className="grommetux-header__wrapper"
|
16
|
+
>
|
17
|
+
<div
|
18
|
+
className="grommetux-box grommetux-box--direction-column grommetux-box--responsive grommetux-box--pad-none grommetux-box--flex-off"
|
19
|
+
id={undefined}
|
20
|
+
onClick={undefined}
|
21
|
+
role={undefined}
|
22
|
+
style={Object {}}
|
23
|
+
tabIndex={undefined}
|
24
|
+
>
|
25
|
+
<header
|
26
|
+
className="grommetux-box grommetux-box--direction-row grommetux-box--align-center grommetux-box--pad-horizontal-none grommetux-box--pad-vertical-none grommetux-box--pad-between-small grommetux-header"
|
27
|
+
id={undefined}
|
28
|
+
onClick={undefined}
|
29
|
+
role={undefined}
|
30
|
+
style={Object {}}
|
31
|
+
tabIndex={undefined}
|
32
|
+
>
|
33
|
+
<button
|
34
|
+
aria-label={undefined}
|
35
|
+
className="grommetux-button grommetux-button--primary"
|
36
|
+
disabled={false}
|
37
|
+
href={undefined}
|
38
|
+
onBlur={[Function]}
|
39
|
+
onClick={[Function]}
|
40
|
+
onFocus={[Function]}
|
41
|
+
onMouseDown={[Function]}
|
42
|
+
onMouseUp={[Function]}
|
43
|
+
type="button"
|
44
|
+
>
|
45
|
+
<span
|
46
|
+
className="grommetux-button__icon"
|
47
|
+
>
|
48
|
+
<svg
|
49
|
+
aria-label="save"
|
50
|
+
className="grommetux-control-icon grommetux-control-icon-save grommetux-control-icon--responsive"
|
51
|
+
height="24px"
|
52
|
+
role="img"
|
53
|
+
version="1.1"
|
54
|
+
viewBox="0 0 24 24"
|
55
|
+
width="24px"
|
56
|
+
>
|
57
|
+
<path
|
58
|
+
d="M3,2 L3,21 L21,21 L21,3 L12,3 L12,14 M8,11 L12,15 L16,11"
|
59
|
+
fill="none"
|
60
|
+
stroke="#000"
|
61
|
+
strokeWidth="2"
|
62
|
+
/>
|
63
|
+
</svg>
|
64
|
+
</span>
|
65
|
+
<span
|
66
|
+
className="grommetux-button__label"
|
67
|
+
>
|
68
|
+
Save
|
69
|
+
</span>
|
70
|
+
</button>
|
71
|
+
</header>
|
72
|
+
</div>
|
73
|
+
</div>
|
74
|
+
</div>
|
75
|
+
<h1
|
76
|
+
className="grommetux-heading"
|
77
|
+
>
|
78
|
+
title
|
79
|
+
</h1>
|
80
|
+
<h3
|
81
|
+
className="grommetux-heading"
|
82
|
+
>
|
83
|
+
Images
|
84
|
+
</h3>
|
85
|
+
<div
|
86
|
+
className="row"
|
87
|
+
>
|
88
|
+
<div
|
89
|
+
className="col-sm-4 col-xs-12"
|
90
|
+
>
|
91
|
+
<div
|
92
|
+
className="asset form-field"
|
93
|
+
>
|
94
|
+
<div
|
95
|
+
className="grommetux-form-field grommetux-form-field--size-medium"
|
96
|
+
onClick={[Function]}
|
97
|
+
>
|
98
|
+
<label
|
99
|
+
className="grommetux-form-field__label"
|
100
|
+
htmlFor={undefined}
|
101
|
+
>
|
102
|
+
Logo
|
103
|
+
</label>
|
104
|
+
<span
|
105
|
+
className="grommetux-form-field__contents"
|
106
|
+
>
|
107
|
+
<div
|
108
|
+
className="drop-zone"
|
109
|
+
onClick={[Function]}
|
110
|
+
onDragEnter={[Function]}
|
111
|
+
onDragLeave={[Function]}
|
112
|
+
onDragOver={[Function]}
|
113
|
+
onDragStart={[Function]}
|
114
|
+
onDrop={[Function]}
|
115
|
+
style={Object {}}
|
116
|
+
>
|
117
|
+
<div>
|
118
|
+
Drop a file here, or click to select one to upload.
|
119
|
+
</div>
|
120
|
+
<input
|
121
|
+
accept={undefined}
|
122
|
+
multiple={false}
|
123
|
+
onChange={[Function]}
|
124
|
+
style={
|
125
|
+
Object {
|
126
|
+
"display": "none",
|
127
|
+
}
|
128
|
+
}
|
129
|
+
type="file"
|
130
|
+
/>
|
131
|
+
</div>
|
132
|
+
</span>
|
133
|
+
</div>
|
134
|
+
</div>
|
135
|
+
</div>
|
136
|
+
<div
|
137
|
+
className="col-sm-4 col-xs-12"
|
138
|
+
>
|
139
|
+
<div
|
140
|
+
className="asset form-field"
|
141
|
+
>
|
142
|
+
<div
|
143
|
+
className="grommetux-form-field grommetux-form-field--size-medium"
|
144
|
+
onClick={[Function]}
|
145
|
+
>
|
146
|
+
<label
|
147
|
+
className="grommetux-form-field__label"
|
148
|
+
htmlFor={undefined}
|
149
|
+
>
|
150
|
+
Print Logo
|
151
|
+
</label>
|
152
|
+
<span
|
153
|
+
className="grommetux-form-field__contents"
|
154
|
+
>
|
155
|
+
<div
|
156
|
+
className="drop-zone"
|
157
|
+
onClick={[Function]}
|
158
|
+
onDragEnter={[Function]}
|
159
|
+
onDragLeave={[Function]}
|
160
|
+
onDragOver={[Function]}
|
161
|
+
onDragStart={[Function]}
|
162
|
+
onDrop={[Function]}
|
163
|
+
style={Object {}}
|
164
|
+
>
|
165
|
+
<div>
|
166
|
+
Drop a file here, or click to select one to upload.
|
167
|
+
</div>
|
168
|
+
<input
|
169
|
+
accept={undefined}
|
170
|
+
multiple={false}
|
171
|
+
onChange={[Function]}
|
172
|
+
style={
|
173
|
+
Object {
|
174
|
+
"display": "none",
|
175
|
+
}
|
176
|
+
}
|
177
|
+
type="file"
|
178
|
+
/>
|
179
|
+
</div>
|
180
|
+
</span>
|
181
|
+
</div>
|
182
|
+
</div>
|
183
|
+
</div>
|
184
|
+
</div>
|
185
|
+
<div
|
186
|
+
className="section"
|
187
|
+
>
|
188
|
+
<h3
|
189
|
+
className="grommetux-heading"
|
190
|
+
>
|
191
|
+
Email settings
|
192
|
+
</h3>
|
193
|
+
<div
|
194
|
+
className="section row"
|
195
|
+
>
|
196
|
+
<div
|
197
|
+
className="form-field col-md-4 col-xs-6"
|
198
|
+
>
|
199
|
+
<div
|
200
|
+
className="grommetux-form-field grommetux-form-field--size-medium"
|
201
|
+
onClick={[Function]}
|
202
|
+
>
|
203
|
+
<label
|
204
|
+
className="grommetux-form-field__label"
|
205
|
+
htmlFor={undefined}
|
206
|
+
>
|
207
|
+
User Name
|
208
|
+
</label>
|
209
|
+
<span
|
210
|
+
className="grommetux-form-field__contents"
|
211
|
+
>
|
212
|
+
<input
|
213
|
+
autoComplete="off"
|
214
|
+
autoFocus={undefined}
|
215
|
+
className="grommetux-text-input grommetux-input"
|
216
|
+
defaultValue={undefined}
|
217
|
+
name="user_name"
|
218
|
+
onBlur={[Function]}
|
219
|
+
onChange={[Function]}
|
220
|
+
onFocus={[Function]}
|
221
|
+
onKeyDown={[Function]}
|
222
|
+
placeholder={undefined}
|
223
|
+
type="text"
|
224
|
+
value=""
|
225
|
+
/>
|
226
|
+
</span>
|
227
|
+
</div>
|
228
|
+
</div>
|
229
|
+
<div
|
230
|
+
className="form-field col-md-4 col-xs-6"
|
231
|
+
>
|
232
|
+
<div
|
233
|
+
className="grommetux-form-field grommetux-form-field--size-medium"
|
234
|
+
onClick={[Function]}
|
235
|
+
>
|
236
|
+
<label
|
237
|
+
className="grommetux-form-field__label"
|
238
|
+
htmlFor={undefined}
|
239
|
+
>
|
240
|
+
Password
|
241
|
+
</label>
|
242
|
+
<span
|
243
|
+
className="grommetux-form-field__contents"
|
244
|
+
>
|
245
|
+
<input
|
246
|
+
autoComplete="off"
|
247
|
+
autoFocus={undefined}
|
248
|
+
className="grommetux-text-input grommetux-input"
|
249
|
+
defaultValue={undefined}
|
250
|
+
name="password"
|
251
|
+
onBlur={[Function]}
|
252
|
+
onChange={[Function]}
|
253
|
+
onFocus={[Function]}
|
254
|
+
onKeyDown={[Function]}
|
255
|
+
placeholder={undefined}
|
256
|
+
type="password"
|
257
|
+
value=""
|
258
|
+
/>
|
259
|
+
</span>
|
260
|
+
</div>
|
261
|
+
</div>
|
262
|
+
<div
|
263
|
+
className="form-field col-md-4 col-xs-6"
|
264
|
+
>
|
265
|
+
<div
|
266
|
+
className="grommetux-form-field grommetux-form-field--size-medium"
|
267
|
+
onClick={[Function]}
|
268
|
+
>
|
269
|
+
<label
|
270
|
+
className="grommetux-form-field__label"
|
271
|
+
htmlFor={undefined}
|
272
|
+
>
|
273
|
+
Server Address
|
274
|
+
</label>
|
275
|
+
<span
|
276
|
+
className="grommetux-form-field__contents"
|
277
|
+
>
|
278
|
+
<input
|
279
|
+
autoComplete="off"
|
280
|
+
autoFocus={undefined}
|
281
|
+
className="grommetux-text-input grommetux-input"
|
282
|
+
defaultValue={undefined}
|
283
|
+
name="address"
|
284
|
+
onBlur={[Function]}
|
285
|
+
onChange={[Function]}
|
286
|
+
onFocus={[Function]}
|
287
|
+
onKeyDown={[Function]}
|
288
|
+
placeholder={undefined}
|
289
|
+
type="text"
|
290
|
+
value=""
|
291
|
+
/>
|
292
|
+
</span>
|
293
|
+
</div>
|
294
|
+
</div>
|
295
|
+
<div
|
296
|
+
className="form-field col-md-4 col-xs-6"
|
297
|
+
>
|
298
|
+
<div
|
299
|
+
className="grommetux-form-field grommetux-form-field--size-medium"
|
300
|
+
onClick={[Function]}
|
301
|
+
>
|
302
|
+
<label
|
303
|
+
className="grommetux-form-field__label"
|
304
|
+
htmlFor={undefined}
|
305
|
+
>
|
306
|
+
From Email
|
307
|
+
</label>
|
308
|
+
<span
|
309
|
+
className="grommetux-form-field__contents"
|
310
|
+
>
|
311
|
+
<input
|
312
|
+
autoComplete="off"
|
313
|
+
autoFocus={undefined}
|
314
|
+
className="grommetux-text-input grommetux-input"
|
315
|
+
defaultValue={undefined}
|
316
|
+
name="from_email"
|
317
|
+
onBlur={[Function]}
|
318
|
+
onChange={[Function]}
|
319
|
+
onFocus={[Function]}
|
320
|
+
onKeyDown={[Function]}
|
321
|
+
placeholder={undefined}
|
322
|
+
type="text"
|
323
|
+
value=""
|
324
|
+
/>
|
325
|
+
</span>
|
326
|
+
</div>
|
327
|
+
</div>
|
328
|
+
<div
|
329
|
+
className="form-field col-md-4 col-xs-6"
|
330
|
+
>
|
331
|
+
<div
|
332
|
+
className="grommetux-form-field grommetux-form-field--size-medium"
|
333
|
+
onClick={[Function]}
|
334
|
+
>
|
335
|
+
<label
|
336
|
+
className="grommetux-form-field__label"
|
337
|
+
htmlFor={undefined}
|
338
|
+
>
|
339
|
+
From Name
|
340
|
+
</label>
|
341
|
+
<span
|
342
|
+
className="grommetux-form-field__contents"
|
343
|
+
>
|
344
|
+
<input
|
345
|
+
autoComplete="off"
|
346
|
+
autoFocus={undefined}
|
347
|
+
className="grommetux-text-input grommetux-input"
|
348
|
+
defaultValue={undefined}
|
349
|
+
name="from_name"
|
350
|
+
onBlur={[Function]}
|
351
|
+
onChange={[Function]}
|
352
|
+
onFocus={[Function]}
|
353
|
+
onKeyDown={[Function]}
|
354
|
+
placeholder={undefined}
|
355
|
+
type="text"
|
356
|
+
value=""
|
357
|
+
/>
|
358
|
+
</span>
|
359
|
+
</div>
|
360
|
+
</div>
|
361
|
+
</div>
|
362
|
+
</div>
|
363
|
+
</div>
|
364
|
+
`;
|