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
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 360b0939a3298ae53f570048af34125777a3f202
|
4
|
+
data.tar.gz: 8bb44bc92271a71e436ae7fc55102c629c878301
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 24c7a833728de14eeaec24dcae6fce1805c877f60d06ba579451a5d93730dbb61cc59b9559e5a7313fca099ec198ce5b27e8f05268299be026dc940e2ce29521
|
7
|
+
data.tar.gz: 16d0cf71e576fd65d88a82defa3820afc943285e938f1626ebc6feed9b34c380e99ae1cee3852150fec24bc98dc2c6eb3bfe3b48d3032e9d3579f892e1c8a91d
|
data/.dir-locals.el
ADDED
data/.eslintrc.js
ADDED
data/.flowconfig
ADDED
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
.byebug_history
|
2
|
+
*.gem
|
3
|
+
*.rbc
|
4
|
+
.DS_Store
|
5
|
+
.bundle
|
6
|
+
.config
|
7
|
+
.yardoc
|
8
|
+
Gemfile.lock
|
9
|
+
InstalledFiles
|
10
|
+
coverage
|
11
|
+
doc/
|
12
|
+
log/
|
13
|
+
lib/bundler/man
|
14
|
+
pkg
|
15
|
+
rdoc
|
16
|
+
spec/reports
|
17
|
+
test/tmp
|
18
|
+
test/version_tmp
|
19
|
+
npm-build/node_modules
|
20
|
+
node_modules
|
21
|
+
tmp
|
22
|
+
db/schema*
|
data/.jshintrc
ADDED
data/.rubocop.yml
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.4.0
|
data/.travis.yml
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
sudo: required
|
2
|
+
dist: trusty
|
3
|
+
language: ruby
|
4
|
+
cache:
|
5
|
+
- bundler
|
6
|
+
- yarn
|
7
|
+
addons:
|
8
|
+
postgresql: "9.6"
|
9
|
+
services:
|
10
|
+
- postgresql
|
11
|
+
- redis-server
|
12
|
+
rvm:
|
13
|
+
- "2.4.0"
|
14
|
+
script:
|
15
|
+
- bundle exec rake ci
|
16
|
+
env:
|
17
|
+
global:
|
18
|
+
- DATABASE_URL=postgres://travis@127.0.0.1:5432/travis
|
19
|
+
- REDIS_URL=redis://localhost:6379
|
20
|
+
- TRAVIS_NODE_VERSION="6.9.2"
|
21
|
+
before_install:
|
22
|
+
- nvm install $TRAVIS_NODE_VERSION
|
23
|
+
- npm install yarn
|
24
|
+
- yarn install
|
data/Gemfile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
gem "yard-activerecord",
|
4
|
+
git: 'https://github.com/nathanstitt/yard-activerecord',
|
5
|
+
branch: 'develop'
|
6
|
+
|
7
|
+
gem "temping", '~> 3.9.0'
|
8
|
+
|
9
|
+
gem 'puma'
|
10
|
+
gem 'pry-byebug'
|
11
|
+
|
12
|
+
gem "knitter", git: "https://github.com/nathanstitt/knitter", branch: 'master'
|
13
|
+
gem "webpack_driver", git: "https://github.com/nathanstitt/webpack_driver", branch: 'master'
|
14
|
+
gem "guard-jest", git: "https://github.com/nathanstitt/guard-jest", branch: 'master'
|
15
|
+
gem "bump"
|
16
|
+
|
17
|
+
gemspec
|
data/Guardfile
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
notification :growl
|
2
|
+
|
3
|
+
require "hippo/guard_tasks"
|
4
|
+
|
5
|
+
|
6
|
+
Hippo::GuardTasks.run(self, name: 'hippo') do | tests |
|
7
|
+
|
8
|
+
# tests.client do
|
9
|
+
|
10
|
+
# end
|
11
|
+
|
12
|
+
# tests.server do
|
13
|
+
|
14
|
+
# end
|
15
|
+
|
16
|
+
tests.server do
|
17
|
+
watch(%r{^templates/print/*}) { "spec/server/print/form_spec.rb" }
|
18
|
+
end
|
19
|
+
end
|
data/LICENSE-MIT.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2014 Argosity
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# Hippo web framework
|
2
|
+
|
3
|
+
Hippo is a web framework that aims to make writing single page apps as simple as traditional Rails apps.
|
4
|
+
|
5
|
+
[![Build Status](https://travis-ci.org/argosity/hippo.svg?branch=master)](https://travis-ci.org/argosity/hippo)
|
6
|
+
|
7
|
+
It's extracted from the Stockor ERP application and is still very much a work in progress.
|
8
|
+
|
9
|
+
Some of it's features are:
|
10
|
+
|
11
|
+
* **Integrated web server**: Sinatra is used internally with RESTful routes auto-created for each model. This frees the developer from the hassel of integrating disparate systems and allows Hippo to provide tools that are guaranteed to work together.
|
12
|
+
|
13
|
+
* **Rich JSON requests**: Clients can perform ad-hoc querys against server-side data and the the reply format can be extensively customized. Operators are provided for specifying which fields and associations are included in the result set, as well as ordering and pagination support. It's also easy to write custom query operators. ActiveRecord is used internally to eager-load associations in order to prevent N+1 queries.
|
14
|
+
|
15
|
+
* **Real-Time data updates**: Whenever a CRUD operation is performed on a model, the web-server will relay the event to client observers that have registered for updates. By default a model is registered for updates whenever it's bound to a view, which works to prevent unwanted updates and allows records to be garbage collected. Updates are performed by long-pulling via the message-bus gem. A client-side identity map is also used so that only one copy of the model for a given id exists and is updated.
|
16
|
+
|
17
|
+
* **Next-Gen web-framework**: Client is built in React using [mobex-decorated-models](https://github.com/nathanstitt/mobx-decorated-models).
|
18
|
+
|
19
|
+
* **Integrated continual testing environment**: When ran in development mode, Hippo watches for file changes and runs the appropriate spec for both your client and server code automatically. Minispec is utilized for the Ruby models, and client code tested via Jest.
|
20
|
+
|
21
|
+
* **Role-driven security**: Models can be marked as readable, writeable, or deletable for roles. Additionally, fields can be marked as read-only or invisible to prevent unauthorized access.
|
22
|
+
|
23
|
+
* **Extendible**: Extensions can be registered with the framework and will be automatically compiled and included in builds. Components are loaded on-demand and are not included unless an extension requires them. Hippo also dynamically loads the Javascript and CSS for screens on-demand immediatly before they are displayed.
|
24
|
+
|
25
|
+
* **Embeddable and Responsive**: Designed from the ground up to be embeddable in hostile environments. All code is non-conflicting and wrapped in closures. Sass is auto-namespaced. Detect changes in it's container's size and relay them to clasess for responsive layouts. A modified Bootstrap based css layout can optionally be loaded which will provide a responsive grid that's bound to the container's size, not the documents.
|
26
|
+
|
27
|
+
|
28
|
+
## Contributing
|
29
|
+
|
30
|
+
The standard instructions are always good:
|
31
|
+
|
32
|
+
1. Fork it ( http://github.com/argosity/hippo/fork )
|
33
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
34
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
35
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
36
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
require 'bundler/setup'
|
2
|
+
require "bundler/gem_tasks"
|
3
|
+
require 'rake/testtask'
|
4
|
+
require 'yard'
|
5
|
+
require 'yard-activerecord'
|
6
|
+
require_relative 'yard_ext/all'
|
7
|
+
require 'guard'
|
8
|
+
require 'hippo/rake_tasks'
|
9
|
+
require 'knitter'
|
10
|
+
require "bump/tasks"
|
11
|
+
|
12
|
+
Dir.glob('tasks/*.rake').each { |r| load r}
|
13
|
+
|
14
|
+
Rake::TestTask.new do |t|
|
15
|
+
t.libs << 'test'
|
16
|
+
t.pattern = "test/*_test.rb"
|
17
|
+
end
|
18
|
+
|
19
|
+
|
20
|
+
YARD::Rake::YardocTask.new do |t|
|
21
|
+
t.files = ['lib/skr/concerns/*.rb','lib/**/*.rb','db/schema.rb']
|
22
|
+
t.options = ["--title=Stockor Core Documentation",
|
23
|
+
"--markup=markdown",
|
24
|
+
"--template-path=yard_ext/templates",
|
25
|
+
"--readme=README.md"]
|
26
|
+
end
|
27
|
+
|
28
|
+
task :npmrelease do
|
29
|
+
sh "npm-release #{Hippo::VERSION}"
|
30
|
+
end
|
31
|
+
|
32
|
+
task :release => :npmrelease
|
33
|
+
|
34
|
+
task :doc => 'db:environment' do
|
35
|
+
ENV['SCHEMA'] = 'db/schema.rb'
|
36
|
+
ENV['DB_STRUCTURE'] = 'db/schema.rb'
|
37
|
+
Rake::Task["db:schema:dump"].invoke
|
38
|
+
Rake::Task["yard"].invoke
|
39
|
+
end
|
data/bin/hippo
ADDED
data/client/extension.js
ADDED
File without changes
|
@@ -0,0 +1,17 @@
|
|
1
|
+
window.localStorage = {
|
2
|
+
|
3
|
+
getItem() {
|
4
|
+
return '{}';
|
5
|
+
},
|
6
|
+
|
7
|
+
};
|
8
|
+
|
9
|
+
const config = jest.genMockFromModule('hippo/config');
|
10
|
+
|
11
|
+
config.bootstrapUserData = jest.fn();
|
12
|
+
config.reset = jest.fn();
|
13
|
+
Object.defineProperty(config, 'api_path', {
|
14
|
+
value: '/api'
|
15
|
+
});
|
16
|
+
|
17
|
+
export default config;
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
|
3
|
+
import { observer } from 'mobx-react';
|
4
|
+
import { bindAll } from 'lodash';
|
5
|
+
import LoginForm from 'grommet/components/LoginForm';
|
6
|
+
import Layer from 'grommet/components/Layer';
|
7
|
+
|
8
|
+
import User from '../user';
|
9
|
+
|
10
|
+
@observer
|
11
|
+
export default class LoginDialog extends React.Component {
|
12
|
+
|
13
|
+
constructor() {
|
14
|
+
super();
|
15
|
+
bindAll(this, 'attemptLogin');
|
16
|
+
}
|
17
|
+
|
18
|
+
attemptLogin({ username, password }) {
|
19
|
+
User.attemptLogin(username, password)/* .then((session)=> {
|
20
|
+
if session.isValid
|
21
|
+
});*/
|
22
|
+
}
|
23
|
+
|
24
|
+
render() {
|
25
|
+
if (User.isLoggedIn) { return null; }
|
26
|
+
return (
|
27
|
+
<Layer closer={true} flush={false}>
|
28
|
+
<LoginForm
|
29
|
+
title="Please Login…"
|
30
|
+
onSubmit={this.attemptLogin}
|
31
|
+
usernameType="text"
|
32
|
+
secondaryText={User.lastServerMessage}
|
33
|
+
/>
|
34
|
+
</Layer>
|
35
|
+
)
|
36
|
+
}
|
37
|
+
|
38
|
+
}
|
File without changes
|
@@ -0,0 +1,41 @@
|
|
1
|
+
import React from 'react'; // eslint-disable-line no-unused-vars
|
2
|
+
import ReactDOM from 'react-dom';
|
3
|
+
import whenDomReady from 'when-dom-ready';
|
4
|
+
import { delay } from 'lodash';
|
5
|
+
import { AppContainer } from 'react-hot-loader';
|
6
|
+
import { withAsyncComponents } from 'react-async-component';
|
7
|
+
|
8
|
+
import Config from './config';
|
9
|
+
|
10
|
+
const Workspace = require('hippo/workspace').default;
|
11
|
+
|
12
|
+
let Root;
|
13
|
+
let App;
|
14
|
+
|
15
|
+
function renderer(Body) {
|
16
|
+
withAsyncComponents(<AppContainer><Body /></AppContainer>)
|
17
|
+
.then((result) => {
|
18
|
+
App = result.appWithAsyncComponents;
|
19
|
+
ReactDOM.render(App, Root);
|
20
|
+
});
|
21
|
+
}
|
22
|
+
|
23
|
+
if (module.hot) {
|
24
|
+
module.hot.accept('hippo/workspace', () => {
|
25
|
+
const WSNext = require('hippo/workspace').default; // eslint-disable-line global-require
|
26
|
+
renderer(WSNext);
|
27
|
+
});
|
28
|
+
}
|
29
|
+
|
30
|
+
whenDomReady().then(() => {
|
31
|
+
if (Root) return;
|
32
|
+
/* global document: true */
|
33
|
+
Root = document.getElementById('hippo-root');
|
34
|
+
/* global document: false */
|
35
|
+
renderer(Workspace);
|
36
|
+
const loading = document.querySelector('.loading');
|
37
|
+
if (loading) {
|
38
|
+
loading.classList.add('complete');
|
39
|
+
delay(() => loading.parentNode.removeChild(loading), 400);
|
40
|
+
}
|
41
|
+
});
|
@@ -0,0 +1,81 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import { Col } from 'react-flexbox-grid';
|
4
|
+
import { action } from 'mobx';
|
5
|
+
import { observer } from 'mobx-react';
|
6
|
+
import { titleize } from 'hippo/lib/util';
|
7
|
+
import classnames from 'classnames';
|
8
|
+
import Dropzone from 'react-dropzone';
|
9
|
+
|
10
|
+
import Field from 'grommet/components/FormField';
|
11
|
+
import DocumentIcon from 'grommet/components/icons/base/DocumentCloud';
|
12
|
+
|
13
|
+
import { BaseModel } from '../models/base';
|
14
|
+
import './asset.scss';
|
15
|
+
|
16
|
+
@observer
|
17
|
+
export default class Asset extends React.PureComponent {
|
18
|
+
|
19
|
+
static defaultProps = {
|
20
|
+
label: '',
|
21
|
+
className: '',
|
22
|
+
}
|
23
|
+
|
24
|
+
static propTypes = {
|
25
|
+
model: PropTypes.instanceOf(BaseModel).isRequired,
|
26
|
+
name: PropTypes.string.isRequired,
|
27
|
+
label: PropTypes.string,
|
28
|
+
className: PropTypes.string,
|
29
|
+
}
|
30
|
+
|
31
|
+
@action.bound
|
32
|
+
onDrop(files) {
|
33
|
+
if (!this.asset) {
|
34
|
+
this.props.model[this.props.name] = {};
|
35
|
+
}
|
36
|
+
this.asset.file = files[0];
|
37
|
+
}
|
38
|
+
|
39
|
+
get asset() {
|
40
|
+
return this.props.model[this.props.name];
|
41
|
+
}
|
42
|
+
|
43
|
+
get label() {
|
44
|
+
return this.props.label || titleize(this.props.name);
|
45
|
+
}
|
46
|
+
|
47
|
+
preview() {
|
48
|
+
if (this.asset) {
|
49
|
+
return this.asset.isImage ?
|
50
|
+
<img src={this.asset.previewUrl} alt="" /> :
|
51
|
+
<DocumentIcon size="xlarge" type="status" />;
|
52
|
+
}
|
53
|
+
return (
|
54
|
+
<div>
|
55
|
+
Drop a file here, or click to select one to upload.
|
56
|
+
</div>
|
57
|
+
);
|
58
|
+
}
|
59
|
+
|
60
|
+
render() {
|
61
|
+
const { model: _, label: __, name: ___, className, ...col } = this.props;
|
62
|
+
|
63
|
+
return (
|
64
|
+
<Col
|
65
|
+
{...col}
|
66
|
+
className={classnames(className, 'asset', 'form-field')}
|
67
|
+
>
|
68
|
+
<Field label={this.label} >
|
69
|
+
<Dropzone
|
70
|
+
className="drop-zone"
|
71
|
+
activeClassName="drop-zone-active"
|
72
|
+
onDrop={this.onDrop}
|
73
|
+
multiple={false}
|
74
|
+
>
|
75
|
+
{this.preview()}
|
76
|
+
</Dropzone>
|
77
|
+
</Field>
|
78
|
+
</Col>
|
79
|
+
);
|
80
|
+
}
|
81
|
+
}
|