abraham 1.5.3 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +37 -14
- data/app/assets/stylesheets/abraham/_common.scss +194 -0
- data/app/assets/stylesheets/abraham/theme-dark.scss +40 -0
- data/app/assets/stylesheets/abraham/theme-default.scss +40 -0
- data/app/helpers/abraham_helper.rb +10 -1
- data/app/views/application/_abraham.html.erb +19 -10
- data/lib/abraham/version.rb +1 -1
- data/lib/generators/abraham/templates/abraham.yml +4 -1
- data/lib/generators/abraham/templates/initializer.rb +1 -1
- metadata +21 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 934942f3a067c17e06029f1095f7abf5b570d5e7b63a8d16601769df4d3300e1
|
|
4
|
+
data.tar.gz: 2389400109634350208fff528edf7c70577982677f34e8af9ef84dcb49aa9d5a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec5c02fcd3b19038b65b9a3af6ce3d84f585c47e465a914021d05a18c340665fb1891fb590fb76b332a05eb5d7e6736e89aba9e854cf94ad0acb921c4cc623ce
|
|
7
|
+
data.tar.gz: c00a73dfe7269459459fadaa4db889de665ec0601273fa431d94372cf38383e4f0a5c1b5959fbf0a7f5ea681fb149948dadc2ec4670e09941b54356979500274
|
data/README.md
CHANGED
|
@@ -6,11 +6,12 @@ _Guide your users in the one true path._
|
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
9
|
-
Abraham injects dynamically-generated [Shepherd
|
|
9
|
+
Abraham injects dynamically-generated [Shepherd](https://shepherdjs.dev/) JavaScript code into your Rails application whenever a user should see a guided tour. Skip a tour, and we'll try again next time; complete a tour, and it won't show up again.
|
|
10
10
|
|
|
11
11
|
* Define tour content with simple YAML files, in any/many languages.
|
|
12
12
|
* Organize tours by controller and action.
|
|
13
13
|
* Plays nicely with Turbolinks.
|
|
14
|
+
* Ships with two basic CSS themes (default & dark) -- or write your own
|
|
14
15
|
|
|
15
16
|
## Requirements
|
|
16
17
|
|
|
@@ -36,7 +37,7 @@ $ rails db:migrate
|
|
|
36
37
|
Install the JavaScript dependencies:
|
|
37
38
|
|
|
38
39
|
```
|
|
39
|
-
$ yarn add jquery js-cookie shepherd.js
|
|
40
|
+
$ yarn add jquery@^3.4.0 js-cookie@^2.2.0 shepherd.js@^6.0.0-beta
|
|
40
41
|
```
|
|
41
42
|
|
|
42
43
|
Require `abraham` in `app/assets/javascripts/application.js`
|
|
@@ -45,29 +46,26 @@ Require `abraham` in `app/assets/javascripts/application.js`
|
|
|
45
46
|
//= require abraham
|
|
46
47
|
```
|
|
47
48
|
|
|
48
|
-
Require a
|
|
49
|
+
Require a CSS theme in `app/assets/stylesheets/application.scss`
|
|
49
50
|
|
|
50
51
|
```
|
|
51
|
-
|
|
52
|
+
*= require abraham/theme-default
|
|
52
53
|
```
|
|
53
54
|
|
|
54
|
-
|
|
55
|
+
Abraham provides the following themes:
|
|
55
56
|
|
|
56
|
-
- `
|
|
57
|
-
- `
|
|
58
|
-
- `shepherd-theme-arrows-plain-buttons`
|
|
59
|
-
- `shepherd-theme-dark`
|
|
60
|
-
- `shepherd-theme-default`
|
|
61
|
-
- `shepherd-theme-square`
|
|
62
|
-
- `shepherd-theme-square-dark`
|
|
57
|
+
- `theme-default`
|
|
58
|
+
- `theme-dark`
|
|
63
59
|
|
|
64
60
|
Update `config/abraham.yml` if you choose a different theme:
|
|
65
61
|
|
|
66
62
|
```
|
|
67
63
|
defaults: &defaults
|
|
68
|
-
:
|
|
64
|
+
:tour_options: '{ defaultStepOptions: { classes: "theme-dark" } }'
|
|
69
65
|
```
|
|
70
66
|
|
|
67
|
+
You can also [write your own Shepherd theme](https://shepherdjs.dev/docs/tutorial-03-styling.html) based on Shepherd's [default CSS](https://github.com/shipshapecode/shepherd/releases/download/v6.0.0-beta.1/shepherd.css).
|
|
68
|
+
|
|
71
69
|
Tell Abraham where to insert its generated JavaScript in `app/views/layouts/application.html.erb`, just before the closing `body` tag:
|
|
72
70
|
|
|
73
71
|
```erb
|
|
@@ -124,6 +122,11 @@ Abraham takes care of which buttons should appear with each step:
|
|
|
124
122
|
* "Exit" and "Next" buttons on intermediate steps
|
|
125
123
|
* "Done" button on the last step
|
|
126
124
|
|
|
125
|
+
Abraham tries to be helpful when your tour steps attach to page elements that are missing:
|
|
126
|
+
|
|
127
|
+
* If your first step is attached to a particular element, and that element is not present on the page, the tour won't start. ([#28](https://github.com/actmd/abraham/issues/28))
|
|
128
|
+
* If your tour has an intermediate step attached to a missing element, Abraham will skip that step and automatically show the next. ([#6](https://github.com/actmd/abraham/issues/6))
|
|
129
|
+
|
|
127
130
|
### Testing your tours
|
|
128
131
|
|
|
129
132
|
Abraham loads tour definitions once when you start your server. Restart your server to see tour changes.
|
|
@@ -136,6 +139,24 @@ Rails.application.configure do
|
|
|
136
139
|
end
|
|
137
140
|
```
|
|
138
141
|
|
|
142
|
+
## Full example
|
|
143
|
+
|
|
144
|
+
We provide a [small example app](https://github.com/actmd/abraham-example) that implements abraham, so you can see it in action.
|
|
145
|
+
|
|
146
|
+
## Upgrading from version 1
|
|
147
|
+
|
|
148
|
+
Abraham v1 was built using Shepherd 1.8, v2 now uses Shepherd 6 -- quite a jump, yes.
|
|
149
|
+
|
|
150
|
+
If you were using Abraham v1, you'll want to take the following steps to upgrade:
|
|
151
|
+
|
|
152
|
+
1. Update your gem to the latest version
|
|
153
|
+
1. Fix your yarn dependencies to use the right versions
|
|
154
|
+
1. Shepherd no longer provides a set of themes. Abraham maintains two of the legacy themes: default and dark. You'll want to choose one of those or migrate your theme to the new Shepherd structure.
|
|
155
|
+
1. Abraham now exposes the entire Shepherd configuration object, so your `abraham.yml` file should now fully define the `tour_options` value instead of `default_theme`
|
|
156
|
+
1. There's been a slight change to `initializers/abraham.rb`. Replace yours with [the latest](https://github.com/actmd/abraham/blob/master/lib/generators/abraham/templates/initializer.rb).
|
|
157
|
+
|
|
158
|
+
If you have any trouble at all, please [submit an issue](https://github.com/actmd/abraham/issues) for assistance!
|
|
159
|
+
|
|
139
160
|
## Contributing
|
|
140
161
|
|
|
141
162
|
Contributions are welcome!
|
|
@@ -150,6 +171,8 @@ Everyone interacting in Abraham's codebase, issue tracker, etc. is expected to f
|
|
|
150
171
|
|
|
151
172
|
This Rails engine contains a test app called `dummy` with controller and system tests. They'll all get run with `rails t`.
|
|
152
173
|
|
|
174
|
+
Please note that if you change anything in the `lib/generators` folder (i.e. configuration, intializer, migration) you'll need to migrate the `dummy` app accordingly.
|
|
175
|
+
|
|
153
176
|
Final testing should be done in a standalone Rails app, following the README instructions.
|
|
154
177
|
|
|
155
178
|
To install the `abraham` gem with a local path:
|
|
@@ -160,7 +183,7 @@ gem 'abraham', path: '~/Workspace/abraham'
|
|
|
160
183
|
|
|
161
184
|
#### Automated testing
|
|
162
185
|
|
|
163
|
-
We use TravisCI automatically
|
|
186
|
+
We use TravisCI to automatically test this engine with Rails 5.1, 5.2, and 6.0. For test history, venture over to [TravisCI](https://travis-ci.com/actmd/abraham).
|
|
164
187
|
|
|
165
188
|
### Releasing
|
|
166
189
|
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
.shepherd-button {
|
|
2
|
+
background: #3288e6;
|
|
3
|
+
border: 0;
|
|
4
|
+
border-radius: 3px;
|
|
5
|
+
color: hsla(0, 0%, 100%, .75);
|
|
6
|
+
cursor: pointer;
|
|
7
|
+
margin-right: .5rem;
|
|
8
|
+
padding: .5rem 1.5rem;
|
|
9
|
+
transition: all .5s ease;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.shepherd-button:not(:disabled):hover {
|
|
13
|
+
background: #196fcc;
|
|
14
|
+
color: hsla(0, 0%, 100%, .75);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.shepherd-button.shepherd-button-secondary {
|
|
18
|
+
background: #f1f2f3;
|
|
19
|
+
color: rgba(0, 0, 0, .75);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.shepherd-button.shepherd-button-secondary:not(:disabled):hover {
|
|
23
|
+
background: #d6d9db;
|
|
24
|
+
color: rgba(0, 0, 0, .75);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.shepherd-button:disabled {
|
|
28
|
+
cursor: not-allowed;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.shepherd-footer {
|
|
32
|
+
border-bottom-left-radius: 5px;
|
|
33
|
+
border-bottom-right-radius: 5px;
|
|
34
|
+
display: flex;
|
|
35
|
+
justify-content: flex-end;
|
|
36
|
+
padding: 0 1rem 1rem;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.shepherd-footer .shepherd-button:last-child {
|
|
40
|
+
margin-right: 0;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.shepherd-cancel-icon {
|
|
44
|
+
background: transparent;
|
|
45
|
+
border: none;
|
|
46
|
+
color: hsla(0, 0%, 50.2%, .75);
|
|
47
|
+
font-size: 2em;
|
|
48
|
+
cursor: pointer;
|
|
49
|
+
font-weight: 400;
|
|
50
|
+
margin: 0;
|
|
51
|
+
padding: 0;
|
|
52
|
+
transition: color .5s ease;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.shepherd-cancel-icon:hover {
|
|
56
|
+
color: rgba(0, 0, 0, .75);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.shepherd-has-title .shepherd-content .shepherd-cancel-icon {
|
|
60
|
+
color: hsla(0, 0%, 50.2%, .75);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.shepherd-has-title .shepherd-content .shepherd-cancel-icon:hover {
|
|
64
|
+
color: rgba(0, 0, 0, .75);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.shepherd-title {
|
|
68
|
+
display: flex;
|
|
69
|
+
font-size: 1rem;
|
|
70
|
+
font-weight: 400;
|
|
71
|
+
flex: 1 0 auto;
|
|
72
|
+
margin: 0;
|
|
73
|
+
padding: 0;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.shepherd-header {
|
|
77
|
+
align-items: center;
|
|
78
|
+
border-top-left-radius: 5px;
|
|
79
|
+
border-top-right-radius: 5px;
|
|
80
|
+
display: flex;
|
|
81
|
+
justify-content: flex-end;
|
|
82
|
+
padding: 0.5rem 1rem 0;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.shepherd-has-title .shepherd-content .shepherd-header {
|
|
86
|
+
padding: 1rem;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.shepherd-text {
|
|
90
|
+
font-size: 1rem;
|
|
91
|
+
padding: 1rem;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.shepherd-text p {
|
|
95
|
+
margin-top: 0;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.shepherd-text p:last-child {
|
|
99
|
+
margin-bottom: 0;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.shepherd-content {
|
|
103
|
+
border-radius: 5px;
|
|
104
|
+
outline: none;
|
|
105
|
+
padding: 0;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.shepherd-element {
|
|
109
|
+
border-radius: 5px;
|
|
110
|
+
box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
|
|
111
|
+
max-width: 400px;
|
|
112
|
+
outline: none;
|
|
113
|
+
z-index: 9999;
|
|
114
|
+
line-height: 1.2;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.shepherd-element,
|
|
118
|
+
.shepherd-element *,
|
|
119
|
+
.shepherd-element :after,
|
|
120
|
+
.shepherd-element :before {
|
|
121
|
+
box-sizing: border-box;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.shepherd-element .shepherd-arrow {
|
|
125
|
+
border: 16px solid transparent;
|
|
126
|
+
content: "";
|
|
127
|
+
display: block;
|
|
128
|
+
height: 16px;
|
|
129
|
+
pointer-events: none;
|
|
130
|
+
position: absolute;
|
|
131
|
+
width: 16px;
|
|
132
|
+
z-index: 10000;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.shepherd-element.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-arrow,
|
|
136
|
+
.shepherd-element.shepherd-pinned-top .shepherd-arrow {
|
|
137
|
+
bottom: 0;
|
|
138
|
+
border-top-color: #232323;
|
|
139
|
+
left: 50%;
|
|
140
|
+
transform: translate(-50%, 100%);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.shepherd-element.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-arrow {
|
|
144
|
+
border-bottom-color: #232323;
|
|
145
|
+
left: 50%;
|
|
146
|
+
top: 0;
|
|
147
|
+
transform: translate(-50%, -100%);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.shepherd-element.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-arrow {
|
|
151
|
+
border-bottom-color: #303030;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.shepherd-element.shepherd-element-attached-middle.shepherd-element-attached-left .shepherd-arrow,
|
|
155
|
+
.shepherd-element.shepherd-pinned-right .shepherd-arrow {
|
|
156
|
+
border-right-color: #232323;
|
|
157
|
+
left: 0;
|
|
158
|
+
top: 50%;
|
|
159
|
+
transform: translate(-100%, -50%);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.shepherd-element.shepherd-element-attached-middle.shepherd-element-attached-right .shepherd-arrow,
|
|
163
|
+
.shepherd-element.shepherd-pinned-left .shepherd-arrow {
|
|
164
|
+
border-left-color: #232323;
|
|
165
|
+
right: 0;
|
|
166
|
+
top: 50%;
|
|
167
|
+
transform: translate(100%, -50%);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.shepherd-modal-overlay-container {
|
|
171
|
+
-ms-filter: progid:dximagetransform.microsoft.gradient.alpha(Opacity=50);
|
|
172
|
+
filter: alpha(opacity=50);
|
|
173
|
+
fill-rule: evenodd;
|
|
174
|
+
height: 0;
|
|
175
|
+
left: 0;
|
|
176
|
+
opacity: 0;
|
|
177
|
+
overflow: hidden;
|
|
178
|
+
pointer-events: none;
|
|
179
|
+
position: fixed;
|
|
180
|
+
top: 0;
|
|
181
|
+
transition: all .3s ease-out, height 0ms .3s, opacity .3s 0ms;
|
|
182
|
+
width: 100vw;
|
|
183
|
+
z-index: 9997;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.shepherd-modal-overlay-container.shepherd-modal-is-visible {
|
|
187
|
+
height: 100vh;
|
|
188
|
+
opacity: .5;
|
|
189
|
+
transition: all .3s ease-out, height 0s 0s, opacity .3s 0s;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.shepherd-modal-overlay-container.shepherd-modal-is-visible path {
|
|
193
|
+
pointer-events: all;
|
|
194
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
@import "_common";
|
|
2
|
+
|
|
3
|
+
.theme-dark.shepherd-element {
|
|
4
|
+
background: #232323;
|
|
5
|
+
|
|
6
|
+
.shepherd-text {
|
|
7
|
+
color: #eee;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.shepherd-title {
|
|
11
|
+
color: #fff;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.shepherd-has-title .shepherd-content .shepherd-header {
|
|
15
|
+
background: #303030;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-arrow,
|
|
19
|
+
&.shepherd-pinned-top .shepherd-arrow {
|
|
20
|
+
border-top-color: #232323;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-arrow {
|
|
24
|
+
border-bottom-color: #232323;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-arrow {
|
|
28
|
+
border-bottom-color: #303030;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&.shepherd-element-attached-middle.shepherd-element-attached-left .shepherd-arrow,
|
|
32
|
+
&.shepherd-pinned-right .shepherd-arrow {
|
|
33
|
+
border-right-color: #232323;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&.shepherd-element-attached-middle.shepherd-element-attached-right .shepherd-arrow,
|
|
37
|
+
&.shepherd-pinned-left .shepherd-arrow {
|
|
38
|
+
border-left-color: #232323;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
@import "_common";
|
|
2
|
+
|
|
3
|
+
.theme-default.shepherd-element {
|
|
4
|
+
background: #fff;
|
|
5
|
+
|
|
6
|
+
.shepherd-text {
|
|
7
|
+
color: rgba(0, 0, 0, .75);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.shepherd-title {
|
|
11
|
+
color: rgba(0, 0, 0, .75);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.shepherd-has-title .shepherd-content .shepherd-header {
|
|
15
|
+
background: #e6e6e6;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-arrow,
|
|
19
|
+
&.shepherd-pinned-top .shepherd-arrow {
|
|
20
|
+
border-top-color: #fff;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-arrow {
|
|
24
|
+
border-bottom-color: #fff;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-arrow {
|
|
28
|
+
border-bottom-color: #e6e6e6;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&.shepherd-element-attached-middle.shepherd-element-attached-left .shepherd-arrow,
|
|
32
|
+
&.shepherd-pinned-right .shepherd-arrow {
|
|
33
|
+
border-right-color: #fff;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&.shepherd-element-attached-middle.shepherd-element-attached-right .shepherd-arrow,
|
|
37
|
+
&.shepherd-pinned-left .shepherd-arrow {
|
|
38
|
+
border-left-color: #fff;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -25,9 +25,18 @@ module AbrahamHelper
|
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
def abraham_cookie_prefix
|
|
28
|
-
"abraham-#{
|
|
28
|
+
"abraham-#{fetch_application_name.to_s.underscore}-#{current_user.id}-#{controller_name}-#{action_name}"
|
|
29
29
|
end
|
|
30
30
|
|
|
31
|
+
def fetch_application_name
|
|
32
|
+
if Module.method_defined?(:module_parent)
|
|
33
|
+
Rails.application.class.module_parent
|
|
34
|
+
else
|
|
35
|
+
Rails.application.class.parent
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
|
|
31
40
|
def abraham_domain
|
|
32
41
|
request.host
|
|
33
42
|
end
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
var tour = new Shepherd.Tour(
|
|
3
|
-
defaults: {
|
|
4
|
-
classes: '<%= Rails.configuration.abraham.default_theme %>'
|
|
5
|
-
}
|
|
6
|
-
});
|
|
2
|
+
var tour = new Shepherd.Tour(<%= Rails.configuration.abraham.tour_options.html_safe unless Rails.configuration.abraham.tour_options.nil? %>);
|
|
7
3
|
|
|
8
4
|
tour.on("complete", function() {
|
|
9
5
|
// ajax
|
|
@@ -26,7 +22,8 @@
|
|
|
26
22
|
});
|
|
27
23
|
|
|
28
24
|
<% steps.each_with_index do |(key, step), index| %>
|
|
29
|
-
tour.addStep(
|
|
25
|
+
tour.addStep({
|
|
26
|
+
id: 'step-<%= key %>',
|
|
30
27
|
<% if step.key?('title') %>
|
|
31
28
|
title: "<%= step['title'] %>",
|
|
32
29
|
<% end %>
|
|
@@ -54,8 +51,20 @@
|
|
|
54
51
|
});
|
|
55
52
|
<% end %>
|
|
56
53
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
54
|
+
tour.start = function (start) {
|
|
55
|
+
return function () {
|
|
56
|
+
// Don't start the tour if the user dismissed it once this session
|
|
57
|
+
var tourMayStart = !Cookies.get('<%= abraham_cookie_prefix %>-<%= tour_name %>', {domain: '<%= abraham_domain %>'});
|
|
58
|
+
<% if steps.first[1]['attachTo'] %>
|
|
59
|
+
// Don't start the tour if the first step's element is missing
|
|
60
|
+
tourMayStart = tourMayStart && document.querySelector("<%= steps.first[1]['attachTo']['element'] %>");
|
|
61
|
+
<% end %>
|
|
62
|
+
|
|
63
|
+
if (tourMayStart) {
|
|
64
|
+
start();
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}(tour.start)
|
|
68
|
+
|
|
69
|
+
tour.start()
|
|
61
70
|
</script>
|
data/lib/abraham/version.rb
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
defaults: &defaults
|
|
2
|
-
|
|
2
|
+
# Add any valid Shepherd.js configuration JSON here
|
|
3
|
+
# and it will be passed into the `new Shepherd.Tour()`
|
|
4
|
+
# initializer.
|
|
5
|
+
:tour_options: '{ defaultStepOptions: { classes: "theme-default" } }'
|
|
3
6
|
|
|
4
7
|
development:
|
|
5
8
|
<<: *defaults
|
|
@@ -19,6 +19,6 @@ Rails.application.configure do
|
|
|
19
19
|
|
|
20
20
|
abraham_config = Rails.application.config_for :abraham
|
|
21
21
|
config.abraham = ActiveSupport::OrderedOptions.new
|
|
22
|
-
config.abraham.
|
|
22
|
+
config.abraham.tour_options = abraham_config[:tour_options]
|
|
23
23
|
config.abraham.tours = tours
|
|
24
24
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: abraham
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 2.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan Abbett
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-10-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sassc-rails
|
|
@@ -66,6 +66,20 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: web-console
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
69
83
|
description: Trackable application tours for Rails with i18n support, based on Shepherd.js.
|
|
70
84
|
email:
|
|
71
85
|
- jonathan@act.md
|
|
@@ -77,6 +91,9 @@ files:
|
|
|
77
91
|
- Rakefile
|
|
78
92
|
- app/assets/config/abraham_manifest.js
|
|
79
93
|
- app/assets/javascripts/abraham/index.js
|
|
94
|
+
- app/assets/stylesheets/abraham/_common.scss
|
|
95
|
+
- app/assets/stylesheets/abraham/theme-dark.scss
|
|
96
|
+
- app/assets/stylesheets/abraham/theme-default.scss
|
|
80
97
|
- app/controllers/abraham_histories_controller.rb
|
|
81
98
|
- app/helpers/abraham_helper.rb
|
|
82
99
|
- app/models/abraham_history.rb
|
|
@@ -113,7 +130,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
113
130
|
- !ruby/object:Gem::Version
|
|
114
131
|
version: '0'
|
|
115
132
|
requirements: []
|
|
116
|
-
|
|
133
|
+
rubyforge_project:
|
|
134
|
+
rubygems_version: 2.7.6
|
|
117
135
|
signing_key:
|
|
118
136
|
specification_version: 4
|
|
119
137
|
summary: Trackable application tours for Rails with i18n support, based on Shepherd.js.
|