(Art by shahabalizadeh)
For devs who love ergonomics! You may appreciate Surreal if:
- You want to stay as close as possible to Vanilla JS.
- Hate typing
document.querySelector
over.. and over.. - Hate typing
addEventListener
over.. and over.. - Really wish
document.querySelectorAll
had Array functions.. - Really wish
this
would work in any inline<script>
tag - Enjoyed using jQuery selector syntax.
- Animations, timelines, tweens with no extra libraries.
- Only 320 lines. No build step. No dependencies.
- Pairs well with htmx
- Want fewer layers, less complexity. Are aware of the cargo cult.
โ๏ธ
- โก๏ธ Locality of Behavior (LoB) Use
me()
inside<script>
- Get an element without creating a unique name: No .class or #id needed!
this
but better!- Want to use it in your CSS
<style>
tags, too? See our companion script
- ๐ Call chaining, jQuery style.
- โป๏ธ Functions work seamlessly on one element or arrays of elements!
- All functions can use:
me()
,any()
,NodeList
,HTMLElement
(..or arrays of these!) - Get 1 element:
me()
- ..or many elements:
any()
me()
orany()
can chain with any Surreal function.me()
can be used directly as a single element (likequerySelector()
or$()
)any()
can use:for
/forEach
/filter
/map
(likequerySelectorAll()
or$()
)
- All functions can use:
- ๐ No forced style:
class_add
is just an alias ofclassAdd
- Use
camelCase
(Javascript) orsnake_case
(Python, Rust, PHP, Ruby, SQL, CSS).
- Use
- ๐ก We solve the classic jQuery code bloat problem: Am I getting 1 element or an array of elements?
me()
is guaranteed to return 1 element (or first found, or none).any()
is guaranteed to return an array (or empty array).- No more checks! Write less code! Bonus: Code reads more like self-documenting english.
Do surreal things with Locality of Behavior like:
<label for="file-input" >
<div class="uploader"></div>
<script>
me().on("dragover", ev => { halt(ev); me(ev).classAdd('.hover'); console.log("Files in drop zone.") })
me().on("dragleave", ev => { halt(ev); me(ev).classAdd('.hover'); console.log("Files left drop zone.") })
me().on("drop", ev => { halt(ev); me(ev).classRemove('.hover').classAdd('.loading'); me('#file-input').attribute('files', ev.dataTransfer.files); me('#form').trigger('change') })
</script>
</label>
See the Live Example! Then view source.
Surreal is only 320 lines. No build step. No dependencies.
- Download Surreal and drag
surreal.js
into a directory of your project. - Add
<script src="surreal.js"></script>
to your<head>
.
- jQuery for the chainable syntax we all love.
- BlingBling.js for modern minimalism.
- Bliss.js for a focus on single elements and extensibility.
- Hyperscript for Locality of Behavior and awesome ergonomics.
- Shout out to Umbrella, Cash, Zepto- Not quite as ergonomic. Requires build step to extend.
- Select one element:
me(SELECTOR)
- SELECTOR can be any of:
- CSS selector:
".button"
,"#header"
,"h1"
,"body > .block"
- Variables:
body
,elt
,some_element
- Events: the
event.target
will be used. - Surreal selectors:
me()
,any()
- Adding the
, start=
parameter provides a starting point to select from, default isdocument
.- Example:
any('button', start='header').classAdd('red')
- Example:
- CSS selector:
me()
Get current element for Locality of Behavior in<script>
without an explicit .class or #idme("body")
Gets<body>
me(".button")
Gets the first<div class="button">...</div>
. To get all of them useany()
- SELECTOR can be any of:
- Select one or more elements as an array:
any(SELECTOR)
- Similar to
me()
but guaranteed to return an array (or empty array). any(".button")
Gets all matching elements, example:<div class="button">...</div>
- Feel free to convert between arrays of elements and single elements:
any(me())
,me(any(".something"))
- Similar to
- โป๏ธ All functions work on single elements or arrays of elements.
- ๐ Start a chain using
me()
andany()
- ๐ข Style A - ๐ Chain style
me().classAdd('red')
(โญ RECOMMENDED)- Alternative, no conveniences:
$.me().classAdd('red')
- Alternative, no conveniences:
- ๐ Style B
classAdd(me(), 'red')
- Alternative, no conveniences:
$.classAdd($.me(), 'red')
- Alternative, no conveniences:
- ๐ข Style A - ๐ Chain style
- ๐ Global conveniences help you write less code.
globalsAdd()
will automatically warn about any clobbering issues. If you prefer no conveniences, just deleteglobalsAdd()
See: Quick Start and Reference and No Surreal Needed
- Add a class
me().classAdd('red')
any("button").classAdd('red')
- Events
me().on("click", ev => me(ev).fade_out() )
on(any('button'), 'click', ev => { me(ev).styles('color: red') })
- Run functions over elements.
any('button').run(_ => { alert(_) })
- Styles / CSS
me().styles('color: red')
me().styles({ 'color':'red', 'background':'blue' })
- Attributes
me().attribute('active', true)
<div>I change color every second.
<script>
// Locality of Behavior
me().on("click", async ev => {
me(ev).styles({ "transition": "background 1s" })
await sleep(1000)
me(ev).styles({ "background": "red" })
await sleep(1000)
me(ev).styles({ "background": "green" })
await sleep(1000)
me(ev).styles({ "background": "blue" })
await sleep(1000)
me(ev).styles({ "background": "none" })
await sleep(1000)
me(ev).remove()
})
</script>
</div>
<div>I fade out and remove myself.
<script>
// Keepin it simple! Locality of Behavior.
me().on("click", ev => { me(ev).fadeOut() })
</script>
</div>
<div>I change color every second.
<script>
// Run on load.
(async (el = me())=>{
me(el).styles({ "transition": "background 1s" })
await sleep(1000)
me(el).styles({ "background": "red" })
await sleep(1000)
me(el).styles({ "background": "green" })
await sleep(1000)
me(el).styles({ "background": "blue" })
await sleep(1000)
me(el).styles({ "background": "none" })
await sleep(1000)
me(el).remove()
})()
</script>
</div>
<script>
// Keepin it simple! Globally!
(async ()=>{
any("button").fadeOut()
})()
</script>
any('button')?.forEach(...)
any('button')?.map(...)
Looking for DOM Selectors?
- ๐ Chainable off
me()
andany()
- ๐ Global convenience helper.
- ๐ Runnable example.
- ๐ Built-in Plugin
- ๐
run
- It's
forEach
but less wordy and works on single elements, too! - ๐
me().run(el => { alert(el) })
- ๐
any('button').run(el => { alert(el) })
- It's
- ๐
remove
- ๐
me().remove()
- ๐
any('button').remove()
- ๐
- ๐
classAdd
orclass_add
- ๐
me().classAdd('active')
- Leading
.
is optional for all class functions, to prevent typical syntax errors withme()
andany()
.me().classAdd('active')
andme().classAdd('.active')
are equivalent.
- ๐
- ๐
classRemove
orclass_remove
- ๐
me().classRemove('active')
- ๐
- ๐
classToggle
orclass_toggle
- ๐
me().classToggle('active')
- ๐
- ๐
styles
- ๐
me().styles('color: red')
Add style. - ๐
me().styles({ 'color':'red', 'background':'blue' })
Add multiple styles. - ๐
me().styles({ 'background':null })
Remove style.
- ๐
- ๐
attribute
orattributes
orattr
- Get: ๐
me().attribute('data-x')
- Get is only for single elements. For many, wrap the call in
any(...).run(...)
orany(...).forEach(...)
.
- Get is only for single elements. For many, wrap the call in
- Set: ๐
me().attribute('data-x', true)
- Set multiple: ๐
me().attribute({ 'data-x':'yes', 'data-y':'no' })
- Remove: ๐
me().attribute('data-x', null)
- Remove multiple: ๐
me().attribute({ 'data-x': null, 'data-y':null })
- Get: ๐
- ๐
trigger
- ๐
me().trigger('hello')
- Wraps
dispatchEvent
- ๐
- ๐
on
- ๐
me().on('click', ev => { me(ev).styles('background', 'red') })
- Wraps
addEventListener
- ๐
- ๐
off
- ๐
me().remove('click')
- Wraps
removeEventListener
- ๐
- ๐
offAll
- ๐
me().offAll()
- ๐
- ๐
sleep
- ๐
await sleep(1000, ev => { alert(ev) })
async
version ofsetTimeout
- Wonderful for animation timelines.
- ๐
- ๐
tick
- ๐
await tick()
await
version ofrAF
/requestAnimationFrame
.- Animation tick. Waits 1 frame.
- Great if you need to wait for events to propagate.
- ๐
- ๐
rAF
- ๐
rAF(e => { return e })
- Animation tick. Fires when 1 frame has passed. Alias of requestAnimationFrame
- Great if you need to wait for events to propagate.
- ๐
- ๐
rIC
- ๐
rIC(e => { return e })
- Great time to compute. Fires function when JS is idle. Alias of requestIdleCallback
- ๐
- ๐
halt
- ๐
halt(event)
- Great to prevent default browser behavior: such as displaying an image vs letting JS handle it.
- Wrapper for preventDefault
- ๐
- ๐
createElement
orcreate_element
- ๐
el_new = createElement("div"); me().prepend(el_new)
- Alias of
document.createElement
- ๐
- ๐
onloadAdd
oronload_add
- ๐
onloadAdd(_ => { alert("loaded!"); })
- Execute after the DOM is ready. Similar to jquery
ready()
- Queues functions onto
window.onload
- Why? So you don't overwrite
window.onload
, also predictable sequential loading!
- ๐
Build your own effects with me().styles({...})
then timelining with CSS transitions using await
or callbacks. We ship some common effects:
-
๐
fadeOut
orfade_out
- Fade out and remove element.
- Keep element with
remove=false
. - ๐
me().fadeOut()
- ๐
me().fadeOut(ev => { alert("Faded out!") }, 3000)
Over 3 seconds then call function.
-
๐
fadeIn
orfade_in
- Fade in existing element which has
opacity: 0
- ๐
me().fadeIn()
- ๐
me().fadeIn(ev => { alert("Faded in!") }, 3000)
Over 3 seconds then call function.
- Fade in existing element which has
More often than not, Vanilla JS is the easiest way!
Logging
- ๐
console.log()
console.warn()
console.error()
- Event logging: ๐
monitorEvents(me())
See: Chrome Blog
Benchmarking / Time It!
- ๐
console.time('name')
- ๐
console.timeEnd('name')
Text / HTML Content
- ๐
me().textContent = "hello world"
- XSS Safe! See: MDN
- ๐
me().innerHTML = "<p>hello world</p>"
- ๐
me().innerText = "hello world"
Children
- ๐
me().children
- ๐
me().children.hidden = true
Append / Prepend elements.
- ๐
me().prepend(el_new)
- ๐
me().appendChild(el_new)
- ๐
me().insertBefore(el_new, el.firstChild)
- ๐
me().insertAdjacentHTML("beforebegin", el_new)
_
= for temporary or unused variables. Keep it short and sweet!e
,el
,elt
= elemente
,ev
,evt
= eventf
,fn
= function- Developer ergonomics and simplicity wins.
- Find the layer where the change needs to touch the least places.
- Animations are done with
me().styles(...)
with CSS transitions. Useawait sleep(...)
for timelining. - Dropdowns can be done in pure HTML / CSS.
Surreal is tiny enough to be modified for a particular use-case; but there is a system if you prefer to effortlessly merge with new versions.
- Add your function to Surreal
var $thing = {
test(e, name) {
console.log(`Hello ${name} from ${e}`)
return e
}
}
$ = {...$, ...$thing}
- Is your function chainable? Add it to Surreal sugar()
$.sugars['test'] = (name) => { return $.test($._e, name) }
- Your function will automatically will be added globally by
globalsAdd()
If you do not want this (ex: Naming clash), add it to the restricted list inglobalsAdd()
Should your function work with both single elements and arrays of elements? Refer to an existing function to see how to make this work.
Make an issue or pull request if you think people would like to use it! If it's useful enough we may want it in the core!
- Always more
showcase.html
goodies! - Automated browser testing perhaps with: