New Discussion

Notifications

You’re not receiving notifications from this thread.

Extend stimulus controller - base class not found

2
Javascript

I want to extend the Stimulus controller to get some often used method in one place, like this:
import {Controller} from "@hotwired/stimulus"

./controllers/base.js
export default class Base extends Controller {
defineSettings() {...}
}

Then I want to use this 'base' in my inherited controller, like a normal controller:

./controllers/stream_controller.js
import Base from "./base.js"

export default class extends Base {
initialized() {...}

}

On my dev machine this works (after assets:precompile) but in production mode the 'base' class is not found:
"Error: Unable to resolve specifier 'base' imported from stream_controller..."

I am totally unsure if this possible and how to "correct" set my imports.

try to stackoverflow it, i saw the same issue on that

ASDA

Join the discussion
Create an account Log in

Learning Ruby on Rails? Join our newsletter.

We won't send you spam. Unsubscribe at any time.