disco_app 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +37 -0
- data/app/assets/components/disco_app/buttons/model-destroy-button.es6.jsx +31 -0
- data/app/assets/components/disco_app/forms/model-form.es6.jsx +64 -0
- data/app/assets/components/embedded_app/bar.es6.jsx +31 -0
- data/app/assets/components/shopify/buttons/_buttons.scss +546 -0
- data/app/assets/components/shopify/buttons/button.es6.jsx +15 -0
- data/app/assets/components/shopify/card/_card.scss +342 -0
- data/app/assets/components/shopify/card/card-header.es6.jsx +34 -0
- data/app/assets/components/shopify/card/card-section.es6.jsx +26 -0
- data/app/assets/components/shopify/card/card.es6.jsx +16 -0
- data/app/assets/components/shopify/typography/_typography.scss +23 -0
- data/app/assets/components/shopify/typography/ui-heading.es6.jsx +16 -0
- data/app/assets/components/shopify/ui-layout/_ui-layout.scss +157 -0
- data/app/assets/components/shopify/ui-layout/ui-annotated-section.es6.jsx +29 -0
- data/app/assets/components/shopify/ui-layout/ui-empty-state.es6.jsx +35 -0
- data/app/assets/components/shopify/ui-layout/ui-footer-help.es6.jsx +13 -0
- data/app/assets/components/shopify/ui-layout/ui-layout-item.es6.jsx +11 -0
- data/app/assets/components/shopify/ui-layout/ui-layout-section.es6.jsx +19 -0
- data/app/assets/components/shopify/ui-layout/ui-layout-sections.es6.jsx +11 -0
- data/app/assets/components/shopify/ui-layout/ui-layout.es6.jsx +11 -0
- data/app/assets/components/shopify/ui-layout/ui-page-actions.es6.jsx +13 -0
- data/app/assets/components/shopify/ui-layout/ui-page-actions__buttons.es6.jsx +27 -0
- data/app/assets/components/shopify/ui-stack/_ui-stack.scss +39 -0
- data/app/assets/components/shopify/ui-stack/ui-stack-item.es6.jsx +21 -0
- data/app/assets/components/shopify/ui-stack/ui-stack.es6.jsx +24 -0
- data/app/assets/images/disco_app/icon.svg +1 -0
- data/app/assets/images/disco_app/icons.svg +0 -0
- data/app/assets/javascripts/disco_app/components/custom/filterable_shop_list.js.jsx +61 -0
- data/app/assets/javascripts/disco_app/components/custom/inline-radio-options.es6.jsx +59 -0
- data/app/assets/javascripts/disco_app/components/custom/rules-editor.es6.jsx +432 -0
- data/app/assets/javascripts/disco_app/components/custom/shop_filter_query.js.jsx +13 -0
- data/app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx +34 -0
- data/app/assets/javascripts/disco_app/components/custom/shop_filter_tabs.js.jsx +21 -0
- data/app/assets/javascripts/disco_app/components/custom/shop_list.js.jsx +142 -0
- data/app/assets/javascripts/disco_app/components/custom/shop_row.js.jsx +43 -0
- data/app/assets/javascripts/disco_app/components/custom/shopify_admin_link.js.jsx +29 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/base_form.es6.jsx +72 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/base_input.es6.jsx +20 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-checkbox.es6.jsx +30 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-radio.es6.jsx +30 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-select.es6.jsx +45 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-text.es6.jsx +69 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-textarea.es6.jsx +48 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-time.es6.jsx +7 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/ui-form__element.es6.jsx +17 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/ui-form__group.es6.jsx +11 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/forms/ui-form__section.es6.jsx +11 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/icons/icon-chevron.es6.jsx +33 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/icons/next-icon.es6.jsx +18 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/input_select.es6.jsx +21 -0
- data/app/assets/javascripts/disco_app/components/ui-kit/tables/table.es6.jsx +27 -0
- data/app/assets/javascripts/disco_app/components.js +3 -0
- data/app/assets/javascripts/disco_app/disco_app.js +9 -0
- data/app/assets/javascripts/disco_app/frame.js +152 -0
- data/app/assets/javascripts/disco_app/shopify-turbolinks.js +7 -0
- data/app/assets/javascripts/disco_app/ui-kit.js +1 -0
- data/app/assets/stylesheets/disco_app/admin/_header.scss +75 -0
- data/app/assets/stylesheets/disco_app/admin/_layout.scss +32 -0
- data/app/assets/stylesheets/disco_app/admin/_nav.scss +184 -0
- data/app/assets/stylesheets/disco_app/admin.scss +11 -0
- data/app/assets/stylesheets/disco_app/disco_app.scss +24 -0
- data/app/assets/stylesheets/disco_app/frame/_buttons.scss +54 -0
- data/app/assets/stylesheets/disco_app/frame/_forms.scss +26 -0
- data/app/assets/stylesheets/disco_app/frame/_layout.scss +77 -0
- data/app/assets/stylesheets/disco_app/frame/_type.scss +25 -0
- data/app/assets/stylesheets/disco_app/frame.scss +10 -0
- data/app/assets/stylesheets/disco_app/mixins/_flexbox.scss +400 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-forms.scss +69 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-icons.scss +28 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-kit.scss +5116 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-layout.scss +15 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-tabs.scss +75 -0
- data/app/assets/stylesheets/disco_app/ui-kit/_ui-type.scss +13 -0
- data/app/controllers/disco_app/admin/app_settings_controller.rb +3 -0
- data/app/controllers/disco_app/admin/application_controller.rb +3 -0
- data/app/controllers/disco_app/admin/concerns/app_settings_controller.rb +24 -0
- data/app/controllers/disco_app/admin/concerns/authenticated_controller.rb +20 -0
- data/app/controllers/disco_app/admin/concerns/plans_controller.rb +54 -0
- data/app/controllers/disco_app/admin/concerns/shops_controller.rb +7 -0
- data/app/controllers/disco_app/admin/concerns/subscriptions_controller.rb +29 -0
- data/app/controllers/disco_app/admin/plans_controller.rb +3 -0
- data/app/controllers/disco_app/admin/resources/shops_controller.rb +3 -0
- data/app/controllers/disco_app/admin/shops_controller.rb +3 -0
- data/app/controllers/disco_app/admin/subscriptions_controller.rb +3 -0
- data/app/controllers/disco_app/charges_controller.rb +47 -0
- data/app/controllers/disco_app/concerns/app_proxy_controller.rb +40 -0
- data/app/controllers/disco_app/concerns/authenticated_controller.rb +56 -0
- data/app/controllers/disco_app/concerns/carrier_request_controller.rb +35 -0
- data/app/controllers/disco_app/frame_controller.rb +9 -0
- data/app/controllers/disco_app/install_controller.rb +27 -0
- data/app/controllers/disco_app/subscriptions_controller.rb +32 -0
- data/app/controllers/disco_app/webhooks_controller.rb +46 -0
- data/app/controllers/sessions_controller.rb +28 -0
- data/app/helpers/disco_app/application_helper.rb +68 -0
- data/app/jobs/disco_app/app_installed_job.rb +3 -0
- data/app/jobs/disco_app/app_uninstalled_job.rb +3 -0
- data/app/jobs/disco_app/concerns/app_installed_job.rb +39 -0
- data/app/jobs/disco_app/concerns/app_uninstalled_job.rb +20 -0
- data/app/jobs/disco_app/concerns/render_asset_group_job.rb +8 -0
- data/app/jobs/disco_app/concerns/shop_update_job.rb +13 -0
- data/app/jobs/disco_app/concerns/subscription_changed_job.rb +7 -0
- data/app/jobs/disco_app/concerns/synchronise_carrier_service_job.rb +55 -0
- data/app/jobs/disco_app/concerns/synchronise_resources_job.rb +12 -0
- data/app/jobs/disco_app/concerns/synchronise_webhooks_job.rb +52 -0
- data/app/jobs/disco_app/render_asset_group_job.rb +3 -0
- data/app/jobs/disco_app/shop_job.rb +27 -0
- data/app/jobs/disco_app/shop_update_job.rb +3 -0
- data/app/jobs/disco_app/subscription_changed_job.rb +3 -0
- data/app/jobs/disco_app/synchronise_carrier_service_job.rb +3 -0
- data/app/jobs/disco_app/synchronise_resources_job.rb +3 -0
- data/app/jobs/disco_app/synchronise_webhooks_job.rb +3 -0
- data/app/models/disco_app/app_settings.rb +3 -0
- data/app/models/disco_app/application_charge.rb +18 -0
- data/app/models/disco_app/concerns/app_settings.rb +7 -0
- data/app/models/disco_app/concerns/can_be_liquified.rb +45 -0
- data/app/models/disco_app/concerns/has_metafields.rb +48 -0
- data/app/models/disco_app/concerns/plan.rb +26 -0
- data/app/models/disco_app/concerns/plan_code.rb +15 -0
- data/app/models/disco_app/concerns/renders_assets.rb +166 -0
- data/app/models/disco_app/concerns/shop.rb +84 -0
- data/app/models/disco_app/concerns/subscription.rb +60 -0
- data/app/models/disco_app/concerns/synchronises.rb +58 -0
- data/app/models/disco_app/concerns/taggable.rb +16 -0
- data/app/models/disco_app/plan.rb +3 -0
- data/app/models/disco_app/plan_code.rb +3 -0
- data/app/models/disco_app/recurring_application_charge.rb +18 -0
- data/app/models/disco_app/session_storage.rb +18 -0
- data/app/models/disco_app/shop.rb +3 -0
- data/app/models/disco_app/subscription.rb +3 -0
- data/app/resources/disco_app/admin/resources/concerns/shop_resource.rb +100 -0
- data/app/resources/disco_app/admin/resources/shop_resource.rb +4 -0
- data/app/services/disco_app/carrier_request_service.rb +15 -0
- data/app/services/disco_app/charges_service.rb +81 -0
- data/app/services/disco_app/proxy_service.rb +17 -0
- data/app/services/disco_app/subscription_service.rb +46 -0
- data/app/services/disco_app/webhook_service.rb +30 -0
- data/app/views/disco_app/admin/app_settings/edit.html.erb +5 -0
- data/app/views/disco_app/admin/plans/_form.html.erb +72 -0
- data/app/views/disco_app/admin/plans/_plan_code_fields.html.erb +15 -0
- data/app/views/disco_app/admin/plans/edit.html.erb +7 -0
- data/app/views/disco_app/admin/plans/index.html.erb +43 -0
- data/app/views/disco_app/admin/plans/new.html.erb +7 -0
- data/app/views/disco_app/admin/shops/index.html.erb +13 -0
- data/app/views/disco_app/admin/subscriptions/edit.html.erb +33 -0
- data/app/views/disco_app/charges/activate.html.erb +1 -0
- data/app/views/disco_app/charges/create.html.erb +1 -0
- data/app/views/disco_app/charges/new.html.erb +23 -0
- data/app/views/disco_app/frame/frame.html.erb +36 -0
- data/app/views/disco_app/install/installing.html.erb +22 -0
- data/app/views/disco_app/install/uninstalling.html.erb +1 -0
- data/app/views/disco_app/proxy_errors/404.html.erb +1 -0
- data/app/views/disco_app/shared/_card.html.erb +14 -0
- data/app/views/disco_app/shared/_icons.html.erb +1 -0
- data/app/views/disco_app/shared/_section.html.erb +17 -0
- data/app/views/disco_app/subscriptions/new.html.erb +25 -0
- data/app/views/layouts/admin/_nav_items.erb +20 -0
- data/app/views/layouts/admin.html.erb +67 -0
- data/app/views/layouts/application.html.erb +18 -0
- data/app/views/layouts/embedded_app.html.erb +50 -0
- data/app/views/layouts/embedded_app_modal.html.erb +28 -0
- data/app/views/sessions/new.html.erb +28 -0
- data/config/routes.rb +63 -0
- data/db/migrate/20150525000000_create_shops_if_not_existent.rb +15 -0
- data/db/migrate/20150525162112_add_status_to_shops.rb +5 -0
- data/db/migrate/20150525171422_add_meta_to_shops.rb +11 -0
- data/db/migrate/20150629210346_add_charge_status_to_shop.rb +5 -0
- data/db/migrate/20150814214025_add_more_meta_to_shops.rb +15 -0
- data/db/migrate/20151017231302_create_disco_app_plans.rb +13 -0
- data/db/migrate/20151017232027_create_disco_app_subscriptions.rb +15 -0
- data/db/migrate/20151017234409_move_shop_to_disco_app_engine.rb +5 -0
- data/db/migrate/20160112233706_create_disco_app_sessions.rb +12 -0
- data/db/migrate/20160113194418_add_shop_id_to_disco_app_sessions.rb +6 -0
- data/db/migrate/20160223111044_create_disco_app_settings.rb +8 -0
- data/db/migrate/20160301223215_update_plans.rb +22 -0
- data/db/migrate/20160301224558_update_subscriptions.rb +13 -0
- data/db/migrate/20160302104816_create_disco_app_recurring_application_charges.rb +14 -0
- data/db/migrate/20160302105259_create_disco_app_application_charges.rb +14 -0
- data/db/migrate/20160302134728_drop_charge_status_from_shops.rb +5 -0
- data/db/migrate/20160302142941_add_shopify_attributes_to_charges.rb +8 -0
- data/db/migrate/20160331093148_create_disco_app_plan_codes.rb +14 -0
- data/db/migrate/20160401044420_add_status_to_plan_codes.rb +5 -0
- data/db/migrate/20160401045551_add_amount_and_plan_code_to_disco_app_subscriptions.rb +7 -0
- data/db/migrate/20160425205211_add_source_to_disco_app_subscriptions.rb +5 -0
- data/db/migrate/20160426033520_add_trial_period_days_to_disco_app_subscriptions.rb +5 -0
- data/db/migrate/20160513140727_add_name_to_disco_app_shops.rb +5 -0
- data/db/migrate/20160521135510_move_shop_to_synchronises.rb +61 -0
- data/lib/disco_app/configuration.rb +45 -0
- data/lib/disco_app/constants.rb +4 -0
- data/lib/disco_app/engine.rb +26 -0
- data/lib/disco_app/session.rb +14 -0
- data/lib/disco_app/support/file_fixtures.rb +23 -0
- data/lib/disco_app/test_help.rb +11 -0
- data/lib/disco_app/version.rb +3 -0
- data/lib/disco_app.rb +7 -0
- data/lib/generators/disco_app/USAGE +5 -0
- data/lib/generators/disco_app/disco_app_generator.rb +239 -0
- data/lib/generators/disco_app/templates/assets/javascripts/application.js +17 -0
- data/lib/generators/disco_app/templates/assets/javascripts/components.js +3 -0
- data/lib/generators/disco_app/templates/assets/stylesheets/application.scss +5 -0
- data/lib/generators/disco_app/templates/config/database.yml.tt +20 -0
- data/lib/generators/disco_app/templates/config/newrelic.yml +26 -0
- data/lib/generators/disco_app/templates/config/puma.rb +15 -0
- data/lib/generators/disco_app/templates/controllers/home_controller.rb +7 -0
- data/lib/generators/disco_app/templates/initializers/disco_app.rb +28 -0
- data/lib/generators/disco_app/templates/initializers/rollbar.rb +19 -0
- data/lib/generators/disco_app/templates/initializers/session_store.rb +2 -0
- data/lib/generators/disco_app/templates/initializers/shopify_app.rb +7 -0
- data/lib/generators/disco_app/templates/initializers/shopify_session_repository.rb +7 -0
- data/lib/generators/disco_app/templates/root/CHECKS +4 -0
- data/lib/generators/disco_app/templates/root/Procfile +2 -0
- data/lib/generators/disco_app/templates/views/home/index.html.erb +2 -0
- data/lib/tasks/carrier_service.rake +10 -0
- data/lib/tasks/database.rake +8 -0
- data/lib/tasks/sessions.rake +9 -0
- data/lib/tasks/shops.rake +10 -0
- data/lib/tasks/start.rake +3 -0
- data/lib/tasks/webhooks.rake +10 -0
- data/test/controllers/disco_app/admin/shops_controller_test.rb +54 -0
- data/test/controllers/disco_app/charges_controller_test.rb +99 -0
- data/test/controllers/disco_app/install_controller_test.rb +50 -0
- data/test/controllers/disco_app/subscriptions_controller_test.rb +68 -0
- data/test/controllers/disco_app/webhooks_controller_test.rb +58 -0
- data/test/controllers/home_controller_test.rb +92 -0
- data/test/controllers/proxy_controller_test.rb +42 -0
- data/test/disco_app_test.rb +7 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +17 -0
- data/test/dummy/app/assets/stylesheets/application.scss +5 -0
- data/test/dummy/app/controllers/application_controller.rb +6 -0
- data/test/dummy/app/controllers/carrier_request_controller.rb +10 -0
- data/test/dummy/app/controllers/disco_app/admin/shops_controller.rb +8 -0
- data/test/dummy/app/controllers/home_controller.rb +7 -0
- data/test/dummy/app/controllers/proxy_controller.rb +8 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/jobs/carts_update_job.rb +7 -0
- data/test/dummy/app/jobs/disco_app/app_installed_job.rb +16 -0
- data/test/dummy/app/jobs/disco_app/app_uninstalled_job.rb +11 -0
- data/test/dummy/app/jobs/products_create_job.rb +7 -0
- data/test/dummy/app/jobs/products_delete_job.rb +7 -0
- data/test/dummy/app/jobs/products_update_job.rb +7 -0
- data/test/dummy/app/models/cart.rb +24 -0
- data/test/dummy/app/models/disco_app/shop.rb +15 -0
- data/test/dummy/app/models/js_configuration.rb +8 -0
- data/test/dummy/app/models/product.rb +9 -0
- data/test/dummy/app/models/widget_configuration.rb +10 -0
- data/test/dummy/app/views/assets/script_tag.js.erb +1 -0
- data/test/dummy/app/views/assets/test.js.erb +1 -0
- data/test/dummy/app/views/assets/widget.js.erb +2 -0
- data/test/dummy/app/views/assets/widget.scss.erb +3 -0
- data/test/dummy/app/views/home/index.html.erb +2 -0
- data/test/dummy/app/views/snippets/widget.liquid.erb +1 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +38 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.codeship.yml +23 -0
- data/test/dummy/config/database.gitlab-ci.yml +24 -0
- data/test/dummy/config/database.yml +20 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +85 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/disco_app.rb +28 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/omniauth.rb +9 -0
- data/test/dummy/config/initializers/session_store.rb +2 -0
- data/test/dummy/config/initializers/shopify_app.rb +7 -0
- data/test/dummy/config/initializers/shopify_session_repository.rb +7 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +11 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/migrate/20160307182229_create_products.rb +11 -0
- data/test/dummy/db/migrate/20160530160739_create_asset_models.rb +19 -0
- data/test/dummy/db/migrate/20161105054746_create_carts.rb +13 -0
- data/test/dummy/db/schema.rb +152 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/fixtures/api/widget_store/assets/create_script_tag_js_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_script_tag_js_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/create_script_tag_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_script_tag_response.json +10 -0
- data/test/fixtures/api/widget_store/assets/create_test_js_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_test_js_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/create_widget_js_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_widget_js_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/create_widget_liquid_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_widget_liquid_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/create_widget_scss_request.json +6 -0
- data/test/fixtures/api/widget_store/assets/create_widget_scss_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/get_script_tags_empty_request.json +1 -0
- data/test/fixtures/api/widget_store/assets/get_script_tags_empty_response.json +1 -0
- data/test/fixtures/api/widget_store/assets/get_script_tags_preexisting_request.json +1 -0
- data/test/fixtures/api/widget_store/assets/get_script_tags_preexisting_response.json +12 -0
- data/test/fixtures/api/widget_store/assets/update_script_tag_request.json +10 -0
- data/test/fixtures/api/widget_store/assets/update_script_tag_response.json +10 -0
- data/test/fixtures/api/widget_store/carrier_services.json +1 -0
- data/test/fixtures/api/widget_store/carrier_services_create.json +8 -0
- data/test/fixtures/api/widget_store/charges/activate_application_charge_request.json +16 -0
- data/test/fixtures/api/widget_store/charges/activate_application_charge_response.json +1 -0
- data/test/fixtures/api/widget_store/charges/activate_recurring_application_charge_request.json +20 -0
- data/test/fixtures/api/widget_store/charges/activate_recurring_application_charge_response.json +1 -0
- data/test/fixtures/api/widget_store/charges/create_application_charge_request.json +9 -0
- data/test/fixtures/api/widget_store/charges/create_application_charge_response.json +16 -0
- data/test/fixtures/api/widget_store/charges/create_recurring_application_charge_request.json +9 -0
- data/test/fixtures/api/widget_store/charges/create_recurring_application_charge_response.json +20 -0
- data/test/fixtures/api/widget_store/charges/create_second_recurring_application_charge_request.json +9 -0
- data/test/fixtures/api/widget_store/charges/create_second_recurring_application_charge_response.json +20 -0
- data/test/fixtures/api/widget_store/charges/get_accepted_application_charge_response.json +16 -0
- data/test/fixtures/api/widget_store/charges/get_accepted_recurring_application_charge_response.json +20 -0
- data/test/fixtures/api/widget_store/charges/get_declined_application_charge_response.json +16 -0
- data/test/fixtures/api/widget_store/charges/get_declined_recurring_application_charge_response.json +20 -0
- data/test/fixtures/api/widget_store/charges/get_pending_application_charge_response.json +16 -0
- data/test/fixtures/api/widget_store/charges/get_pending_recurring_application_charge_response.json +20 -0
- data/test/fixtures/api/widget_store/products/write_metafields_multiple_namespaces_request.json +31 -0
- data/test/fixtures/api/widget_store/products/write_metafields_multiple_namespaces_response.json +1 -0
- data/test/fixtures/api/widget_store/products/write_metafields_single_namespace_request.json +19 -0
- data/test/fixtures/api/widget_store/products/write_metafields_single_namespace_response.json +1 -0
- data/test/fixtures/api/widget_store/shop.json +46 -0
- data/test/fixtures/api/widget_store/webhooks.json +1 -0
- data/test/fixtures/assets/test.js +1 -0
- data/test/fixtures/assets/test.min.js +1 -0
- data/test/fixtures/carts.yml +5 -0
- data/test/fixtures/disco_app/application_charges.yml +11 -0
- data/test/fixtures/disco_app/plan_codes.yml +13 -0
- data/test/fixtures/disco_app/plans.yml +37 -0
- data/test/fixtures/disco_app/recurring_application_charges.yml +11 -0
- data/test/fixtures/disco_app/shops.yml +10 -0
- data/test/fixtures/disco_app/subscriptions.yml +22 -0
- data/test/fixtures/js_configurations.yml +3 -0
- data/test/fixtures/liquid/model.liquid +8 -0
- data/test/fixtures/products.yml +4 -0
- data/test/fixtures/webhooks/app_uninstalled.json +46 -0
- data/test/fixtures/webhooks/cart_updated.json +28 -0
- data/test/fixtures/webhooks/product_created.json +167 -0
- data/test/fixtures/webhooks/product_deleted.json +3 -0
- data/test/fixtures/webhooks/product_updated.json +167 -0
- data/test/fixtures/widget_configurations.yml +4 -0
- data/test/integration/synchronises_test.rb +62 -0
- data/test/jobs/disco_app/app_installed_job_test.rb +57 -0
- data/test/jobs/disco_app/app_uninstalled_job_test.rb +30 -0
- data/test/jobs/disco_app/synchronise_carrier_service_job_test.rb +25 -0
- data/test/jobs/disco_app/synchronise_webhooks_job_test.rb +30 -0
- data/test/models/disco_app/can_be_liquified_test.rb +55 -0
- data/test/models/disco_app/has_metafields_test.rb +40 -0
- data/test/models/disco_app/plan_test.rb +5 -0
- data/test/models/disco_app/renders_assets_test.rb +109 -0
- data/test/models/disco_app/session_test.rb +31 -0
- data/test/models/disco_app/shop_test.rb +43 -0
- data/test/models/disco_app/subscription_test.rb +19 -0
- data/test/services/disco_app/charges_service_test.rb +112 -0
- data/test/services/disco_app/subscription_service_test.rb +60 -0
- data/test/support/test_file_fixtures.rb +29 -0
- data/test/support/test_shopify_api.rb +16 -0
- data/test/test_helper.rb +55 -0
- metadata +893 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
const Button = ({ children, disabled, name=false, onClick = ()=>{}, primary = false, destroy = false, type = 'button' }) => {
|
2
|
+
|
3
|
+
const className = classNames({
|
4
|
+
'btn': true,
|
5
|
+
'btn-primary': primary,
|
6
|
+
'btn-destroy': destroy
|
7
|
+
});
|
8
|
+
|
9
|
+
return(
|
10
|
+
<button type={type} name={name} disabled={disabled} className={className} onClick={onClick}>
|
11
|
+
{children}
|
12
|
+
</button>
|
13
|
+
)
|
14
|
+
|
15
|
+
};
|
@@ -0,0 +1,342 @@
|
|
1
|
+
.next-card {
|
2
|
+
background-color: #ffffff;
|
3
|
+
border-radius: 3px;
|
4
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
5
|
+
color: #31373d;
|
6
|
+
}
|
7
|
+
|
8
|
+
.next-card ~ .next-card {
|
9
|
+
margin-top: 20px;
|
10
|
+
}
|
11
|
+
|
12
|
+
.next-card--aside {
|
13
|
+
background-color: #f5f6f7;
|
14
|
+
}
|
15
|
+
|
16
|
+
.next-card--aside-lighter {
|
17
|
+
background-color: #fafbfc;
|
18
|
+
}
|
19
|
+
|
20
|
+
.next-card--plain {
|
21
|
+
box-shadow: none;
|
22
|
+
}
|
23
|
+
|
24
|
+
.next-card--hide-overflow {
|
25
|
+
overflow: hidden;
|
26
|
+
}
|
27
|
+
|
28
|
+
.next-card--stacked {
|
29
|
+
margin: 0;
|
30
|
+
box-shadow: none;
|
31
|
+
border-radius: 0;
|
32
|
+
}
|
33
|
+
|
34
|
+
.next-card--stacked ~ .next-card--stacked {
|
35
|
+
margin-top: 0;
|
36
|
+
}
|
37
|
+
|
38
|
+
.next-card--preserve-first-and-last-section-spacing .next-card__section--half-spacing:first-of-type {
|
39
|
+
padding-top: 20px;
|
40
|
+
}
|
41
|
+
|
42
|
+
.next-card--preserve-first-and-last-section-spacing .next-card__section--half-spacing:last-of-type {
|
43
|
+
padding-bottom: 20px;
|
44
|
+
}
|
45
|
+
|
46
|
+
.next-card--sticky {
|
47
|
+
position: -webkit-sticky;
|
48
|
+
position: sticky;
|
49
|
+
top: 76px;
|
50
|
+
}
|
51
|
+
|
52
|
+
.next-card--js-sticky {
|
53
|
+
position: fixed;
|
54
|
+
top: 56px;
|
55
|
+
margin-top: 20px;
|
56
|
+
}
|
57
|
+
|
58
|
+
.next-card__header {
|
59
|
+
padding: 20px 20px 0;
|
60
|
+
}
|
61
|
+
|
62
|
+
.next-card__header .next-heading {
|
63
|
+
margin-bottom: 0;
|
64
|
+
}
|
65
|
+
|
66
|
+
.next-card__footer {
|
67
|
+
padding: 0 20px 20px;
|
68
|
+
}
|
69
|
+
|
70
|
+
.next-card__section {
|
71
|
+
padding: 20px;
|
72
|
+
}
|
73
|
+
|
74
|
+
.next-card__section ~ .next-card__section {
|
75
|
+
border-top: 1px solid #ebeef0;
|
76
|
+
}
|
77
|
+
|
78
|
+
.next-card__section ~ .next-card__section.next-card__section--no-border {
|
79
|
+
border-top: 0;
|
80
|
+
}
|
81
|
+
|
82
|
+
.next-card__section:first-child {
|
83
|
+
border-radius: 3px 3px 0 0;
|
84
|
+
}
|
85
|
+
|
86
|
+
.next-card__section:last-child {
|
87
|
+
border-radius: 0 0 3px 3px;
|
88
|
+
}
|
89
|
+
|
90
|
+
.next-card__section--no-vertical-spacing {
|
91
|
+
padding-top: 0;
|
92
|
+
padding-bottom: 0;
|
93
|
+
}
|
94
|
+
|
95
|
+
.next-card__section--no-vertical-spacing + .next-card__section {
|
96
|
+
border-top: none;
|
97
|
+
}
|
98
|
+
|
99
|
+
.next-card__section--no-horizontal-spacing {
|
100
|
+
padding-left: 0;
|
101
|
+
padding-right: 0;
|
102
|
+
}
|
103
|
+
|
104
|
+
.next-card__section--half-spacing {
|
105
|
+
padding-top: 10px;
|
106
|
+
padding-bottom: 10px;
|
107
|
+
}
|
108
|
+
|
109
|
+
.next-card__section--half-spacing.next-card__header {
|
110
|
+
padding-bottom: 0;
|
111
|
+
}
|
112
|
+
|
113
|
+
.next-card__section--half-spacing.next-card__footer {
|
114
|
+
padding-top: 0;
|
115
|
+
}
|
116
|
+
|
117
|
+
.next-card__section--three-quarter-spacing {
|
118
|
+
padding-top: 15px;
|
119
|
+
padding-bottom: 15px;
|
120
|
+
}
|
121
|
+
|
122
|
+
.next-card__section--double-spacing {
|
123
|
+
padding-top: 40px;
|
124
|
+
padding-bottom: 40px;
|
125
|
+
}
|
126
|
+
|
127
|
+
.next-card__section--no-padding {
|
128
|
+
padding: 0;
|
129
|
+
}
|
130
|
+
|
131
|
+
.next-card__section--subdued {
|
132
|
+
background-color: #f5f6f7;
|
133
|
+
}
|
134
|
+
|
135
|
+
.next-card__section--more-subdued {
|
136
|
+
background-color: #ebeef0;
|
137
|
+
}
|
138
|
+
|
139
|
+
.next-card__section--less-subdued {
|
140
|
+
background-color: #fafbfc;
|
141
|
+
}
|
142
|
+
|
143
|
+
.next-card__section--accentuated {
|
144
|
+
background-color: #0078bd;
|
145
|
+
}
|
146
|
+
|
147
|
+
.next-card__section--accentuated .next-heading {
|
148
|
+
color: #ffffff;
|
149
|
+
}
|
150
|
+
|
151
|
+
.next-card__section--bordered {
|
152
|
+
border-top: 1px solid #ebeef0;
|
153
|
+
}
|
154
|
+
|
155
|
+
.next-card__section--no-bottom-spacing {
|
156
|
+
padding-bottom: 0;
|
157
|
+
}
|
158
|
+
|
159
|
+
.next-card__section--no-bottom-spacing + .next-card__section {
|
160
|
+
border-top: 0;
|
161
|
+
}
|
162
|
+
|
163
|
+
.next-card__section--no-top-spacing {
|
164
|
+
padding-top: 0;
|
165
|
+
}
|
166
|
+
|
167
|
+
.next-card__section ~ .next-card__section--no-top-spacing {
|
168
|
+
border-top: 0;
|
169
|
+
}
|
170
|
+
|
171
|
+
.next-card__section--border-left {
|
172
|
+
border-left: 1px solid #ebeef0;
|
173
|
+
}
|
174
|
+
|
175
|
+
.next-card__section--border-bottom {
|
176
|
+
border-bottom: 1px solid #ebeef0;
|
177
|
+
}
|
178
|
+
|
179
|
+
.next-card__section--centered {
|
180
|
+
text-align: center;
|
181
|
+
}
|
182
|
+
|
183
|
+
.next-card__section--sello-only {
|
184
|
+
position: relative;
|
185
|
+
}
|
186
|
+
|
187
|
+
.next-card__section--sello-only::after {
|
188
|
+
content: "";
|
189
|
+
position: absolute;
|
190
|
+
top: 0;
|
191
|
+
right: 0;
|
192
|
+
height: 100%;
|
193
|
+
width: 10px;
|
194
|
+
background-color: #2cc699;
|
195
|
+
}
|
196
|
+
|
197
|
+
.next-card__section--sello-only:last-child::after {
|
198
|
+
border-radius: 0 0 3px 0;
|
199
|
+
}
|
200
|
+
|
201
|
+
.next-card__section--sello-only:first-child::after {
|
202
|
+
border-radius: 0 3px 0 0;
|
203
|
+
}
|
204
|
+
|
205
|
+
.next-card--with-full-height-image {
|
206
|
+
position: relative;
|
207
|
+
padding-left: 250px;
|
208
|
+
max-width: calc(100% - 250px);
|
209
|
+
}
|
210
|
+
|
211
|
+
.next-card--with-full-height-image .next-card__image {
|
212
|
+
position: absolute;
|
213
|
+
top: 0;
|
214
|
+
bottom: 0;
|
215
|
+
left: 0;
|
216
|
+
width: 250px;
|
217
|
+
background-size: cover;
|
218
|
+
background-position: center;
|
219
|
+
border-top-left-radius: 3px;
|
220
|
+
border-bottom-left-radius: 3px;
|
221
|
+
}
|
222
|
+
|
223
|
+
.page--condense-spacing .next-card--with-full-height-image {
|
224
|
+
padding-left: 0;
|
225
|
+
max-width: 100%;
|
226
|
+
}
|
227
|
+
|
228
|
+
.page--condense-spacing .next-card--with-full-height-image .next-card__image {
|
229
|
+
position: static;
|
230
|
+
display: block;
|
231
|
+
width: 100%;
|
232
|
+
height: 120px;
|
233
|
+
border-radius: 0;
|
234
|
+
}
|
235
|
+
|
236
|
+
.next-card__section__separator {
|
237
|
+
margin: 20px auto;
|
238
|
+
background-color: #ebeef0;
|
239
|
+
}
|
240
|
+
|
241
|
+
.next-card__section__separator--no-margin {
|
242
|
+
margin: 0;
|
243
|
+
}
|
244
|
+
|
245
|
+
.next-card__separator {
|
246
|
+
margin: 0;
|
247
|
+
height: 1px;
|
248
|
+
background: #ebeef0;
|
249
|
+
}
|
250
|
+
|
251
|
+
.next-card__separator--thick {
|
252
|
+
height: 5px;
|
253
|
+
}
|
254
|
+
|
255
|
+
.next-card__separator--inline {
|
256
|
+
margin: 10px 20px;
|
257
|
+
}
|
258
|
+
|
259
|
+
.next-card--top-rounded-corners {
|
260
|
+
border-radius: 3px 3px 0 0 !important;
|
261
|
+
}
|
262
|
+
|
263
|
+
.next-card--bottom-rounded-corners {
|
264
|
+
border-radius: 0 0 3px 3px !important;
|
265
|
+
}
|
266
|
+
|
267
|
+
.next-card--all-rounded-corners {
|
268
|
+
border-radius: 3px !important;
|
269
|
+
}
|
270
|
+
|
271
|
+
.next-card--left-rounded-corners {
|
272
|
+
border-radius: 3px 0 0 3px;
|
273
|
+
}
|
274
|
+
|
275
|
+
.next-card--right-rounded-corners {
|
276
|
+
border-radius: 0 3px 3px 0;
|
277
|
+
}
|
278
|
+
|
279
|
+
.next-card--top-right-rounded-corner {
|
280
|
+
border-top-right-radius: 3px;
|
281
|
+
}
|
282
|
+
|
283
|
+
.next-card--bottom-right-rounded-corner {
|
284
|
+
border-bottom-right-radius: 3px;
|
285
|
+
}
|
286
|
+
|
287
|
+
.next-card--top-left-rounded-corner {
|
288
|
+
border-top-left-radius: 3px;
|
289
|
+
}
|
290
|
+
|
291
|
+
.next-card--bottom-left-rounded-corner {
|
292
|
+
border-bottom-left-radius: 3px;
|
293
|
+
}
|
294
|
+
|
295
|
+
.next-card__ribbon {
|
296
|
+
background: #fafbfc;
|
297
|
+
border-right: solid 1px #ebeef0;
|
298
|
+
border-radius: 3px 0 0 3px;
|
299
|
+
padding: 20px;
|
300
|
+
display: block;
|
301
|
+
}
|
302
|
+
|
303
|
+
.next-card__ribbon--warning {
|
304
|
+
background: #ffd117;
|
305
|
+
border-right: solid 1px rgba(212, 160, 2, 0.25);
|
306
|
+
}
|
307
|
+
|
308
|
+
.next-card__ribbon--vertically-centered {
|
309
|
+
display: -webkit-box;
|
310
|
+
display: -webkit-flex;
|
311
|
+
display: -ms-flexbox;
|
312
|
+
display: flex;
|
313
|
+
-webkit-box-orient: vertical;
|
314
|
+
-webkit-box-direction: normal;
|
315
|
+
-webkit-flex-direction: column;
|
316
|
+
-ms-flex-direction: column;
|
317
|
+
flex-direction: column;
|
318
|
+
-webkit-box-pack: center;
|
319
|
+
-webkit-justify-content: center;
|
320
|
+
-ms-flex-pack: center;
|
321
|
+
justify-content: center;
|
322
|
+
}
|
323
|
+
|
324
|
+
.next-ui .next-text-slate {
|
325
|
+
color: #31373d;
|
326
|
+
}
|
327
|
+
|
328
|
+
.next-card__header--fully-padded {
|
329
|
+
padding-bottom: 20px;
|
330
|
+
}
|
331
|
+
|
332
|
+
.next-card--semi-transparent {
|
333
|
+
background-color: rgba(255, 255, 255, 0.9);
|
334
|
+
}
|
335
|
+
|
336
|
+
.next-card__channel-image {
|
337
|
+
margin-right: 20px;
|
338
|
+
}
|
339
|
+
|
340
|
+
.next-grid--single-column .next-card__channel-image {
|
341
|
+
display: none;
|
342
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
const CardHeader = ({ title, subheading, children }) => {
|
2
|
+
|
3
|
+
// If children were provided, insert them as the "action" item on the right
|
4
|
+
// hand side of the header.
|
5
|
+
let actionStackItem = null;
|
6
|
+
if(children) {
|
7
|
+
actionStackItem = (
|
8
|
+
<UIStackItem>
|
9
|
+
{children}
|
10
|
+
</UIStackItem>
|
11
|
+
)
|
12
|
+
}
|
13
|
+
|
14
|
+
return (
|
15
|
+
<header className="next-card__header">
|
16
|
+
<UIStack>
|
17
|
+
<UIStackItem fill={true}>
|
18
|
+
<UIHeading subheading={subheading}>{title}</UIHeading>
|
19
|
+
</UIStackItem>
|
20
|
+
{actionStackItem}
|
21
|
+
</UIStack>
|
22
|
+
</header>
|
23
|
+
);
|
24
|
+
};
|
25
|
+
|
26
|
+
CardHeader.propTypes = {
|
27
|
+
title: React.PropTypes.string.isRequired,
|
28
|
+
subheading: React.PropTypes.bool,
|
29
|
+
children: React.PropTypes.node
|
30
|
+
};
|
31
|
+
|
32
|
+
CardHeader.defaultProps = {
|
33
|
+
subheading: false
|
34
|
+
};
|
@@ -0,0 +1,26 @@
|
|
1
|
+
const CardSection = ({ children, wrappable, borderless }) => {
|
2
|
+
const className = classNames({
|
3
|
+
'next-card__section': true,
|
4
|
+
'wrappable': wrappable,
|
5
|
+
'wrappable--half-spacing': wrappable,
|
6
|
+
'next-card__section--no-border': borderless,
|
7
|
+
'next-card__section--no-top-spacing': borderless
|
8
|
+
});
|
9
|
+
|
10
|
+
return (
|
11
|
+
<div className={className}>
|
12
|
+
{children}
|
13
|
+
</div>
|
14
|
+
);
|
15
|
+
};
|
16
|
+
|
17
|
+
CardSection.propTypes = {
|
18
|
+
children: React.PropTypes.node.isRequired,
|
19
|
+
wrappable: React.PropTypes.bool,
|
20
|
+
borderless: React.PropTypes.bool
|
21
|
+
};
|
22
|
+
|
23
|
+
CardSection.defaultProps = {
|
24
|
+
wrappable: false,
|
25
|
+
borderless: false
|
26
|
+
};
|
@@ -0,0 +1,16 @@
|
|
1
|
+
const Card = ({ children, aside }) => {
|
2
|
+
|
3
|
+
const className = classNames({
|
4
|
+
'next-card': true,
|
5
|
+
'next-card--aside': aside
|
6
|
+
});
|
7
|
+
|
8
|
+
return (
|
9
|
+
<div className={className}>{children}</div>
|
10
|
+
);
|
11
|
+
};
|
12
|
+
|
13
|
+
Card.PropTypes = {
|
14
|
+
children: React.PropTypes.node,
|
15
|
+
aside: React.PropTypes.bool
|
16
|
+
};
|
@@ -0,0 +1,23 @@
|
|
1
|
+
.ui-heading {
|
2
|
+
font-size: 1.21429rem;
|
3
|
+
line-height: 1.71429rem;
|
4
|
+
font-weight: 600;
|
5
|
+
}
|
6
|
+
|
7
|
+
.ui-subheading {
|
8
|
+
font-size: 0.92857rem;
|
9
|
+
line-height: 1.42857rem;
|
10
|
+
font-weight: 600;
|
11
|
+
text-transform: uppercase;
|
12
|
+
letter-spacing: 0.04em;
|
13
|
+
}
|
14
|
+
|
15
|
+
@media screen and (min-width: 640px) {
|
16
|
+
.ui-heading {
|
17
|
+
font-size: 1.14286rem;
|
18
|
+
}
|
19
|
+
|
20
|
+
.ui-subheading {
|
21
|
+
font-size: 0.85714rem;
|
22
|
+
}
|
23
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
const UIHeading = ({ children, subheading }) => {
|
2
|
+
if(subheading) {
|
3
|
+
return <h3 className="ui-subheading">{children}</h3>;
|
4
|
+
}
|
5
|
+
|
6
|
+
return <h2 className="ui-heading">{children}</h2>;
|
7
|
+
};
|
8
|
+
|
9
|
+
UIHeading.propTypes = {
|
10
|
+
children: React.PropTypes.node.isRequired,
|
11
|
+
subheading: React.PropTypes.bool
|
12
|
+
};
|
13
|
+
|
14
|
+
UIHeading.defaultProps = {
|
15
|
+
subheading: false
|
16
|
+
};
|
@@ -0,0 +1,157 @@
|
|
1
|
+
.ui-page-actions {
|
2
|
+
@include flexbox();
|
3
|
+
margin: 0 auto;
|
4
|
+
max-width: 1036px;
|
5
|
+
padding: 20px 0;
|
6
|
+
border-top: 1px solid #d3dbe2;
|
7
|
+
}
|
8
|
+
|
9
|
+
.ui-page-actions__primary {
|
10
|
+
@include flex(1 1 auto);
|
11
|
+
padding-right: 20px;
|
12
|
+
}
|
13
|
+
|
14
|
+
.ui-page-actions__secondary {
|
15
|
+
@include flex(1 1 auto);
|
16
|
+
padding: 0 20px;
|
17
|
+
}
|
18
|
+
|
19
|
+
.ui-footer-help {
|
20
|
+
margin: 1.71429rem 0;
|
21
|
+
text-align: center;
|
22
|
+
width: 100%;
|
23
|
+
}
|
24
|
+
|
25
|
+
.ui-footer-help__content {
|
26
|
+
color: rgba(0,0,0,0.56);
|
27
|
+
display: -webkit-inline-box;
|
28
|
+
display: -webkit-inline-flex;
|
29
|
+
display: -ms-inline-flexbox;
|
30
|
+
display: inline-flex;
|
31
|
+
-webkit-box-align: center;
|
32
|
+
-webkit-align-items: center;
|
33
|
+
-ms-flex-align: center;
|
34
|
+
align-items: center;
|
35
|
+
text-align: left;
|
36
|
+
margin: 0 auto;
|
37
|
+
padding: 1.14286rem;
|
38
|
+
border: 1px solid #d3dbe2;
|
39
|
+
border-radius: 3px;
|
40
|
+
}
|
41
|
+
|
42
|
+
.ui-empty-state {
|
43
|
+
text-align: center;
|
44
|
+
|
45
|
+
.next-heading {
|
46
|
+
font-weight: 300;
|
47
|
+
|
48
|
+
&:last-child {
|
49
|
+
margin-bottom: 0;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
.ui-empty-state__title {
|
55
|
+
color: rgba(0,0,0,0.9);
|
56
|
+
font-size: 1.92857rem;
|
57
|
+
line-height: 2.57143rem;
|
58
|
+
font-weight: 400;
|
59
|
+
margin: 0 0 20px;
|
60
|
+
|
61
|
+
@media (min-width: 640px) {
|
62
|
+
font-size: 2.35714rem;
|
63
|
+
line-height: 3.14286rem;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
.ui-empty-state__subtitle {
|
68
|
+
color: rgba(0,0,0,0.9);
|
69
|
+
font-size: 1.14286rem;
|
70
|
+
line-height: 1.71429rem;
|
71
|
+
font-weight: 400;
|
72
|
+
color: rgba(0,0,0,0.56);
|
73
|
+
margin: 0 0 20px;
|
74
|
+
|
75
|
+
@media (min-width: 640px) {
|
76
|
+
font-size: 1.42857rem;
|
77
|
+
line-height: 2rem;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
.ui-empty-state__section {
|
82
|
+
padding: 60px 0;
|
83
|
+
}
|
84
|
+
|
85
|
+
.ui-empty-state__subsection {
|
86
|
+
@include flexbox();
|
87
|
+
@include flex-direction(column);
|
88
|
+
@include align-items(center);
|
89
|
+
|
90
|
+
max-width: 1000px;
|
91
|
+
margin-right: auto;
|
92
|
+
margin-left: auto;
|
93
|
+
padding: 0 30px;
|
94
|
+
|
95
|
+
& > *+* {
|
96
|
+
margin-bottom: 20px;
|
97
|
+
}
|
98
|
+
}
|
99
|
+
|
100
|
+
.ui-empty-state__items {
|
101
|
+
@include flexbox();
|
102
|
+
@include flex-wrap(wrap);
|
103
|
+
@include justify-content(center);
|
104
|
+
|
105
|
+
margin-top: -30px;
|
106
|
+
margin-left: -30px;
|
107
|
+
max-width: calc(100% + 30px);
|
108
|
+
width: calc(100% + 30px);
|
109
|
+
}
|
110
|
+
|
111
|
+
.ui-empty-state__item {
|
112
|
+
@include flex(1 1 263.33333px);
|
113
|
+
margin-top: 30px;
|
114
|
+
margin-left: 30px;
|
115
|
+
|
116
|
+
&:only-of-type {
|
117
|
+
@include flex(0 1 454px);
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
.ui-empty-state__subitems {
|
122
|
+
@include flexbox();
|
123
|
+
@include flex-wrap(wrap);
|
124
|
+
|
125
|
+
margin-top: -20px;
|
126
|
+
margin-left: -20px;
|
127
|
+
max-width: calc(100% + 20px);
|
128
|
+
width: calc(100% + 20px);
|
129
|
+
}
|
130
|
+
|
131
|
+
.ui-empty-state__subitem {
|
132
|
+
margin-top: 20px;
|
133
|
+
margin-left: 20px;
|
134
|
+
position: relative;
|
135
|
+
|
136
|
+
&:first-child {
|
137
|
+
@include flex(1 1 150px);
|
138
|
+
height: 90px;
|
139
|
+
min-width: 0;
|
140
|
+
}
|
141
|
+
|
142
|
+
&:last-child {
|
143
|
+
@include flex(1 1 60%);
|
144
|
+
}
|
145
|
+
|
146
|
+
|
147
|
+
img {
|
148
|
+
margin: 0 auto;
|
149
|
+
max-height: 100%;
|
150
|
+
position: absolute;
|
151
|
+
bottom: 0;
|
152
|
+
-webkit-transform: translateX(-50%);
|
153
|
+
transform: translateX(-50%);
|
154
|
+
left: 50%;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
@@ -0,0 +1,29 @@
|
|
1
|
+
const UIAnnotatedSection = ({ title, description, children }) => {
|
2
|
+
|
3
|
+
return (
|
4
|
+
<section className="ui-annotated-section">
|
5
|
+
|
6
|
+
<div className="ui-annotated-section__annotation">
|
7
|
+
<div className="ui-annotated-section__title">
|
8
|
+
<h2 className="next-heading next-heading--no-margin">{title}</h2>
|
9
|
+
</div>
|
10
|
+
|
11
|
+
<div className="ui-annotated-section__description">
|
12
|
+
{typeof description == 'string' ? <p>{description}</p> : description}
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
|
16
|
+
<div className="ui-annotated-section__content">
|
17
|
+
{children}
|
18
|
+
</div>
|
19
|
+
|
20
|
+
</section>
|
21
|
+
);
|
22
|
+
|
23
|
+
};
|
24
|
+
|
25
|
+
UIAnnotatedSection.propTypes = {
|
26
|
+
title: React.PropTypes.string.isRequired,
|
27
|
+
description: React.PropTypes.node,
|
28
|
+
children: React.PropTypes.node
|
29
|
+
};
|
@@ -0,0 +1,35 @@
|
|
1
|
+
const UIEmptyState = ({ title, subtitle, image, href, label }) => {
|
2
|
+
|
3
|
+
let imageSubsection = null;
|
4
|
+
if(image) {
|
5
|
+
imageSubsection = (
|
6
|
+
<div className="ui-empty-state__subsection">
|
7
|
+
<div className="ui-empty-state__items">
|
8
|
+
<div className="ui-empty-state__item">
|
9
|
+
<div className="ui-empty-state__subitems">
|
10
|
+
<div className="ui-empty-state__subitem">
|
11
|
+
<img src={image} alt={title} />
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
);
|
18
|
+
}
|
19
|
+
|
20
|
+
return(
|
21
|
+
<div className="ui-empty-state">
|
22
|
+
<div className="ui-empty-state__section">
|
23
|
+
<div className="ui-empty-state__subsection">
|
24
|
+
<h1 className="ui-empty-state__title">{title}</h1>
|
25
|
+
<h2 className="ui-empty-state__subtitle">{subtitle}</h2>
|
26
|
+
</div>
|
27
|
+
{imageSubsection}
|
28
|
+
<div className="ui-empty-state__subsection">
|
29
|
+
<a className="btn btn-large btn-primary" href={href}>{label}</a>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
</div>
|
33
|
+
)
|
34
|
+
|
35
|
+
};
|