jtormey
Hello!
Having written a lot of LiveView code, I’ve made some VS Code snippets to speed up writing callbacks for LiveViews and LiveComponents. I thought I’d share here in case anyone finds them useful, and to see if others have have their own snippets to share.
Guide on creating snippets here: Snippets in Visual Studio Code
And the snippets:
{
"LiveView mount callback": {
"prefix": "lv_mount",
"body": [
"def mount(${1:_params}, ${2:_session}, socket) do",
"\t{:ok, socket$0}",
"end"
]
},
"LiveView handle_params callback": {
"prefix": "lv_params",
"body": [
"def handle_params(${1:params}, ${2:_uri}, socket) do",
"\t{:noreply, socket$0}",
"end"
]
},
"LiveView handle_info callback": {
"prefix": "lv_info",
"body": [
"def handle_info($1, socket) do",
"\t{:noreply, socket$0}",
"end"
]
},
"LiveView (or LiveComponent) handle_event callback": {
"prefix": "lv_event",
"body": [
"def handle_event(\"$1\", ${2:_params}, socket) do",
"\t{:noreply, socket$0}",
"end"
]
},
"LiveView (or LiveComponent) render callback": {
"prefix": "lv_render",
"body": [
"def ${1:render}(assigns) do",
"\t~H\"\"\"",
"\t$0",
"\t\"\"\"",
"end"
]
},
"LiveComponent mount callback": {
"prefix": "lc_mount",
"body": [
"def mount(socket) do",
"\t{:ok, socket$0}",
"end"
]
},
"LiveComponent update callback": {
"prefix": "lc_update",
"body": [
"def update(assigns, socket) do",
"\t{:ok, socket$0}",
"end"
]
},
"LiveComponent preload callback": {
"prefix": "lc_preload",
"body": [
"def preload(list_of_assigns) do",
"\tlist_of_assigns$0",
"end"
]
}
}
Maybe this would be useful as an addition to one of the Elixir VS Code packages out there?
Trending in Guides/Tuts
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 2- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
AdamR
Live view scaffold. It populates module name based on the file name and path. Easily adjustable for components so eg, you can have lvc for live view component. If you’re not a fun of render in the same file, just remove it.
Will produce
blakedietz
If you like this you might find my plugin of use: Phoenix LiveView snippets - Visual Studio Marketplace