workarea-email_signup_popup 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.editorconfig +20 -0
- data/.eslintignore +2 -0
- data/.eslintrc +20 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +37 -0
- data/.github/ISSUE_TEMPLATE/documentation-request.md +17 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.gitignore +16 -0
- data/.scss-lint.yml +192 -0
- data/CHANGELOG.md +89 -0
- data/CODE_OF_CONDUCT.md +3 -0
- data/CONTRIBUTING.md +3 -0
- data/Gemfile +6 -0
- data/LICENSE +52 -0
- data/README.md +34 -0
- data/Rakefile +52 -0
- data/app/assets/javascripts/workarea/storefront/email_signup_popup/modules/email_signup_popup.js +34 -0
- data/bin/rails +17 -0
- data/config/initializers/append_points.rb +4 -0
- data/lib/tasks/email_signup_popup_tasks.rake +4 -0
- data/lib/workarea/email_signup_popup.rb +10 -0
- data/lib/workarea/email_signup_popup/engine.rb +8 -0
- data/lib/workarea/email_signup_popup/version.rb +5 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/config/manifest.js +4 -0
- data/test/dummy/app/assets/images/.keep +0 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/concerns/.keep +0 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/jobs/application_job.rb +2 -0
- data/test/dummy/app/mailers/application_mailer.rb +4 -0
- data/test/dummy/app/models/concerns/.keep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/test/dummy/app/views/layouts/mailer.text.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 +34 -0
- data/test/dummy/bin/update +29 -0
- data/test/dummy/config.ru +5 -0
- data/test/dummy/config/application.rb +24 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/cable.yml +9 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +54 -0
- data/test/dummy/config/environments/production.rb +86 -0
- data/test/dummy/config/environments/test.rb +43 -0
- data/test/dummy/config/initializers/application_controller_renderer.rb +6 -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 +5 -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/new_framework_defaults.rb +21 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/workarea.rb +5 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/puma.rb +47 -0
- data/test/dummy/config/routes.rb +5 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config/spring.rb +6 -0
- data/test/dummy/lib/assets/.keep +0 -0
- data/test/dummy/log/.keep +0 -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/apple-touch-icon-precomposed.png +0 -0
- data/test/dummy/public/apple-touch-icon.png +0 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/javascripts/email_signup_popup_spec.js +23 -0
- data/test/javascripts/spec_helper.js +4 -0
- data/test/teaspoon_env.rb +10 -0
- data/test/test_helper.rb +9 -0
- data/workarea-email_signup_popup.gemspec +21 -0
- metadata +136 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9e527db073cea01aa501d4d6bfa23564124ea5804507dcd9bfb8aded1eeb67ae
|
4
|
+
data.tar.gz: 240171ae70f8030cb69f7a8844307633907ed57badd929eb75a9a05ae651f09b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e35463d8beeac3ab8c9df4a9ed477fd49dcea168084eff525c9168cb7de40bda310ad4d96e90e5f03e132e7fe2924ac491a3733c2b7ce13f71c142a06cc1adfd
|
7
|
+
data.tar.gz: 371ddfe88af448832e289b71e6fdb7d595c06e9d6be1c13dd85fb21d97072791d85441d0ffa13a52ef30a1e556ad93de4a8f089eb2aee8260a48718d52b7ff22
|
data/.editorconfig
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# editorconfig.org
|
2
|
+
root = true
|
3
|
+
|
4
|
+
[*]
|
5
|
+
charset = utf-8
|
6
|
+
indent_style = space
|
7
|
+
end_of_line = lf
|
8
|
+
trim_trailing_whitespace = true
|
9
|
+
insert_final_newline = true
|
10
|
+
|
11
|
+
[{*.rb,*.haml,*.decorator,*.yml,*.yaml,*.jbuilder}]
|
12
|
+
indent_size = 2
|
13
|
+
indent_style = space
|
14
|
+
|
15
|
+
[{*.js,*.jst,*.ejs,*.scss}]
|
16
|
+
indent_size = 4
|
17
|
+
|
18
|
+
[*.md]
|
19
|
+
indent_size = 4
|
20
|
+
trim_trailing_whitespace = false
|
data/.eslintignore
ADDED
data/.eslintrc
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
{
|
2
|
+
"extends": "eslint:recommended",
|
3
|
+
"globals": {
|
4
|
+
"window": true,
|
5
|
+
"document": true,
|
6
|
+
"WORKAREA": true,
|
7
|
+
"$": true,
|
8
|
+
"jQuery": true,
|
9
|
+
"_": true,
|
10
|
+
"feature": true,
|
11
|
+
"JST": true,
|
12
|
+
"Turbolinks": true,
|
13
|
+
"I18n": true,
|
14
|
+
"Chart": true,
|
15
|
+
"Dropzone": true,
|
16
|
+
"strftime": true,
|
17
|
+
"Waypoint": true,
|
18
|
+
"wysihtml": true
|
19
|
+
}
|
20
|
+
}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Create a report to help us improve Workarea
|
4
|
+
title: ''
|
5
|
+
labels: bug
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
⚠️**Before you create**⚠️
|
11
|
+
Please verify the issue you're experiencing is not part of your Workarea project customizations. The best way to do this is with a [vanilla Workarea installation](https://developer.workarea.com/articles/create-a-new-host-application.html). This will help us spend time on fixes/improvements for the whole community. Thank you!
|
12
|
+
|
13
|
+
**Describe the bug**
|
14
|
+
A clear and concise description of what the bug is.
|
15
|
+
|
16
|
+
**To Reproduce**
|
17
|
+
Steps to reproduce the behavior:
|
18
|
+
1. Go to '...'
|
19
|
+
2. Click on '....'
|
20
|
+
3. Scroll down to '....'
|
21
|
+
4. See error
|
22
|
+
|
23
|
+
**Expected behavior**
|
24
|
+
A clear and concise description of what you expected to happen.
|
25
|
+
|
26
|
+
**Workarea Setup (please complete the following information):**
|
27
|
+
- Workarea Version: [e.g. v3.4.6]
|
28
|
+
- Plugins [e.g. workarea-blog, workarea-sitemaps]
|
29
|
+
|
30
|
+
**Attachments**
|
31
|
+
If applicable, add any attachments to help explain your problem, things like:
|
32
|
+
- screenshots
|
33
|
+
- Gemfile.lock
|
34
|
+
- test cases
|
35
|
+
|
36
|
+
**Additional context**
|
37
|
+
Add any other context about the problem here.
|
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
name: Documentation request
|
3
|
+
about: Suggest documentation
|
4
|
+
title: ''
|
5
|
+
labels: documentation
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Is your documentation related to a problem? Please describe.**
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm confused by [...]
|
12
|
+
|
13
|
+
**Describe the article you'd like**
|
14
|
+
A clear and concise description of what would be in the documentation article.
|
15
|
+
|
16
|
+
**Additional context**
|
17
|
+
Add any other context or screenshots about the feature request here.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
name: Feature request
|
3
|
+
about: Suggest an idea for Workarea
|
4
|
+
title: ''
|
5
|
+
labels: enhancement
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
12
|
+
|
13
|
+
**Describe the solution you'd like**
|
14
|
+
A clear and concise description of what you want to happen.
|
15
|
+
|
16
|
+
**Describe alternatives you've considered**
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
18
|
+
|
19
|
+
**Additional context**
|
20
|
+
Add any other context or screenshots about the feature request here.
|
data/.gitignore
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
.bundle/
|
2
|
+
log/*.log
|
3
|
+
pkg/
|
4
|
+
test/dummy/db/*.sqlite3
|
5
|
+
test/dummy/db/*.sqlite3-journal
|
6
|
+
test/dummy/log/*.log
|
7
|
+
test/dummy/tmp/
|
8
|
+
test/dummy/public/system/
|
9
|
+
test/dummy/.sass-cache
|
10
|
+
Gemfile.lock
|
11
|
+
test/dummy/public/system/dragonfly
|
12
|
+
.DS_STORE
|
13
|
+
node_modules
|
14
|
+
test/reports
|
15
|
+
package.json
|
16
|
+
yarn.lock
|
data/.scss-lint.yml
ADDED
@@ -0,0 +1,192 @@
|
|
1
|
+
# Extension of the default configuration:
|
2
|
+
# https://github.com/causes/scss-lint/blob/master/config/default.yml
|
3
|
+
|
4
|
+
exclude: 'docs/**'
|
5
|
+
|
6
|
+
linters:
|
7
|
+
Comment:
|
8
|
+
enabled: false
|
9
|
+
|
10
|
+
DeclarationOrder:
|
11
|
+
enabled: true
|
12
|
+
|
13
|
+
ElsePlacement:
|
14
|
+
enabled: true
|
15
|
+
|
16
|
+
EmptyRule:
|
17
|
+
enabled: false
|
18
|
+
|
19
|
+
HexLength:
|
20
|
+
enabled: true
|
21
|
+
style: long
|
22
|
+
|
23
|
+
Indentation:
|
24
|
+
enabled: true
|
25
|
+
allow_non_nested_indentation: true
|
26
|
+
character: space
|
27
|
+
width: 4
|
28
|
+
|
29
|
+
LeadingZero:
|
30
|
+
enabled: true
|
31
|
+
style: include_zero
|
32
|
+
|
33
|
+
MergeableSelector:
|
34
|
+
enabled: true
|
35
|
+
force_nesting: false
|
36
|
+
|
37
|
+
PropertySortOrder:
|
38
|
+
enabled: true
|
39
|
+
ignore_unspecified: false
|
40
|
+
separate_groups: false
|
41
|
+
order:
|
42
|
+
- display
|
43
|
+
-
|
44
|
+
- position
|
45
|
+
- top
|
46
|
+
- right
|
47
|
+
- bottom
|
48
|
+
- left
|
49
|
+
- z-index
|
50
|
+
-
|
51
|
+
- margin
|
52
|
+
- margin-top
|
53
|
+
- margin-right
|
54
|
+
- margin-bottom
|
55
|
+
- margin-left
|
56
|
+
-
|
57
|
+
- margin-collapse
|
58
|
+
- margin-top-collapse
|
59
|
+
- margin-right-collapse
|
60
|
+
- margin-bottom-collapse
|
61
|
+
- margin-left-collapse
|
62
|
+
-
|
63
|
+
- padding
|
64
|
+
- padding-top
|
65
|
+
- padding-right
|
66
|
+
- padding-bottom
|
67
|
+
- padding-left
|
68
|
+
-
|
69
|
+
- width
|
70
|
+
- height
|
71
|
+
- max-width
|
72
|
+
- max-height
|
73
|
+
- min-width
|
74
|
+
- min-height
|
75
|
+
-
|
76
|
+
- float
|
77
|
+
- clear
|
78
|
+
-
|
79
|
+
- color
|
80
|
+
-
|
81
|
+
- font
|
82
|
+
- font-size
|
83
|
+
- font-style
|
84
|
+
- font-family
|
85
|
+
- font-weight
|
86
|
+
- font-variant
|
87
|
+
- font-smoothing
|
88
|
+
-
|
89
|
+
- line-height
|
90
|
+
- letter-spacing
|
91
|
+
- word-spacing
|
92
|
+
-
|
93
|
+
- text-align
|
94
|
+
- text-indent
|
95
|
+
- text-shadow
|
96
|
+
- text-overflow
|
97
|
+
- text-rendering
|
98
|
+
- text-transform
|
99
|
+
- text-decoration
|
100
|
+
- text-size-adjust
|
101
|
+
-
|
102
|
+
- word-break
|
103
|
+
- word-wrap
|
104
|
+
-
|
105
|
+
- white-space
|
106
|
+
-
|
107
|
+
- background
|
108
|
+
- background-size
|
109
|
+
- background-color
|
110
|
+
- background-image
|
111
|
+
- background-repeat
|
112
|
+
- background-position
|
113
|
+
- background-attachment
|
114
|
+
-
|
115
|
+
- border
|
116
|
+
- border-top
|
117
|
+
- border-right
|
118
|
+
- border-bottom
|
119
|
+
- border-left
|
120
|
+
-
|
121
|
+
- border-image
|
122
|
+
- border-spacing
|
123
|
+
- border-collapse
|
124
|
+
-
|
125
|
+
- border-color
|
126
|
+
- border-top-color
|
127
|
+
- border-right-color
|
128
|
+
- border-bottom-color
|
129
|
+
- border-left-color
|
130
|
+
-
|
131
|
+
- border-style
|
132
|
+
- border-top-style
|
133
|
+
- border-right-style
|
134
|
+
- border-bottom-style
|
135
|
+
- border-left-style
|
136
|
+
-
|
137
|
+
- border-width
|
138
|
+
- border-top-width
|
139
|
+
- border-right-width
|
140
|
+
- border-bottom-width
|
141
|
+
- border-left-width
|
142
|
+
-
|
143
|
+
- border-radius
|
144
|
+
- border-top-right-radius
|
145
|
+
- border-bottom-right-radius
|
146
|
+
- border-bottom-left-radius
|
147
|
+
- border-top-left-radius
|
148
|
+
- border-radius-topright
|
149
|
+
- border-radius-bottomright
|
150
|
+
- border-radius-bottomleft
|
151
|
+
- border-radius-topleft
|
152
|
+
-
|
153
|
+
- box-shadow
|
154
|
+
|
155
|
+
SelectorFormat:
|
156
|
+
enabled: true
|
157
|
+
convention: hyphenated_BEM
|
158
|
+
|
159
|
+
SingleLinePerSelector:
|
160
|
+
enabled: false
|
161
|
+
|
162
|
+
SpaceAfterPropertyColon:
|
163
|
+
enabled: true
|
164
|
+
style: at_least_one_space
|
165
|
+
|
166
|
+
SpaceBeforeBrace:
|
167
|
+
enabled: true
|
168
|
+
style: space
|
169
|
+
allow_single_line_padding: true
|
170
|
+
|
171
|
+
VariableForProperty:
|
172
|
+
enabled: true
|
173
|
+
properties:
|
174
|
+
- color
|
175
|
+
- font-family
|
176
|
+
- background-color
|
177
|
+
|
178
|
+
PseudoElement:
|
179
|
+
enabled: false
|
180
|
+
|
181
|
+
# These default settings may be problematic to implementors. They are not
|
182
|
+
# ommitted so that they may be adjusted as needed during an implementation.
|
183
|
+
#
|
184
|
+
# For documentation:
|
185
|
+
# https://github.com/causes/scss-lint/blob/master/lib/scss_lint/linter/README.md
|
186
|
+
|
187
|
+
DuplicateProperty:
|
188
|
+
enabled: true
|
189
|
+
|
190
|
+
PropertySpelling:
|
191
|
+
enabled: true
|
192
|
+
extra_properties: [] # Add experimental CSS to this array, if needed
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
Workarea Email Signup Popup 2.0.1 (2019-08-21)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Open Source!
|
5
|
+
|
6
|
+
|
7
|
+
|
8
|
+
Workarea Email Signup Popup 2.0.0 (2017-05-26)
|
9
|
+
--------------------------------------------------------------------------------
|
10
|
+
|
11
|
+
* Replace system test with teaspoon test
|
12
|
+
|
13
|
+
EMAILSIGN-3
|
14
|
+
Matt Duffy
|
15
|
+
|
16
|
+
* Upgrade plugin for v3 compatability
|
17
|
+
|
18
|
+
EMAILSIGN-3
|
19
|
+
Beresford, Jake
|
20
|
+
|
21
|
+
* Use less fragile assertion within feature test
|
22
|
+
|
23
|
+
When the store front feature test is copied into a host app, asserting
|
24
|
+
on the dialog content is too fragile because an app is likely to
|
25
|
+
change it. Also, the default text is too likely to appear elsewhere
|
26
|
+
on the page and create a false positive.
|
27
|
+
|
28
|
+
Assert on a CSS selector instead. Confirm the email signup block is
|
29
|
+
displayed and within a dialog.
|
30
|
+
|
31
|
+
EMAILSIGN-1
|
32
|
+
Chris Cressman
|
33
|
+
|
34
|
+
* Guard against a host app disabling the dialog in test
|
35
|
+
|
36
|
+
A host app will likely disable the email signup dialog in test by
|
37
|
+
setting the relevant cookie before each test. This will cause the
|
38
|
+
store front feature test to fail because the dialog won't be
|
39
|
+
present on the page.
|
40
|
+
|
41
|
+
Remove the cookie before running the store front feature test to
|
42
|
+
ensure it is not present.
|
43
|
+
|
44
|
+
Also add documentation to encourage host apps to disable the dialog
|
45
|
+
in test.
|
46
|
+
|
47
|
+
EMAILSIGN-1
|
48
|
+
Chris Cressman
|
49
|
+
|
50
|
+
|
51
|
+
WebLinc Email Signup Popup 1.0.2 (2016-04-04)
|
52
|
+
--------------------------------------------------------------------------------
|
53
|
+
|
54
|
+
|
55
|
+
WebLinc Email Signup Popup 1.0.1 (February 4, 2016)
|
56
|
+
--------------------------------------------------------------------------------
|
57
|
+
|
58
|
+
* Use less fragile assertion within feature test
|
59
|
+
|
60
|
+
When the store front feature test is copied into a host app, asserting
|
61
|
+
on the dialog content is too fragile because an app is likely to
|
62
|
+
change it. Also, the default text is too likely to appear elsewhere
|
63
|
+
on the page and create a false positive.
|
64
|
+
|
65
|
+
Assert on a CSS selector instead. Confirm the email signup block is
|
66
|
+
displayed and within a dialog.
|
67
|
+
|
68
|
+
EMAILSIGN-1
|
69
|
+
|
70
|
+
* Guard against a host app disabling the dialog in test
|
71
|
+
|
72
|
+
A host app will likely disable the email signup dialog in test by
|
73
|
+
setting the relevant cookie before each test. This will cause the
|
74
|
+
store front feature test to fail because the dialog won't be
|
75
|
+
present on the page.
|
76
|
+
|
77
|
+
Remove the cookie before running the store front feature test to
|
78
|
+
ensure it is not present.
|
79
|
+
|
80
|
+
Also add documentation to encourage host apps to disable the dialog
|
81
|
+
in test.
|
82
|
+
|
83
|
+
EMAILSIGN-1
|
84
|
+
|
85
|
+
|
86
|
+
WebLinc Email Signup Popup 1.0.0 (January 13, 2016)
|
87
|
+
--------------------------------------------------------------------------------
|
88
|
+
|
89
|
+
First release
|
data/CODE_OF_CONDUCT.md
ADDED
data/CONTRIBUTING.md
ADDED