gus
Hello all,
I recently started experimenting with Phoenix for a personal project, and am loving it so far. However, I’ve gotten really stuck with Webpack and using node modules in my project. I don’t have any experience in front end development, and am in over my head with some of these topics.
I’m trying to use the node module simplemde to be able to turn a textarea into a markdown editor. While I was able to get it working by including the CDN in my html.eex file as follows:
<%= form_for @changeset, Routes.post_path(@conn, :create), fn f -> %>
<%= label f, :title %>
<%= text_input f, :title, required: true, placeholder: "Post Title" %>
<%= error_tag f, :title %>
<%= label f, :body %>
<%= textarea f, :body, rows: 20, required: true, focusable: true, placeholder: "Post Body" %>
<%= error_tag f, :body %>
<div class="row">
<div class="column">
<%= submit "Publish" %>
</div>
<div class="column column-50">
<%= link "Save", class: "button button-outline", to: Routes.post_path(@conn, :index), data: [confirm: "Really discard all changes?"] %>
</div>
<div class="column">
<%= link "Discard", class: "button button-outline float-right", to: Routes.post_path(@conn, :index), data: [confirm: "Really discard all changes?"] %>
</div>
</div>
<% end %>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/simplemde/latest/simplemde.min.css">
<script src="https://cdn.jsdelivr.net/simplemde/latest/simplemde.min.js"></script>
<script type="text/javascript">
new SimpleMDE({
element: document.getElementById('post_body'),
spellChecker: true
})
</script>
I’ve been having great difficulty actually adding it to my project via webpack though. The steps I’ve taken have been:
Added to package.json and installed node modules
"simplemde": "^1.11.2"
npm install
Added the import to my app.js file:
import css from "../css/app.css"
import "phoenix_html"
import SimpleMDE from "simplemde"
Tried to use simplemde within a script tag of my html.eex file (for brevity, it is the same code as above, except I removed the stylesheet and script with the cdn src tag)
This resulted in the textarea returning to the plain html textarea, with no markdown controls, and an error that SimpleMDE is not defined in the browser console.
My next idea was to remove the script tag with the setup for simplemde from the html.eex file and move it to the app.js file. This worked, and the code is as follows:
import css from "../css/app.css"
import "phoenix_html"
import SimpleMDE from "simplemde"
new SimpleMDE({
element: document.getElementById('post_body'),
spellChecker: true
})
There seem to be two problems with this approach, however. 1) the formatting of the textarea isn’t correct. I believe I still need to import or include the stylesheet. 2) this solution applies to all of the pages across my application, because it is in the app.js file. So, when I go to any other page, I get console error messages that say SimpleMDE: Error. No element was found (like it should, since there is no element with id post_body on those pages).
So, from this I have several questions:
How do I share the modules that have been imported to the scripts within my html files?
What is the best practice for using javascript in my application - does it make more sense to always create a javascript file instead of embedding it into a script tag? (is that more maintainable?)
I’m quite certain that the CSS file for simplemde can be imported as well - how do I go about that, and in the future how do I figure out what the names of importable objects are?
I appreciate the help! Cheers
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
aptinio
app.css, addapp.js, check if#post_bodyexists:mythicalprogrammer
Welcome to elixir forum.
Did you manually add that?
Cause
npm install --save "yourpackagename"will add it to your package.json file.As for
SimpleMDEI believe, correct me if I’m wrong, you need to tell webpack that it’s global. Check your javascript console if it’s complaining about SimpleMDE not being found.So line 66, you can put
SimpleMDE: 'simplemde'like I did with$: 'jquery',. Making it global so all other javascript can detect it if it’s expecting it to be named SimpleMDE.adrianrl
Hi,
Is up to you, I’d likely use a public CDN if the dependency is very large (and indeed 263kb of JavaScript + 10.7kb of CSS is heavy enough!), also a CDN helps you to speed up your webpage if the user has already cached that dependency in its browser. However it’s totally fine if you want to serve SimpleMDE by yourself, just have in mind that you don’t need it in every page, so you should split that dependency from your app bundle.
app.jswill load by default in every page, so it’s a nice file to put some dependencies to interact with your UI (React.js, Vue.js, jQuery…), nothing more, it should be as lightweight as possible to load faster.Most of the time I generate a
vendor.jsfrom the dependencies ofapp.jsto keep both small.gus
Hi @aptinio -
Thanks for the quick reply! I tried adding
@import "simplemde"to the css file and the suggestion to wrap my simplemde object with an if statement in app.js, however, I was running into further errors. Apparently, it cannot find the module.Also, what is the difference between @import and import? Is the @ only used in a css file?
Thanks
gus
Hi @mythicalprogrammer -
Thanks for the warm welcome.
Yeah I did - hadn’t realized that npm would take care of this for me! I undid my work and added it with this command. Out of curiosity, why did npm add it to dependencies instead of devDependencies (which is where I had put it originally)?
Also, I am getting errors when trying to add the dependency to Webpack.ProvidePlugin… my understanding is that
Webpackis not definedThanks!
gus
Hi @adrianrl -
Thanks for this suggestion. I guess I hadn’t thought much about how a CDN can speed up the loading time of the application. With this suggestion, I probably will revert back to using the CDN for this dependency. However, I think it is still valuable for me to figure out how to properly import and use node modules, because I will be doing it more in the future. That being said, is it typically a better practice to write javascript within a script tag of the html, or to create a separate file that can be loaded via the src attribute of a script tag?
Thanks!
mythicalprogrammer
That’s another command:
npm install --save-dev "package-name-here"Yeah that’s line 1 of my webpack file (added the first 1 to 8 lines that I skipped out on):
Also watch out for
iex -S mix phx.server. It caches webpack and doesn’t run webpack often enough. If you change anything to webpack config you should just rerun that command again to force it to rerun webpack.aptinio
Try:
adrianrl
I think, inline JavaScript (that’s how it’s called), is used by people who doesn’t want to add extra configuration to Webpack, you’ve to set the dependency pulled from a CDN as a external dependency, just like @mythicalprogrammer did with
Webpack.ProvidePlugin().Typically with inline JavaScript you initialize / configure dependencies that are pulled from a CDN, because by default, Webpack will assume you have that dependency installed locally. When you use a library from a CDN it exposes a global object (SimpleMDE, React, ReactDOM…), that’s why you can configure it using inline JavaScript.
gus
Ah yes, that makes sense. Thanks for following up. I had figured webpack wasn’t reconfiguring on save, so I was doing that when I made changes. Thanks for the help!