npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ekwoka/alpine-scope

v0.0.1

Published

Access component scopes by name

Downloads

4

Readme

Alpine Scope: Scoped Context Naming for AlpineJS

This exposes a simple magic $scope to allow accessing specific component scopes in the tree by name.

Install

npm i @ekwoka/alpine-scope

Import to Build (Simple Version):

import Alpine from 'alpinejs';
import Scope from '@ekwoka/alpine-scope';

Alpine.plugin(Scope);

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

Usage:

When using Alpine, it can sometimes be difficult to access the values you want in some component trees. While often this is a case of poor design, sometimes the best design can still run into some conflicts that require awkward workarounds.

With this plugin, you can use the magic $scope to directly access the data context of a specific component in the tree.

Implicit Naming

<div x-data="foo">
  // { value: 'hello' }
  <div x-data="bar">
    // { value: 'world' }
    <span x-text="$scope.foo.value"></span> // 'hello'
    <span x-text="value"></span> // 'world'
  </div>
</div>

The above is an example of implicitely scoped contexts. The expression passed to x-data is used as the key. This works great when the contexts are defined with Alpine.data and referenced by name. Obviously, this would become an issue if you your expression is like

<div
  x-data="{ foo: { bar: [1,2,3 ]}, doStuff() { console.log(this.foo.bar) } }"></div>

Explicit Naming

Conveniently included is the x-scope directive, which allows you to explicitly name the scope. This is useful for cases where the expression may be unknown at the point of needing the scoping, and cases where the expression is unwieldly.

<div x-data="{ value: 'hello' }" x-scope="foo">
  <div x-data="{ value: 'world' }">
    <span x-text="$scope.foo.value"></span> // 'hello'
    <span x-text="value"></span> // 'world'
  </div>
</div>

Pretty nifty!!!

And don't worry, scopes won't leak into other trees. They are only accessible within the tree they are defined.

How it works

x-scope="expression"

x-scope adds a Map of scopes to the current elements nearest component, that contains any scopes from the parent component and then the current component. These are placed in the context under a special Symbol so as not to conflict with your components directly.

This adds the scope to the current context, not the specific elements subtree. This means that children of the root element can provide a name to the scope, and that all elements in the component will see the same list of scopes, even if they are not in the same subtree. This can be useful for some more dynamic use cases. The same component scope can be named multiple times from multiple x-scope directives in the component tree, and they will not remove the others.

However, the scopes are isolated to the component and its decendents, and will not leak into the parent or other components.

$scope.name

$scope is a magic property available in expressions and component methods that exposes a Proxy that allows access to the Parent components.

When a key is access, like $scope.foo, the Proxy first looks in the current contexts Map of scopes (from x-scope) for a context. If no context is found, it will look up the tree for an element with a matching x-data expression to use its context.

This means that explicitely named scopes will always take precedence over implicitely named scopes, and that scopes will not leak to sibling or parent trees.

Author

👤 Eric Kwoka

  • Website: http://thekwoka.net
  • Github: @ekwoka

Show your support

Give a ⭐️ if this project helped you!