59 lines
2.0 KiB
Plaintext
59 lines
2.0 KiB
Plaintext
<script>
|
|
var tour = new Shepherd.Tour(<%= Rails.configuration.abraham.tour_options.html_safe unless Rails.configuration.abraham.tour_options.nil? %>);
|
|
|
|
tour.on("complete", function() {
|
|
// ajax
|
|
return $.ajax({
|
|
url: "/abraham_histories/",
|
|
type: "POST",
|
|
dataType: "json",
|
|
contentType: "application/json",
|
|
data: JSON.stringify({
|
|
authenticity_token: '<%= form_authenticity_token %>',
|
|
controller_name: '<%= controller_name %>',
|
|
action_name: '<%= action_name %>',
|
|
tour_name: '<%= tour_name %>'
|
|
})
|
|
});
|
|
});
|
|
|
|
tour.on("cancel", function() {
|
|
Cookies.set('<%= abraham_cookie_prefix %>-<%= tour_name %>', 'later', { domain: '<%= abraham_domain %>' });
|
|
});
|
|
|
|
<% steps.each_with_index do |(key, step), index| %>
|
|
tour.addStep({
|
|
id: 'step-<%= key %>',
|
|
<% if step.key?('title') %>
|
|
title: "<%= step['title'] %>",
|
|
<% end %>
|
|
text: "<%= step['text'] %>",
|
|
<% if step.key?('attachTo') %>
|
|
attachTo: { element: "<%= step['attachTo']['element'] %>", on: "<%= step['attachTo']['placement'] %>" },
|
|
showOn: function() {
|
|
// Only display this step if its selector is present
|
|
return document.querySelector("<%= step['attachTo']['element'] %>") ? true : false
|
|
},
|
|
<% end %>
|
|
buttons: [
|
|
<% if index == 0 %>
|
|
{ text: '<%= t('abraham.later') %>', action: tour.cancel, classes: 'shepherd-button-secondary' },
|
|
{ text: '<%= t('abraham.continue') %>', action: tour.next }
|
|
<% else %>
|
|
<% if index == steps.size - 1 %>
|
|
{ text: '<%= t('abraham.done') %>', action: tour.complete }
|
|
<% else %>
|
|
{ text: '<%= t('abraham.exit') %>', action: tour.cancel, classes: 'shepherd-button-secondary' },
|
|
{ text: '<%= t('abraham.next') %>', action: tour.next }
|
|
<% end %>
|
|
<% end %>
|
|
]
|
|
});
|
|
<% end %>
|
|
|
|
// Don't start the tour if the user dismissed it once this session
|
|
if (!Cookies.get('<%= abraham_cookie_prefix %>-<%= tour_name %>', { domain: '<%= abraham_domain %>' })) {
|
|
tour.start();
|
|
}
|
|
</script>
|