Git Product home page Git Product logo

Comments (7)

sethaddison avatar sethaddison commented on June 16, 2024 1

@jabbett I'm eager to use Abraham in my Rails 7 app, but can't seem to get it configured. I'm using postcss and esbuild. Are you able to provide some guidance? I've followed the install instructions closely, but in my network console I'm getting Uncaught ReferenceError: Abraham is not defined. Can you help? 🙏🏼

from abraham.

oclef avatar oclef commented on June 16, 2024 1

I got it working in Rails 7 by loading Shepard and js.cookie directly from CDN

inside <head> I added

<script src="https://cdnjs.cloudflare.com/ajax/libs/shepherd.js/10.0.1/js/shepherd.min.js" integrity="sha512-+sGq1oBVH2WcJhJ8FW/krYkwIovP6ItdQN1+gHwWPG+kKlWAQVuuqzYfNPkOfBXSBQ+43ZlpiRwDP+OXxUky0A==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
	  
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/3.0.1/js.cookie.js" integrity="sha512-DJw15+xxGmXB1/c6pvu2eRoVCGo5s6rdeswkFS4HLFfzNQSc6V71jk6t+eMYzlyakoLTwBrKnyhVc7SCDZOK4Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
			  var Abraham = new Object();

			  Abraham.tours = {};
			  Abraham.incompleteTours = [];
			  Abraham.startTour = function(tourName) {
			    if (!Shepherd.activeTour) {
			    	Abraham.tours[tourName].start();
			    }
			  };
			  Abraham.startNextIncompleteTour = function() {
			    if (Abraham.incompleteTours.length) {
			    	Abraham.tours[Abraham.incompleteTours[0]].checkAndStart();
			    }
			  };
			  
			  document.addEventListener("DOMContentLoaded", Abraham.startNextIncompleteTour);
			  document.addEventListener("turbolinks:load", Abraham.startNextIncompleteTour);

			  document.addEventListener('turbolinks:before-cache', function() {
			    // Remove visible product tours
			    document.querySelectorAll(".shepherd-element").forEach(function(el) { el.remove() });
			    // Clear Abraham data
			    Abraham.tours = {};
			    Abraham.incompleteTours = [];
			  });
			  
		  </script>

from abraham.

obie avatar obie commented on June 16, 2024

Bumping this up as I just ran into similar issues, but on a Rails 6.1 app that doesn't have an app/assets/javascript directory.

from abraham.

deepakmahakale avatar deepakmahakale commented on June 16, 2024

ping

I am trying to get it working with rails 7
Facing some issues right now. will update soon

from abraham.

deepakmahakale avatar deepakmahakale commented on June 16, 2024

@obie For rails 6 or 7 with webpacker you can use this workaround - #63

For rails 7 with esbuild I am still looking a way to make it work

from abraham.

jabbett avatar jabbett commented on June 16, 2024

Thanks for the comments and the interest in Abraham! I use Rails 6 at work and in side projects, but I am not yet experienced in Rails 7. So I can't help directly there, but I'm certainly open to contributions.

from abraham.

jabbett avatar jabbett commented on June 16, 2024

On a side project, I tried https://driverjs.com to get more comfortable using third-party JS & CSS in Rails 7, and launching tours with Stimulus.

Of course, any JS-only approach lacks Abraham's user-based tracking. So I may attempt a PR to get this modernized...

from abraham.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.