Skip to content

eaCe/magics

Repository files navigation

Alpine.js Magic helpers

This package provides some magic helpers for Alpine.js.

Installation

NPM

npm i https://github.com/eaCe/magics

Yarn

yarn add https://github.com/eaCe/magics

Or copy the magics.js file from the src folder into your project and include it in your JavaScript bundle.

Usage

import Alpine from 'alpinejs';
import Magics from 'magics';

Alpine.plugin(Magics);
window.Alpine = Alpine
Alpine.start();

Log Helpers

Every log-helper accepts one or two arguments. The first argument is the value to log. The second argument is a boolean value to clear the console before logging, if set to true. You may pass an array of values as the first argument.

$log()

Write a message to the console.

<div x-data="{ foo: 'bar' }">
    <button @click="$log(foo)">Log</button>
    <button @click="$log(['foo', ['foo', 'bar']], true)">Clear previous logs and log</button>
</div>

$warn()

Write a warning message to the console.

<div x-data="{ foo: 'bar' }">
    <button @click="$warn(foo)">Log</button>
</div>

$error()

Write an error message to the console.

<div x-data="{ foo: 'bar' }">
    <button @click="$error(foo)">Log</button>
</div>

$info()

Write an informational message to the console.

<div x-data="{ foo: 'bar' }">
    <button @click="$info(foo)">Log</button>
</div>

$table()

Writes a table in the console view.

<div x-data="">
    <button @click="$table({ foo: 'bar', bar: 'foo'})">Log</button>
</div>

$clear()

Clears the console.

<div x-data="">
    <button @click="clear();$log('foo')">Clear previous logs and log</button>
</div>

$group() and $groupEnd()

Creates a new group in the console view.

<div x-data="">
    <button @click="$group('Groupname');$log('foo');$log('bar');$groupEnd()">Group logs</button>
</div>

Size Helpers

$width and $width()

Get or set the width of an element.

<div x-data x-text="$width"></div>
<div x-data x-init="$width('200px')"></div>

$height and $height()

Get or set the height of an element.

<div x-data x-text="$height"></div>
<div x-data x-init="$height('200px')"></div>

Position Helpers

$offset().top and $offset().left

Get the offset of an element.

<div x-data x-text="$offset().top"></div>
<div x-data x-text="$offset().left"></div>

Misc Helpers

$hasClass()

Checks if an element has a class.

<div x-data x-text="$hasClass('foo')" class="foo"></div>

$trim()

Trims whitespace from the beginning and end of a string.

<div x-data x-text="$trim(' foo ')"></div>

About

Alpine.js magic helpers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published