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,152 @@
|
|
1
|
+
/**
|
2
|
+
* frame.js
|
3
|
+
*
|
4
|
+
* The FrameApp object is a lightweight Javascript object intended to mock the `postMessage` endpoint for Embedded Apps
|
5
|
+
* in the Shopify Admin panel. Eventually, we hope to mock all of the functionality provided by the Shopify Embedded App
|
6
|
+
* SDK.
|
7
|
+
*/
|
8
|
+
(function() {
|
9
|
+
|
10
|
+
window.FrameApp = (function() {
|
11
|
+
|
12
|
+
FrameApp.name = 'Shopify Dev Frame';
|
13
|
+
|
14
|
+
function FrameApp() {}
|
15
|
+
|
16
|
+
|
17
|
+
/* Initialisation, configuration and helpers.
|
18
|
+
================================================== */
|
19
|
+
|
20
|
+
/**
|
21
|
+
* Initialise the FrameApp - load configuration, set up event handlers.
|
22
|
+
*
|
23
|
+
* @param config
|
24
|
+
* @returns {*}
|
25
|
+
*/
|
26
|
+
FrameApp.init = function(config) {
|
27
|
+
var _this = this;
|
28
|
+
if (config == null) {
|
29
|
+
config = {};
|
30
|
+
}
|
31
|
+
this.loadConfig(config);
|
32
|
+
|
33
|
+
// Use addEventListener if available, otherwise fall back to attachEvent.
|
34
|
+
if (window.addEventListener) {
|
35
|
+
this.iframe.addEventListener("load", FrameApp.__iframeLoadCallback, false);
|
36
|
+
return window.addEventListener("message", FrameApp.__addEventMessageCallback, false);
|
37
|
+
}
|
38
|
+
|
39
|
+
this.iframe.attachEvent("load", FrameApp.__iframeLoadCallback);
|
40
|
+
return window.attachEvent("onMessage", FrameApp.__addEventMessageCallback);
|
41
|
+
};
|
42
|
+
|
43
|
+
/**
|
44
|
+
* Load configuration for the FrameApp. Set defaults if not provided.
|
45
|
+
* @param config
|
46
|
+
*/
|
47
|
+
FrameApp.loadConfig = function(config) {
|
48
|
+
this.shopOrigin = config.shopOrigin;
|
49
|
+
this.debug = !!config.debug;
|
50
|
+
this.iframe = config.iframe;
|
51
|
+
if (!this.iframe) {
|
52
|
+
this.log("FrameApp error: no <iframe> specified.");
|
53
|
+
}
|
54
|
+
FrameApp.log('FrameApp configuration loaded.');
|
55
|
+
};
|
56
|
+
|
57
|
+
/**
|
58
|
+
* Log a message to the console, if the app was configured in debug mode.
|
59
|
+
*
|
60
|
+
* @param message
|
61
|
+
* @param force
|
62
|
+
* @returns {*}
|
63
|
+
*/
|
64
|
+
FrameApp.log = function(message, force) {
|
65
|
+
if ((typeof console !== "undefined" && console !== null ? console.log : void 0) && (this.debug || force)) {
|
66
|
+
return console.log(message);
|
67
|
+
}
|
68
|
+
};
|
69
|
+
|
70
|
+
|
71
|
+
/* Message sending and event handling.
|
72
|
+
================================================== */
|
73
|
+
|
74
|
+
FrameApp.__messageHandlers = {};
|
75
|
+
|
76
|
+
/**
|
77
|
+
* Post a message to the <iframe>.
|
78
|
+
*
|
79
|
+
* @param message
|
80
|
+
* @param data
|
81
|
+
* @returns {*}
|
82
|
+
*/
|
83
|
+
FrameApp.postMessage = function(message, data) {
|
84
|
+
var json;
|
85
|
+
json = JSON.stringify({
|
86
|
+
message: message,
|
87
|
+
data: data
|
88
|
+
});
|
89
|
+
FrameApp.log("FrameApp client sent " + json + " to ShopifyApp.");
|
90
|
+
return this.iframe.contentWindow.postMessage(json, '*');
|
91
|
+
};
|
92
|
+
|
93
|
+
/**
|
94
|
+
* Add a handler for a received message.
|
95
|
+
*
|
96
|
+
* @param message
|
97
|
+
* @param fn
|
98
|
+
* @returns {Number|*}
|
99
|
+
* @private
|
100
|
+
*/
|
101
|
+
FrameApp.__addMessageHandler = function(message, fn) {
|
102
|
+
if (typeof message === "function") {
|
103
|
+
fn = message;
|
104
|
+
message = void 0;
|
105
|
+
}
|
106
|
+
if (!FrameApp.__messageHandlers[message]) {
|
107
|
+
FrameApp.__messageHandlers[message] = [];
|
108
|
+
}
|
109
|
+
return FrameApp.__messageHandlers[message].push(fn);
|
110
|
+
};
|
111
|
+
|
112
|
+
/**
|
113
|
+
* Callback triggered when a postMessage message is received.
|
114
|
+
*
|
115
|
+
* @param e
|
116
|
+
* @returns {*}
|
117
|
+
* @private
|
118
|
+
*/
|
119
|
+
FrameApp.__addEventMessageCallback = function(e) {
|
120
|
+
var handler, handlers, message, submitForm, _i, _len;
|
121
|
+
FrameApp.log("FrameApp client received " + e.data + " from " + e.origin);
|
122
|
+
message = JSON.parse(e.data);
|
123
|
+
handlers = [];
|
124
|
+
if (FrameApp.__messageHandlers[message.message]) {
|
125
|
+
handlers = handlers.concat(FrameApp.__messageHandlers[message.message]);
|
126
|
+
}
|
127
|
+
if (FrameApp.__messageHandlers[void 0]) {
|
128
|
+
handlers = handlers.concat(FrameApp.__messageHandlers[void 0]);
|
129
|
+
}
|
130
|
+
for (_i = 0, _len = handlers.length; _i < _len; _i++) {
|
131
|
+
handler = handlers[_i];
|
132
|
+
handler(message.message, message.data);
|
133
|
+
}
|
134
|
+
};
|
135
|
+
|
136
|
+
/**
|
137
|
+
* Callback triggered when our iFrame is loaded.
|
138
|
+
*
|
139
|
+
* @param e
|
140
|
+
* @private
|
141
|
+
*/
|
142
|
+
FrameApp.__iframeLoadCallback = function(e) {
|
143
|
+
FrameApp.postMessage('Shopify.API.initialize', {
|
144
|
+
'hi': 'there!'
|
145
|
+
});
|
146
|
+
};
|
147
|
+
|
148
|
+
return FrameApp;
|
149
|
+
|
150
|
+
}).call(this);
|
151
|
+
|
152
|
+
}).call(this);
|
@@ -0,0 +1 @@
|
|
1
|
+
(function(){var t,e,n,s,a,i=function(t,e){return function(){return t.apply(e,arguments)}};t={STYLIZED:"next-input--stylized",SELECT_WRAPPER:"next-select__wrapper",TEXTAREA:"next-textarea",INPUT:"next-input",SELECT:"next-select",LABEL:"next-label"},n={LABEL:{FOCUSED:t.LABEL+"--is-focused"},INPUT:{FOCUSED:t.INPUT+"--is-focused"}},e=[t.INPUT,t.TEXTAREA,t.SELECT],s=function(){function s(){this.handleFocusChange=i(this.handleFocusChange,this),document.addEventListener("focus",this.handleFocusChange,!0),document.addEventListener("blur",this.handleFocusChange,!0)}return s.prototype.handleFocusChange=function(t){var s,a,i,o,r,c,l,u,d;for(u=t.target,a=0,o=e.length;o>a;a++)l=e[a],d=u.classList.contains(l);return d?(c=this.findLabelAndParent(u),i=c[0],r=c[1],s="focus"===t.type,i.classList.toggle(n.LABEL.FOCUSED,s),r.classList.toggle(n.INPUT.FOCUSED,s)):void 0},s.prototype.findLabelAndParent=function(e){var n,s;return n=document.querySelectorAll("label[for='"+e.getAttribute("id")+"']")[0],s=this._findParentNodeByClass(t.SELECT_WRAPPER,e),s||(s=this._findParentNodeByClass(t.STYLIZED,e)),[n,s]},s.prototype._findParentNodeByClass=function(t,e){var n;for(n=e.parentNode;!n.classList.contains(t);)n=n.parentNode;return n.classList.contains(t)?n:void 0},s}(),a=new s}).call(this),function(){}.call(this);
|
@@ -0,0 +1,75 @@
|
|
1
|
+
//
|
2
|
+
// header.scss
|
3
|
+
// Styles for admin header.
|
4
|
+
// --------------------------------------------------
|
5
|
+
|
6
|
+
.header-row {
|
7
|
+
display: block;
|
8
|
+
box-sizing: border-box;
|
9
|
+
position: fixed;
|
10
|
+
top: 0;
|
11
|
+
z-index: 198;
|
12
|
+
left: 240px;
|
13
|
+
right: 0;
|
14
|
+
height: 56px;
|
15
|
+
max-width: 100vw;
|
16
|
+
box-shadow: 0 1px 0 rgba(0,0,0,0.07);
|
17
|
+
background: #ffffff;
|
18
|
+
}
|
19
|
+
|
20
|
+
.header {
|
21
|
+
position: relative;
|
22
|
+
height: 56px;
|
23
|
+
padding: 0 20px;
|
24
|
+
display: -webkit-box;
|
25
|
+
display: -webkit-flex;
|
26
|
+
display: -ms-flexbox;
|
27
|
+
display: flex;
|
28
|
+
-webkit-box-orient: horizontal;
|
29
|
+
-webkit-box-direction: normal;
|
30
|
+
-webkit-flex-direction: row;
|
31
|
+
-ms-flex-direction: row;
|
32
|
+
flex-direction: row;
|
33
|
+
-webkit-box-align: center;
|
34
|
+
-webkit-align-items: center;
|
35
|
+
-ms-flex-align: center;
|
36
|
+
align-items: center;
|
37
|
+
}
|
38
|
+
|
39
|
+
.header__main {
|
40
|
+
color: rgba(0,0,0,0.9);
|
41
|
+
font-size: 1.42857rem;
|
42
|
+
line-height: 1.71429rem;
|
43
|
+
font-weight: 400;
|
44
|
+
z-index: 2;
|
45
|
+
overflow: hidden;
|
46
|
+
-webkit-box-flex: 1;
|
47
|
+
-webkit-flex: 1 0 0%;
|
48
|
+
-ms-flex: 1 0 0%;
|
49
|
+
flex: 1 0 0%;
|
50
|
+
-webkit-box-ordinal-group: 2;
|
51
|
+
-webkit-order: 1;
|
52
|
+
-ms-flex-order: 1;
|
53
|
+
order: 1;
|
54
|
+
display: -webkit-box;
|
55
|
+
display: -webkit-flex;
|
56
|
+
display: -ms-flexbox;
|
57
|
+
display: flex;
|
58
|
+
-webkit-box-align: center;
|
59
|
+
-webkit-align-items: center;
|
60
|
+
-ms-flex-align: center;
|
61
|
+
align-items: center;
|
62
|
+
margin: 0;
|
63
|
+
padding: 10px 0;
|
64
|
+
text-align: left;
|
65
|
+
white-space: nowrap;
|
66
|
+
text-overflow: ellipsis;
|
67
|
+
}
|
68
|
+
|
69
|
+
.breadcrumb {
|
70
|
+
color: #798c9c;
|
71
|
+
}
|
72
|
+
|
73
|
+
.breadcrumb a, .breadcrumb a:hover {
|
74
|
+
color: #798c9c;
|
75
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
//
|
2
|
+
// layout.scss
|
3
|
+
// Styles for admin layout.
|
4
|
+
// --------------------------------------------------
|
5
|
+
|
6
|
+
html, body {
|
7
|
+
height: 100%;
|
8
|
+
margin: 0;
|
9
|
+
padding: 0;
|
10
|
+
border: 0;
|
11
|
+
background: #ebeef0;
|
12
|
+
}
|
13
|
+
|
14
|
+
#wrapper {
|
15
|
+
min-height: 100%;
|
16
|
+
background: #ebeef0;
|
17
|
+
}
|
18
|
+
|
19
|
+
#content {
|
20
|
+
padding: 56px 0 0 240px;
|
21
|
+
width: 100%;
|
22
|
+
box-sizing: border-box;
|
23
|
+
outline: 0;
|
24
|
+
display: block;
|
25
|
+
max-width: 3000px;
|
26
|
+
margin: 0 auto;
|
27
|
+
position: relative;
|
28
|
+
-webkit-transition: -webkit-transform 200ms ease;
|
29
|
+
transition: -webkit-transform 200ms ease;
|
30
|
+
transition: transform 200ms ease;
|
31
|
+
transition: transform 200ms ease, -webkit-transform 200ms ease;
|
32
|
+
}
|
@@ -0,0 +1,184 @@
|
|
1
|
+
//
|
2
|
+
// nav.scss
|
3
|
+
// Styles for admin navigation.
|
4
|
+
// --------------------------------------------------
|
5
|
+
|
6
|
+
.next-nav {
|
7
|
+
z-index: 221;
|
8
|
+
width: 240px;
|
9
|
+
position: fixed;
|
10
|
+
top: 0;
|
11
|
+
left: 0;
|
12
|
+
bottom: 0;
|
13
|
+
-webkit-transition: -webkit-transform 200ms ease;
|
14
|
+
transition: -webkit-transform 200ms ease;
|
15
|
+
transition: transform 200ms ease;
|
16
|
+
transition: transform 200ms ease, -webkit-transform 200ms ease;
|
17
|
+
overflow: hidden;
|
18
|
+
}
|
19
|
+
|
20
|
+
.next-nav__panel {
|
21
|
+
position: absolute;
|
22
|
+
top: 0;
|
23
|
+
left: 0;
|
24
|
+
bottom: 0;
|
25
|
+
overflow-x: hidden;
|
26
|
+
overflow-y: auto;
|
27
|
+
-webkit-overflow-scrolling: touch;
|
28
|
+
}
|
29
|
+
|
30
|
+
.next-nav__panel--primary {
|
31
|
+
z-index: 1;
|
32
|
+
width: 240px;
|
33
|
+
background-color: #31373d;
|
34
|
+
-webkit-transition: background-color 200ms ease;
|
35
|
+
transition: background-color 200ms ease;
|
36
|
+
}
|
37
|
+
|
38
|
+
.next-nav--is-expanded .next-nav__panel--primary {
|
39
|
+
background-color: #212529;
|
40
|
+
}
|
41
|
+
|
42
|
+
.next-nav__logo {
|
43
|
+
height: 56px;
|
44
|
+
display: -webkit-box;
|
45
|
+
display: -webkit-flex;
|
46
|
+
display: -ms-flexbox;
|
47
|
+
display: flex;
|
48
|
+
-webkit-box-align: center;
|
49
|
+
-webkit-align-items: center;
|
50
|
+
-ms-flex-align: center;
|
51
|
+
align-items: center;
|
52
|
+
-webkit-box-pack: justify;
|
53
|
+
-webkit-justify-content: space-between;
|
54
|
+
-ms-flex-pack: justify;
|
55
|
+
justify-content: space-between;
|
56
|
+
padding-left: 20px;
|
57
|
+
background-color: #272c30;
|
58
|
+
-webkit-transition: background-color 200ms ease;
|
59
|
+
transition: background-color 200ms ease;
|
60
|
+
overflow: hidden;
|
61
|
+
}
|
62
|
+
|
63
|
+
.next-nav--is-expanded .next-nav__logo {
|
64
|
+
background-color: #212529;
|
65
|
+
}
|
66
|
+
|
67
|
+
.next-nav__logo--disco .next-nav__svg-logo {
|
68
|
+
-webkit-transition: none;
|
69
|
+
transition: none;
|
70
|
+
-webkit-transform: translate3d(-5px, 0, 0);
|
71
|
+
transform: translate3d(-5px, 0, 0);
|
72
|
+
}
|
73
|
+
|
74
|
+
.next-nav__svg-logo {
|
75
|
+
width: 102px;
|
76
|
+
height: auto;
|
77
|
+
-webkit-transition: -webkit-transform 200ms ease;
|
78
|
+
transition: -webkit-transform 200ms ease;
|
79
|
+
transition: transform 200ms ease;
|
80
|
+
transition: transform 200ms ease, -webkit-transform 200ms ease;
|
81
|
+
}
|
82
|
+
|
83
|
+
.next-nav__list {
|
84
|
+
margin: 0;
|
85
|
+
padding: 0;
|
86
|
+
list-style: none;
|
87
|
+
}
|
88
|
+
|
89
|
+
.next-nav__list--primary {
|
90
|
+
background-color: #31373d;
|
91
|
+
display: -webkit-box;
|
92
|
+
display: -webkit-flex;
|
93
|
+
display: -ms-flexbox;
|
94
|
+
display: flex;
|
95
|
+
-webkit-box-orient: vertical;
|
96
|
+
-webkit-box-direction: normal;
|
97
|
+
-webkit-flex-direction: column;
|
98
|
+
-ms-flex-direction: column;
|
99
|
+
flex-direction: column;
|
100
|
+
position: absolute;
|
101
|
+
top: 56px;
|
102
|
+
bottom: 0;
|
103
|
+
left: 0;
|
104
|
+
right: 0;
|
105
|
+
}
|
106
|
+
|
107
|
+
.next-nav__item {
|
108
|
+
display: block;
|
109
|
+
min-height: 40px;
|
110
|
+
}
|
111
|
+
|
112
|
+
.next-nav__link {
|
113
|
+
color: rgba(0,0,0,0.9);
|
114
|
+
font-size: 1.07143rem;
|
115
|
+
line-height: 1.42857rem;
|
116
|
+
font-weight: 400;
|
117
|
+
text-transform: initial;
|
118
|
+
letter-spacing: initial;
|
119
|
+
-webkit-font-smoothing: antialiased;
|
120
|
+
-moz-osx-font-smoothing: grayscale;
|
121
|
+
font-weight: 500;
|
122
|
+
color: #c3cfd8;
|
123
|
+
padding: 0 10px 0 20px;
|
124
|
+
height: 40px;
|
125
|
+
display: -webkit-box;
|
126
|
+
display: -webkit-flex;
|
127
|
+
display: -ms-flexbox;
|
128
|
+
display: flex;
|
129
|
+
-webkit-box-align: center;
|
130
|
+
-webkit-align-items: center;
|
131
|
+
-ms-flex-align: center;
|
132
|
+
align-items: center;
|
133
|
+
background-color: transparent;
|
134
|
+
border: none;
|
135
|
+
cursor: pointer;
|
136
|
+
line-height: normal;
|
137
|
+
|
138
|
+
@media screen and (min-width: 640px) {
|
139
|
+
font-size: 1rem;
|
140
|
+
}
|
141
|
+
}
|
142
|
+
|
143
|
+
.next-nav__link:hover, .next-nav__link:focus, .next-nav__link:active, .next-nav__link.next-nav__link--is-selected {
|
144
|
+
text-decoration: none;
|
145
|
+
color: #ffffff;
|
146
|
+
}
|
147
|
+
|
148
|
+
.next-nav__link--is-selected {
|
149
|
+
background-color: #454e57;
|
150
|
+
}
|
151
|
+
|
152
|
+
.next-nav__text {
|
153
|
+
text-overflow: ellipsis;
|
154
|
+
white-space: nowrap;
|
155
|
+
overflow: hidden;
|
156
|
+
display: block;
|
157
|
+
color: #c3cfd8;
|
158
|
+
-webkit-transition: opacity 200ms ease, -webkit-transform 200ms ease;
|
159
|
+
transition: opacity 200ms ease, -webkit-transform 200ms ease;
|
160
|
+
transition: transform 200ms ease, opacity 200ms ease;
|
161
|
+
transition: transform 200ms ease, opacity 200ms ease, -webkit-transform 200ms ease;
|
162
|
+
-webkit-box-flex: 1;
|
163
|
+
-webkit-flex-grow: 1;
|
164
|
+
-ms-flex-positive: 1;
|
165
|
+
flex-grow: 1;
|
166
|
+
-webkit-flex-basis: 0%;
|
167
|
+
-ms-flex-preferred-size: 0%;
|
168
|
+
flex-basis: 0%;
|
169
|
+
margin-left: 10px;
|
170
|
+
}
|
171
|
+
|
172
|
+
.next-nav__link:hover .next-nav__text, .next-nav__link:focus .next-nav__text, .next-nav__link:active .next-nav__text, .next-nav__link.next-nav__link--is-selected .next-nav__text {
|
173
|
+
color: #ffffff;
|
174
|
+
}
|
175
|
+
|
176
|
+
.next-nav__link .next-icon {
|
177
|
+
fill: #798c9c;
|
178
|
+
-webkit-transition: opacity 200ms ease;
|
179
|
+
transition: opacity 200ms ease;
|
180
|
+
}
|
181
|
+
|
182
|
+
.next-nav__link:hover .next-icon, .next-nav__link:focus .next-icon, .next-nav__link:active .next-icon, .next-nav__link.next-nav__link--is-selected .next-icon {
|
183
|
+
fill: #ffffff;
|
184
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
//
|
2
|
+
// Styles for Disco applications.
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
// Variables
|
6
|
+
$font-family: -apple-system, "BlinkMacSystemFont", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", sans-serif;
|
7
|
+
|
8
|
+
// Mixins and utilities.
|
9
|
+
@import 'mixins/flexbox';
|
10
|
+
|
11
|
+
// UI Kit - Core and our addons.
|
12
|
+
@import 'ui-kit/ui-kit';
|
13
|
+
@import 'ui-kit/ui-type';
|
14
|
+
@import 'ui-kit/ui-icons';
|
15
|
+
@import 'ui-kit/ui-layout';
|
16
|
+
@import 'ui-kit/ui-forms';
|
17
|
+
@import 'ui-kit/ui-tabs';
|
18
|
+
|
19
|
+
// Components
|
20
|
+
@import '../../components/shopify/ui-layout/ui-layout';
|
21
|
+
@import '../../components/shopify/ui-stack/ui-stack';
|
22
|
+
@import '../../components/shopify/typography/typography';
|
23
|
+
@import '../../components/shopify/buttons/buttons';
|
24
|
+
@import '../../components/shopify/card/card';
|
@@ -0,0 +1,54 @@
|
|
1
|
+
//
|
2
|
+
// Buttons
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
// Base button
|
6
|
+
.btn {
|
7
|
+
cursor: pointer;
|
8
|
+
display: inline-block;
|
9
|
+
height: 32px;
|
10
|
+
line-height: 30px;
|
11
|
+
padding: 0 9px;
|
12
|
+
border-radius: 4px;
|
13
|
+
|
14
|
+
white-space: nowrap;
|
15
|
+
vertical-align: middle;
|
16
|
+
font-family: $font-family;
|
17
|
+
font-size: 13px;
|
18
|
+
|
19
|
+
-webkit-user-select: none;
|
20
|
+
-moz-user-select: none;
|
21
|
+
-o-user-select: none;
|
22
|
+
user-select: none;
|
23
|
+
-webkit-appearance: none;
|
24
|
+
|
25
|
+
&:hover {
|
26
|
+
text-decoration: none;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
// Default button
|
31
|
+
.btn, .btn-default {
|
32
|
+
background-color: #fcfcfc;
|
33
|
+
border: 1px solid #e3e3e3;
|
34
|
+
color: #0078bd;
|
35
|
+
|
36
|
+
&:hover, &:focus, &.focus {
|
37
|
+
background-color: #efefef;
|
38
|
+
border-color: #d6d6d6;
|
39
|
+
color: #0078bd;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
|
43
|
+
// Primary button
|
44
|
+
.btn-primary {
|
45
|
+
background-color: #0078bd;
|
46
|
+
border: 1px solid #0078bd;
|
47
|
+
color: #fff;
|
48
|
+
|
49
|
+
&:hover, &:focus, &.focus {
|
50
|
+
background-color: #3491c8;
|
51
|
+
border-color: #2a74a0;
|
52
|
+
color: #fff;
|
53
|
+
}
|
54
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
//
|
2
|
+
// Forms
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
form {
|
6
|
+
margin: 40px 0;
|
7
|
+
}
|
8
|
+
|
9
|
+
input[type="text"],
|
10
|
+
input[type="url"], {
|
11
|
+
vertical-align: top;
|
12
|
+
height: 32px;
|
13
|
+
font-family: $font-family;
|
14
|
+
font-size: 13px;
|
15
|
+
padding: 5px;
|
16
|
+
margin: 0;
|
17
|
+
border: 1px solid #ccc;
|
18
|
+
display: inline-block;
|
19
|
+
color: #222;
|
20
|
+
border-radius: 4px;
|
21
|
+
|
22
|
+
&:focus, &.focus {
|
23
|
+
border: 1px solid #0078bd;
|
24
|
+
outline: 0;
|
25
|
+
}
|
26
|
+
}
|
@@ -0,0 +1,77 @@
|
|
1
|
+
//
|
2
|
+
// Layout
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
* {
|
6
|
+
-webkit-box-sizing: border-box;
|
7
|
+
-moz-box-sizing: border-box;
|
8
|
+
box-sizing: border-box;
|
9
|
+
}
|
10
|
+
|
11
|
+
#sidebar {
|
12
|
+
position: absolute;
|
13
|
+
top: 0;
|
14
|
+
left: 0;
|
15
|
+
bottom: 0;
|
16
|
+
width: $sidebar-width;
|
17
|
+
|
18
|
+
background: #31373d;
|
19
|
+
box-shadow: -1px 0 0 #2b3136 inset;
|
20
|
+
}
|
21
|
+
|
22
|
+
#header {
|
23
|
+
position: absolute;
|
24
|
+
top: 0;
|
25
|
+
left: $sidebar-width;
|
26
|
+
right: 0;
|
27
|
+
height: $header-height;
|
28
|
+
|
29
|
+
background: #ffffff;
|
30
|
+
border-bottom: 1px solid #e6e6e6;
|
31
|
+
border-color: rgba(0,0,0, .07);
|
32
|
+
}
|
33
|
+
|
34
|
+
#header-title {
|
35
|
+
position: absolute;
|
36
|
+
bottom: 12px;
|
37
|
+
left: 20px;
|
38
|
+
|
39
|
+
max-width: 718px;
|
40
|
+
white-space: nowrap;
|
41
|
+
text-overflow: ellipsis;
|
42
|
+
overflow: hidden;
|
43
|
+
}
|
44
|
+
|
45
|
+
#header-title-icon {
|
46
|
+
margin: 5px 10px 0 0;
|
47
|
+
float: left;
|
48
|
+
}
|
49
|
+
|
50
|
+
#header-actions {
|
51
|
+
position: absolute;
|
52
|
+
bottom: 12px;
|
53
|
+
right: 20px;
|
54
|
+
|
55
|
+
.btn {
|
56
|
+
margin: 0 0 0 5px;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
#content-wrapper {
|
61
|
+
position: absolute;
|
62
|
+
top: $header-height;
|
63
|
+
left: $sidebar-width;
|
64
|
+
bottom: 0;
|
65
|
+
right: 0;
|
66
|
+
}
|
67
|
+
|
68
|
+
#content {
|
69
|
+
width: 100%;
|
70
|
+
height: 100%;
|
71
|
+
border: none;
|
72
|
+
}
|
73
|
+
|
74
|
+
#iframe {
|
75
|
+
padding: 40px 0;
|
76
|
+
text-align: center;
|
77
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
//
|
2
|
+
// Type
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
// Base
|
6
|
+
html, body {
|
7
|
+
font-family: $font-family;
|
8
|
+
font-size: 13px;
|
9
|
+
}
|
10
|
+
|
11
|
+
// Headers
|
12
|
+
h1 {
|
13
|
+
font-size: 24px;
|
14
|
+
line-height: 32px;
|
15
|
+
height: 32px;
|
16
|
+
font-family: $font-family;
|
17
|
+
font-weight: 300;
|
18
|
+
margin: 0;
|
19
|
+
padding: 0;
|
20
|
+
}
|
21
|
+
|
22
|
+
// Text utilities
|
23
|
+
.text-muted {
|
24
|
+
color: #ccc;
|
25
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
// Set variables
|
2
|
+
$font-family: -apple-system, "BlinkMacSystemFont", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", sans-serif;
|
3
|
+
$sidebar-width: 197px;
|
4
|
+
$header-height: 57px;
|
5
|
+
|
6
|
+
// Include components
|
7
|
+
@import "frame/layout";
|
8
|
+
@import "frame/type";
|
9
|
+
@import "frame/buttons";
|
10
|
+
@import "frame/forms";
|