shopify_app 12.0.0 → 17.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS +1 -0
- data/.github/ISSUE_TEMPLATE/bug-report.md +63 -0
- data/.github/ISSUE_TEMPLATE/config.yml +1 -0
- data/.github/ISSUE_TEMPLATE/feature-request.md +33 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +22 -0
- data/.github/workflows/build.yml +41 -0
- data/.github/workflows/release.yml +24 -0
- data/.github/workflows/rubocop.yml +22 -0
- data/.gitignore +0 -2
- data/.rubocop.yml +14 -6
- data/CHANGELOG.md +180 -0
- data/CONTRIBUTING.md +76 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +257 -0
- data/README.md +72 -487
- data/Rakefile +1 -0
- data/SECURITY.md +59 -0
- data/app/assets/images/storage_access.svg +1 -2
- data/app/assets/javascripts/shopify_app/itp_helper.js +6 -6
- data/app/assets/javascripts/shopify_app/storage_access.js +37 -7
- data/app/assets/javascripts/shopify_app/top_level_interaction.js +1 -1
- data/app/controllers/concerns/shopify_app/authenticated.rb +2 -1
- data/app/controllers/concerns/shopify_app/ensure_authenticated_links.rb +26 -0
- data/app/controllers/concerns/shopify_app/require_known_shop.rb +39 -0
- data/app/controllers/concerns/shopify_app/shop_access_scopes_verification.rb +32 -0
- data/app/controllers/shopify_app/authenticated_controller.rb +1 -0
- data/app/controllers/shopify_app/callback_controller.rb +113 -23
- data/app/controllers/shopify_app/extension_verification_controller.rb +2 -7
- data/app/controllers/shopify_app/sessions_controller.rb +62 -14
- data/app/controllers/shopify_app/webhooks_controller.rb +6 -5
- data/app/views/shopify_app/partials/_button_styles.html.erb +41 -36
- data/app/views/shopify_app/partials/_card_styles.html.erb +3 -3
- data/app/views/shopify_app/partials/_empty_state_styles.html.erb +28 -59
- data/app/views/shopify_app/partials/_form_styles.html.erb +56 -0
- data/app/views/shopify_app/partials/_layout_styles.html.erb +16 -1
- data/app/views/shopify_app/partials/_typography_styles.html.erb +6 -6
- data/app/views/shopify_app/sessions/enable_cookies.html.erb +3 -8
- data/app/views/shopify_app/sessions/new.html.erb +38 -110
- data/app/views/shopify_app/sessions/request_storage_access.html.erb +2 -2
- data/app/views/shopify_app/sessions/top_level_interaction.html.erb +21 -22
- data/config/locales/de.yml +11 -11
- data/config/locales/fi.yml +1 -1
- data/config/locales/nl.yml +8 -8
- data/config/locales/pt-BR.yml +1 -1
- data/config/locales/th.yml +4 -4
- data/config/locales/vi.yml +22 -0
- data/config/locales/zh-CN.yml +1 -1
- data/config/routes.rb +1 -0
- data/docs/Quickstart.md +15 -87
- data/docs/Releasing.md +18 -14
- data/docs/Troubleshooting.md +129 -4
- data/docs/Upgrading.md +126 -0
- data/docs/shopify_app/authentication.md +124 -0
- data/docs/shopify_app/engine.md +82 -0
- data/docs/shopify_app/generators.md +127 -0
- data/docs/shopify_app/handling-access-scopes-changes.md +14 -0
- data/docs/shopify_app/script-tags.md +28 -0
- data/docs/shopify_app/session-repository.md +88 -0
- data/docs/shopify_app/testing.md +38 -0
- data/docs/shopify_app/webhooks.md +72 -0
- data/karma.conf.js +1 -1
- data/lib/generators/shopify_app/add_after_authenticate_job/add_after_authenticate_job_generator.rb +5 -3
- data/lib/generators/shopify_app/add_after_authenticate_job/templates/after_authenticate_job.rb +1 -0
- data/lib/generators/shopify_app/add_marketing_activity_extension/add_marketing_activity_extension_generator.rb +2 -1
- data/lib/generators/shopify_app/add_marketing_activity_extension/templates/marketing_activities_controller.rb +4 -8
- data/lib/generators/shopify_app/add_webhook/add_webhook_generator.rb +5 -4
- data/lib/generators/shopify_app/add_webhook/templates/{webhook_job.rb → webhook_job.rb.tt} +5 -0
- data/lib/generators/shopify_app/app_proxy_controller/app_proxy_controller_generator.rb +4 -3
- data/lib/generators/shopify_app/app_proxy_controller/templates/app_proxy_controller.rb +3 -3
- data/lib/generators/shopify_app/app_proxy_controller/templates/app_proxy_route.rb +10 -9
- data/lib/generators/shopify_app/authenticated_controller/authenticated_controller_generator.rb +1 -1
- data/lib/generators/shopify_app/controllers/controllers_generator.rb +2 -1
- data/lib/generators/shopify_app/home_controller/home_controller_generator.rb +31 -3
- data/lib/generators/shopify_app/home_controller/templates/home_controller.rb +2 -0
- data/lib/generators/shopify_app/home_controller/templates/index.html.erb +66 -16
- data/lib/generators/shopify_app/home_controller/templates/unauthenticated_home_controller.rb +11 -0
- data/lib/generators/shopify_app/install/install_generator.rb +46 -11
- data/lib/generators/shopify_app/install/templates/embedded_app.html.erb +1 -1
- data/lib/generators/shopify_app/install/templates/flash_messages.js +0 -2
- data/lib/generators/shopify_app/install/templates/omniauth.rb +3 -1
- data/lib/generators/shopify_app/install/templates/shopify_app.rb.tt +25 -0
- data/lib/generators/shopify_app/install/templates/shopify_provider.rb.tt +8 -0
- data/lib/generators/shopify_app/install/templates/user_agent.rb +2 -1
- data/lib/generators/shopify_app/products_controller/products_controller_generator.rb +19 -0
- data/lib/generators/shopify_app/products_controller/templates/products_controller.rb +8 -0
- data/lib/generators/shopify_app/routes/routes_generator.rb +1 -0
- data/lib/generators/shopify_app/routes/templates/routes.rb +10 -9
- data/lib/generators/shopify_app/shop_model/shop_model_generator.rb +39 -7
- data/lib/generators/shopify_app/shop_model/templates/db/migrate/add_shop_access_scopes_column.erb +5 -0
- data/lib/generators/shopify_app/shop_model/templates/shop.rb +2 -1
- data/lib/generators/shopify_app/shopify_app_generator.rb +4 -3
- data/lib/generators/shopify_app/user_model/templates/db/migrate/add_user_access_scopes_column.erb +5 -0
- data/lib/generators/shopify_app/user_model/templates/user.rb +2 -1
- data/lib/generators/shopify_app/user_model/user_model_generator.rb +39 -7
- data/lib/generators/shopify_app/views/views_generator.rb +2 -1
- data/lib/shopify_app/access_scopes/noop_strategy.rb +13 -0
- data/lib/shopify_app/access_scopes/shop_strategy.rb +24 -0
- data/lib/shopify_app/access_scopes/user_strategy.rb +41 -0
- data/lib/shopify_app/configuration.rb +46 -11
- data/lib/shopify_app/controller_concerns/app_proxy_verification.rb +3 -3
- data/lib/shopify_app/controller_concerns/csrf_protection.rb +15 -0
- data/lib/shopify_app/controller_concerns/embedded_app.rb +3 -2
- data/lib/shopify_app/controller_concerns/localization.rb +1 -0
- data/lib/shopify_app/controller_concerns/login_protection.rb +105 -30
- data/lib/shopify_app/controller_concerns/payload_verification.rb +24 -0
- data/lib/shopify_app/controller_concerns/webhook_verification.rb +3 -18
- data/lib/shopify_app/engine.rb +27 -1
- data/lib/shopify_app/jobs/scripttags_manager_job.rb +1 -1
- data/lib/shopify_app/jobs/webhooks_manager_job.rb +1 -1
- data/lib/shopify_app/managers/scripttags_manager.rb +4 -3
- data/lib/shopify_app/managers/webhooks_manager.rb +4 -3
- data/lib/shopify_app/middleware/jwt_middleware.rb +42 -0
- data/lib/shopify_app/middleware/same_site_cookie_middleware.rb +19 -45
- data/lib/shopify_app/omniauth/omniauth_configuration.rb +64 -0
- data/lib/shopify_app/session/in_memory_session_store.rb +7 -3
- data/lib/shopify_app/session/in_memory_shop_session_store.rb +16 -0
- data/lib/shopify_app/session/in_memory_user_session_store.rb +16 -0
- data/lib/shopify_app/session/jwt.rb +63 -0
- data/lib/shopify_app/session/null_user_session_store.rb +22 -0
- data/lib/shopify_app/session/session_repository.rb +36 -14
- data/lib/shopify_app/session/session_storage.rb +1 -10
- data/lib/shopify_app/session/shop_session_storage.rb +42 -0
- data/lib/shopify_app/session/shop_session_storage_with_scopes.rb +58 -0
- data/lib/shopify_app/session/user_session_storage.rb +42 -0
- data/lib/shopify_app/session/user_session_storage_with_scopes.rb +58 -0
- data/lib/shopify_app/test_helpers/all.rb +2 -0
- data/lib/shopify_app/test_helpers/webhook_verification_helper.rb +17 -0
- data/lib/shopify_app/utils.rb +18 -5
- data/lib/shopify_app/version.rb +2 -1
- data/lib/shopify_app.rb +24 -5
- data/package.json +8 -9
- data/shopify_app.gemspec +15 -10
- data/translation.yml +1 -1
- data/yarn.lock +2120 -2168
- metadata +94 -20
- data/.github/ISSUE_TEMPLATE.md +0 -14
- data/.travis.yml +0 -27
- data/docs/install-on-dev-shop.png +0 -0
- data/docs/test-your-app.png +0 -0
- data/lib/generators/shopify_app/install/templates/shopify_app.rb +0 -15
- data/lib/generators/shopify_app/install/templates/shopify_provider.rb +0 -20
- data/lib/shopify_app/session/storage_strategies/shop_storage_strategy.rb +0 -23
- data/lib/shopify_app/session/storage_strategies/user_storage_strategy.rb +0 -24
- data/package-lock.json +0 -7224
@@ -0,0 +1,56 @@
|
|
1
|
+
<style>
|
2
|
+
.Polaris-Label {
|
3
|
+
margin-bottom:.4rem;
|
4
|
+
}
|
5
|
+
|
6
|
+
.Polaris-Label__Text {
|
7
|
+
-webkit-tap-highlight-color:transparent;
|
8
|
+
}
|
9
|
+
|
10
|
+
.Polaris-TextField {
|
11
|
+
position:relative;
|
12
|
+
margin-bottom:1.6rem;
|
13
|
+
}
|
14
|
+
|
15
|
+
.Polaris-TextField--InlineError {
|
16
|
+
margin-bottom:.4rem;
|
17
|
+
}
|
18
|
+
|
19
|
+
.Polaris-TextField__Input {
|
20
|
+
width:100%;
|
21
|
+
padding:.5rem 1.2rem;
|
22
|
+
border:1px solid #c9cccf;
|
23
|
+
border-top-color:#aeb4b9;
|
24
|
+
border-radius:4px;
|
25
|
+
box-shadow:none;
|
26
|
+
line-height:2.4rem;
|
27
|
+
}
|
28
|
+
|
29
|
+
.Polaris-TextField__Input:focus {
|
30
|
+
outline:none;
|
31
|
+
}
|
32
|
+
|
33
|
+
.Polaris-TextField__Backdrop:after {
|
34
|
+
content:'';
|
35
|
+
position:absolute;
|
36
|
+
z-index:1;
|
37
|
+
top:-.2rem;
|
38
|
+
right:-.2rem;
|
39
|
+
bottom:-.2rem;
|
40
|
+
left:-.2rem;
|
41
|
+
display:block;
|
42
|
+
pointer-events:none;
|
43
|
+
box-shadow:0 0 0 -.2rem #448fff;
|
44
|
+
transition:box-shadow .1s cubic-bezier(0.64, 0, 0.35, 1);
|
45
|
+
border-radius:5px;
|
46
|
+
}
|
47
|
+
|
48
|
+
.Polaris-TextField__Input:focus~.Polaris-TextField__Backdrop:after {
|
49
|
+
box-shadow:0 0 0 .2rem #448fff;
|
50
|
+
}
|
51
|
+
|
52
|
+
.Polaris-InlineError {
|
53
|
+
color:#d72c0d;
|
54
|
+
margin-bottom:1.6rem;
|
55
|
+
}
|
56
|
+
</style>
|
@@ -35,7 +35,7 @@
|
|
35
35
|
min-height:100%;
|
36
36
|
margin:0;
|
37
37
|
padding:0;
|
38
|
-
background-color:#
|
38
|
+
background-color:#f6f6f7;
|
39
39
|
}
|
40
40
|
|
41
41
|
*,
|
@@ -61,6 +61,10 @@
|
|
61
61
|
max-width:99.8rem;
|
62
62
|
}
|
63
63
|
|
64
|
+
.Polaris-Page--InstallApp {
|
65
|
+
max-width: 70rem;
|
66
|
+
}
|
67
|
+
|
64
68
|
@media (min-width: 30.625em) {
|
65
69
|
.Polaris-Page {
|
66
70
|
padding:0 2rem;
|
@@ -73,6 +77,7 @@
|
|
73
77
|
}
|
74
78
|
|
75
79
|
.Polaris-Page__Content {
|
80
|
+
width: 100%;
|
76
81
|
margin:2rem 0;
|
77
82
|
}
|
78
83
|
|
@@ -158,6 +163,16 @@
|
|
158
163
|
justify-content:flex-end;
|
159
164
|
}
|
160
165
|
|
166
|
+
.Polaris-Stack--distributionTrailingCustomSpacing {
|
167
|
+
margin-right:2rem;
|
168
|
+
}
|
169
|
+
|
170
|
+
@media (min-width: 30.625em) {
|
171
|
+
.Polaris-Stack--distributionTrailingCustomSpacing {
|
172
|
+
margin-right:0;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
161
176
|
.Polaris-Stack--vertical {
|
162
177
|
-webkit-box-orient:vertical;
|
163
178
|
-webkit-box-direction:normal;
|
@@ -16,16 +16,16 @@
|
|
16
16
|
margin:0;
|
17
17
|
}
|
18
18
|
|
19
|
-
.Polaris-DisplayText--
|
20
|
-
font-size:
|
19
|
+
.Polaris-DisplayText--sizeSmall {
|
20
|
+
font-size:1.6rem;
|
21
21
|
font-weight:400;
|
22
|
-
line-height:2.
|
22
|
+
line-height:2.4rem;
|
23
23
|
}
|
24
24
|
|
25
25
|
@media (min-width: 40em) {
|
26
|
-
.Polaris-DisplayText--
|
27
|
-
font-size:
|
28
|
-
line-height:
|
26
|
+
.Polaris-DisplayText--sizeSmall {
|
27
|
+
font-size:2rem;
|
28
|
+
line-height:2.8rem;
|
29
29
|
}
|
30
30
|
}
|
31
31
|
|
@@ -14,15 +14,10 @@
|
|
14
14
|
display: none;
|
15
15
|
}
|
16
16
|
</style>
|
17
|
-
<script>
|
18
|
-
window.apiKey = "<%= ShopifyApp.configuration.api_key %>";
|
19
|
-
window.shopOrigin = "https://<%= @shop %>";
|
20
|
-
window.returnTo = "<%= params[:return_to] %>"
|
21
|
-
</script>
|
22
17
|
|
23
18
|
<%= javascript_include_tag('shopify_app/enable_cookies', crossorigin: 'anonymous', integrity: true) %>
|
24
19
|
</head>
|
25
|
-
<body>
|
20
|
+
<body data-api-key="<%= ShopifyApp.configuration.api_key %>" data-shop-origin="https://<%= @shop %>" data-redirect-url="<%= @url %>">
|
26
21
|
<%=
|
27
22
|
content_tag(
|
28
23
|
:div, nil,
|
@@ -32,7 +27,7 @@
|
|
32
27
|
myshopifyUrl: "https://#{current_shopify_domain}",
|
33
28
|
hasStorageAccessUrl: "#{has_storage_access_url}",
|
34
29
|
doesNotHaveStorageAccessUrl: "#{does_not_have_storage_access_url}",
|
35
|
-
|
30
|
+
appTargetUrl: "#{app_target_url}"
|
36
31
|
},
|
37
32
|
},
|
38
33
|
)
|
@@ -57,7 +52,7 @@
|
|
57
52
|
</div>
|
58
53
|
</div>
|
59
54
|
<div class="Polaris-Stack__Item">
|
60
|
-
<div class="Polaris-Stack Polaris-Stack--distributionTrailing">
|
55
|
+
<div class="Polaris-Stack Polaris-Stack--distributionTrailing Polaris-Stack--distributionTrailingCustomSpacing">
|
61
56
|
<div class="Polaris-Stack__Item">
|
62
57
|
<button type="button" class="Polaris-Button Polaris-Button--primary" id="AcceptCookies">
|
63
58
|
<span class="Polaris-Button__Content"><span><%= I18n.t('enable_cookies_action') %></span></span>
|
@@ -5,119 +5,47 @@
|
|
5
5
|
|
6
6
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
box-sizing: border-box;
|
14
|
-
}
|
15
|
-
|
16
|
-
body {
|
17
|
-
padding: 2.5em 0;
|
18
|
-
color: #212b37;
|
19
|
-
font-family: -apple-system,BlinkMacSystemFont,San Francisco,Roboto,Segoe UI,Helvetica Neue,sans-serif;
|
20
|
-
}
|
21
|
-
|
22
|
-
.container {
|
23
|
-
width: 100%;
|
24
|
-
text-align: center;
|
25
|
-
margin-left: auto;
|
26
|
-
margin-right: auto;
|
27
|
-
}
|
28
|
-
|
29
|
-
@media screen and (min-width: 510px) {
|
30
|
-
.container {
|
31
|
-
width: 510px;
|
32
|
-
}
|
33
|
-
}
|
34
|
-
|
35
|
-
.title {
|
36
|
-
font-size: 1.5em;
|
37
|
-
margin: 2em auto;
|
38
|
-
display: flex;
|
39
|
-
align-items: center;
|
40
|
-
justify-content: center;
|
41
|
-
word-break: break-all;
|
42
|
-
}
|
43
|
-
|
44
|
-
.subtitle {
|
45
|
-
font-size: 0.8em;
|
46
|
-
font-weight: 500;
|
47
|
-
color: #64737f;
|
48
|
-
line-height: 2em;
|
49
|
-
}
|
50
|
-
|
51
|
-
.error {
|
52
|
-
line-height: 1em;
|
53
|
-
padding: 0.5em;
|
54
|
-
color: red;
|
55
|
-
}
|
56
|
-
|
57
|
-
input.marketing-input {
|
58
|
-
width: 100%;
|
59
|
-
height: 52px;
|
60
|
-
padding: 0 15px;
|
61
|
-
box-shadow: 0 0 0 1px #ddd;
|
62
|
-
border: 0;
|
63
|
-
border-radius: 5px;
|
64
|
-
background-color: #fff;
|
65
|
-
font-size: 1em;
|
66
|
-
margin-bottom: 15px;
|
67
|
-
}
|
68
|
-
|
69
|
-
input.marketing-input:focus {
|
70
|
-
color: #000;
|
71
|
-
outline: 0;
|
72
|
-
box-shadow: 0 0 0 2px #5e6ebf;
|
73
|
-
}
|
74
|
-
|
75
|
-
button.marketing-button {
|
76
|
-
display: inline-block;
|
77
|
-
width: 100%;
|
78
|
-
padding: 1.0625em 1.875em;
|
79
|
-
background-color: #5e6ebf;
|
80
|
-
color: #fff;
|
81
|
-
font-weight: 700;
|
82
|
-
font-size: 1em;
|
83
|
-
text-align: center;
|
84
|
-
outline: none;
|
85
|
-
border: 0 solid transparent;
|
86
|
-
border-radius: 5px;
|
87
|
-
cursor: pointer;
|
88
|
-
}
|
89
|
-
|
90
|
-
button.marketing-button:hover {
|
91
|
-
background: linear-gradient(to bottom, #5c6ac4, #4959bd);
|
92
|
-
border-color: #3f4eae;
|
93
|
-
}
|
94
|
-
|
95
|
-
button.marketing-button:focus {
|
96
|
-
box-shadow: 0 0 0.1875em 0.1875em rgba(94,110,191,0.5);
|
97
|
-
background-color: #223274;
|
98
|
-
color: #fff;
|
99
|
-
}
|
100
|
-
</style>
|
8
|
+
<%= render 'shopify_app/partials/layout_styles' %>
|
9
|
+
<%= render 'shopify_app/partials/typography_styles' %>
|
10
|
+
<%= render 'shopify_app/partials/card_styles' %>
|
11
|
+
<%= render 'shopify_app/partials/button_styles' %>
|
12
|
+
<%= render 'shopify_app/partials/form_styles' %>
|
101
13
|
</head>
|
102
14
|
<body>
|
103
|
-
|
104
15
|
<main class="container" role="main">
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
16
|
+
<div class="Polaris-Page Polaris-Page--InstallApp">
|
17
|
+
<div class="Polaris-Page__Content">
|
18
|
+
<div class="Polaris-Layout">
|
19
|
+
<div class="Polaris-Layout__Section">
|
20
|
+
<div class="Polaris-Card">
|
21
|
+
<div class="Polaris-Card__Header">
|
22
|
+
<% application_name = ShopifyApp.configuration.application_name %>
|
23
|
+
<h1 class="Polaris-Heading">
|
24
|
+
<%= application_name.presence || 'Shopify App – Installation' %>
|
25
|
+
</h1>
|
26
|
+
</div>
|
27
|
+
<div class="Polaris-Card__Section">
|
28
|
+
<%= form_tag login_path do %>
|
29
|
+
<div class="Polaris-Label">
|
30
|
+
<label class="Polaris-Label__Text" for="shop">Enter your shop domain to log in or install this app.</label>
|
31
|
+
</div>
|
32
|
+
<div class="Polaris-TextField <%= 'Polaris-TextField--InlineError' if flash[:error]%>">
|
33
|
+
<input id="shop" name="shop" type="text" autofocus="autofocus" placeholder="example.myshopify.com" class="Polaris-TextField__Input">
|
34
|
+
<div class="Polaris-TextField__Backdrop"></div>
|
35
|
+
</div>
|
36
|
+
<% if flash[:error] %>
|
37
|
+
<div class="Polaris-InlineError"><%= flash[:error] %></div>
|
38
|
+
<% end %>
|
39
|
+
<button type="submit" class="Polaris-Button Polaris-Button--primary Polaris-Button--sizeLarge">
|
40
|
+
<span class="Polaris-Button__Content"><span>Install app</span>
|
41
|
+
</button>
|
42
|
+
<% end %>
|
43
|
+
</div>
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
</div>
|
120
49
|
</main>
|
121
|
-
|
122
50
|
</body>
|
123
51
|
</html>
|
@@ -24,7 +24,7 @@
|
|
24
24
|
myshopifyUrl: "https://#{current_shopify_domain}",
|
25
25
|
hasStorageAccessUrl: "#{has_storage_access_url}",
|
26
26
|
doesNotHaveStorageAccessUrl: "#{does_not_have_storage_access_url}",
|
27
|
-
|
27
|
+
appTargetUrl: "#{app_target_url}"
|
28
28
|
},
|
29
29
|
},
|
30
30
|
)
|
@@ -49,7 +49,7 @@
|
|
49
49
|
</div>
|
50
50
|
</div>
|
51
51
|
<div class="Polaris-Stack__Item">
|
52
|
-
<div class="Polaris-Stack Polaris-Stack--distributionTrailing">
|
52
|
+
<div class="Polaris-Stack Polaris-Stack--distributionTrailing Polaris-Stack--distributionTrailingCustomSpacing">
|
53
53
|
<div class="Polaris-Stack__Item">
|
54
54
|
<button type="button" class="Polaris-Button Polaris-Button--primary" id="TriggerAllowCookiesPrompt">
|
55
55
|
<span class="Polaris-Button__Content"><span><%= I18n.t('request_storage_access_action') %></span></span>
|
@@ -5,6 +5,7 @@
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
6
6
|
<base target="_top">
|
7
7
|
<title>Redirecting…</title>
|
8
|
+
<%= render 'shopify_app/partials/card_styles' %>
|
8
9
|
<%= render 'shopify_app/partials/layout_styles' %>
|
9
10
|
<%= render 'shopify_app/partials/typography_styles' %>
|
10
11
|
<%= render 'shopify_app/partials/button_styles' %>
|
@@ -15,15 +16,9 @@
|
|
15
16
|
}
|
16
17
|
</style>
|
17
18
|
|
18
|
-
<script>
|
19
|
-
window.apiKey = "<%= ShopifyApp.configuration.api_key %>";
|
20
|
-
window.shopOrigin = "https://<%= @shop %>";
|
21
|
-
window.redirectUrl = "<%= @url %>";
|
22
|
-
</script>
|
23
|
-
|
24
19
|
<%= javascript_include_tag('shopify_app/top_level', crossorigin: 'anonymous', integrity: true) %>
|
25
20
|
</head>
|
26
|
-
<body>
|
21
|
+
<body data-api-key="<%= ShopifyApp.configuration.api_key %>" data-shop-origin="https://<%= @shop %>" data-redirect-url="<%= @url %>">
|
27
22
|
<main id="TopLevelInteractionContent">
|
28
23
|
<div class="Polaris-Page">
|
29
24
|
<div class="Polaris-Page__Content">
|
@@ -31,26 +26,30 @@
|
|
31
26
|
<div class="Polaris-Layout__Section">
|
32
27
|
<div class="Polaris-Stack Polaris-Stack--vertical">
|
33
28
|
<div class="Polaris-Stack__Item">
|
34
|
-
<div class="Polaris-
|
35
|
-
<div class="Polaris-
|
36
|
-
<div class="Polaris-
|
37
|
-
<div class="Polaris-
|
38
|
-
<div class="Polaris-
|
39
|
-
<
|
40
|
-
|
41
|
-
|
29
|
+
<div class="Polaris-Card">
|
30
|
+
<div class="Polaris-Card__Section">
|
31
|
+
<div class="Polaris-EmptyState">
|
32
|
+
<div class="Polaris-EmptyState__Section">
|
33
|
+
<div class="Polaris-EmptyState__DetailsContainer">
|
34
|
+
<div class="Polaris-EmptyState__Details">
|
35
|
+
<div class="Polaris-TextContainer">
|
36
|
+
<h1 class="Polaris-DisplayText Polaris-DisplayText--sizeSmall"><%= I18n.t('top_level_interaction_heading', app: ShopifyApp.configuration.application_name) %></h1>
|
37
|
+
<div class="Polaris-EmptyState__Content">
|
38
|
+
<p><%= I18n.t('top_level_interaction_body', app: ShopifyApp.configuration.application_name) %></p>
|
39
|
+
</div>
|
40
|
+
</div>
|
41
|
+
<div class="Polaris-EmptyState__Actions">
|
42
|
+
<div class="Polaris-Stack Polaris-Stack--alignmentCenter">
|
43
|
+
<div class="Polaris-Stack__Item"><button type="button" id="TopLevelInteractionButton" class="Polaris-Button Polaris-Button--primary Polaris-Button--sizeLarge"><span class="Polaris-Button__Content"><span class="Polaris-Button__Icon"></span><span><%= I18n.t('top_level_interaction_action') %></span></span></button></div>
|
44
|
+
</div>
|
45
|
+
</div>
|
42
46
|
</div>
|
43
47
|
</div>
|
44
|
-
<div class="Polaris-
|
45
|
-
|
46
|
-
<div class="Polaris-Stack__Item"><button type="button" id="TopLevelInteractionButton" class="Polaris-Button Polaris-Button--primary Polaris-Button--sizeLarge"><span class="Polaris-Button__Content"><span class="Polaris-Button__Icon"></span><span><%= I18n.t('top_level_interaction_action') %></span></span></button></div>
|
47
|
-
</div>
|
48
|
+
<div class="Polaris-EmptyState__ImageContainer">
|
49
|
+
<%= image_tag 'storage_access.svg', role: "presentation", alt: "", class: "Polaris-EmptyState__Image" %>
|
48
50
|
</div>
|
49
51
|
</div>
|
50
52
|
</div>
|
51
|
-
<div class="Polaris-EmptyState__ImageContainer">
|
52
|
-
<%= image_tag 'storage_access.svg', role: "presentation", alt: "", class: "Polaris-EmptyState__Image" %>
|
53
|
-
</div>
|
54
53
|
</div>
|
55
54
|
</div>
|
56
55
|
</div>
|
data/config/locales/de.yml
CHANGED
@@ -4,19 +4,19 @@ de:
|
|
4
4
|
could_not_log_in: Shopify Store Login fehlgeschlagen
|
5
5
|
invalid_shop_url: Ungültige Shop-Domain
|
6
6
|
enable_cookies_heading: Cookies von %{app} aktivieren
|
7
|
-
enable_cookies_body:
|
8
|
-
|
9
|
-
enable_cookies_footer: Mithilfe von Cookies kann die App
|
10
|
-
|
11
|
-
Sie laufen nach 30 Tagen ab.
|
7
|
+
enable_cookies_body: Du musst Cookies in diesem Browser manuell aktivieren, um %{app}
|
8
|
+
in Shopify verwenden zu können.
|
9
|
+
enable_cookies_footer: Mithilfe von Cookies kann die App dich authentifizieren,
|
10
|
+
indem deine Einstellungen und personenbezogenen Daten vorübergehend gespeichert
|
11
|
+
werden. Sie laufen nach 30 Tagen ab.
|
12
12
|
enable_cookies_action: Cookies aktivieren
|
13
|
-
top_level_interaction_heading:
|
14
|
-
top_level_interaction_body:
|
15
|
-
auf Cookies bitten, bevor Shopify sie für
|
13
|
+
top_level_interaction_heading: Dein Browser muss %{app} authentifizieren
|
14
|
+
top_level_interaction_body: Dein Browser verlangt, dass Apps wie %{app} dich um
|
15
|
+
Zugriff auf Cookies bitten, bevor Shopify sie für dich öffnen kann.
|
16
16
|
top_level_interaction_action: Weiter
|
17
17
|
request_storage_access_heading: "%{app} braucht Zugriff auf Cookies"
|
18
|
-
request_storage_access_body: Damit kann die App
|
19
|
-
Einstellungen und personenbezogenen Daten vorübergehend gespeichert werden.
|
20
|
-
|
18
|
+
request_storage_access_body: Damit kann die App dich authentifizieren, indem deine
|
19
|
+
Einstellungen und personenbezogenen Daten vorübergehend gespeichert werden. Klicke
|
20
|
+
auf "Weiter" und erlaube Cookies, um die App zu verwenden.
|
21
21
|
request_storage_access_footer: Cookies laufen nach 30 Tagen ab.
|
22
22
|
request_storage_access_action: Weiter
|
data/config/locales/fi.yml
CHANGED
@@ -15,6 +15,6 @@ fi:
|
|
15
15
|
top_level_interaction_action: Jatka
|
16
16
|
request_storage_access_heading: "%{app} edellyttää evästeiden käyttöä"
|
17
17
|
request_storage_access_body: Näin sovellus voi todentaa sinut tallentamalla henkilötietosi
|
18
|
-
tilapäisesti.
|
18
|
+
tilapäisesti. Klikkaa Jatka ja salli evästeet sovelluksen käyttämiseksi.
|
19
19
|
request_storage_access_footer: Evästeet vanhenevat 30 päivän kuluttua.
|
20
20
|
request_storage_access_action: Jatka
|