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

ember-template-component-import

v1.3.2

Published

The default blueprint for ember-cli addons.

Downloads

45

Readme

ember-template-component-import

This addon allows you to use import-style syntax to create local bindings to a component within a template file.

In other words, it's pods + angle bracket component = goodness.

  • Use pods and angle bracket components together
  • More concise component invocation while making it explicit where it comes from
  • No hyphens needed!
  • Relative imports!
  • Autocomplete imported components with Unstable Ember Language Server!

Can be used together with

Installation

ember install ember-template-component-import

Usage

Use the same kind of import syntax you are familiar with from Javascript:

import Button from 'ui/button';
--- hbs ---

<Button @appearance="super-important">I'm a button!</Button>

The component is looked up from the given string using the normal lookup patterns. In fact, all this addon does is rewrite that import ... statement into a wrapping {{#let (component 'ui/button') as |Button|}}.

We also do a bit of path magic at build time to let you use relative imports!

{{!-- app/pods/some/deeply/nested/route/template.hbs --}}
import SpecialButton from './super-special-button-used-only-in-this-route';
--- hbs ---

<SpecialButton>I'm so special!</SpecialButton>

JS imports style

import BasicDropdown from 'ember-basic-dropdown/components/basic-dropdown';
import { BasicDropdown as SameDropdown } from 'ember-basic-dropdown/components';

--- hbs ---

<BasicDropdown />
<SameDropdown />

Classic imports style

{{import BasicDropdown from 'ember-basic-dropdown/components/basic-dropdown'}}
{{import SameDropdown from 'ember-basic-dropdown/components/basic-dropdown'}}

<BasicDropdown />
<SameDropdown />

We recommend using the JS style.

Editor Integration

Editor integration currently provides auto completion of imported components.

VSCode

Currently works with VSCode combined with the Unstable Ember Language Server.

(Neo)Vim

Possible by using https://github.com/NullVoxPopuli/coc-ember

Motivation

Angle bracket components are unreasonably delightful to use, but they can be tedious to use when nested, i.e. <Dashboard::Setup::Form/>, which makes you write components that are not nested. Another limitation is that it's hard to understand where components are coming from.

This addon works around that by leveraging the component and let helpers to create a local alias for that component.

A side benefit is the relative paths for imports. Normally, even with pods, all components must be specified by their full path, i.e. <Posts::Post::Comments::Comment::AuthorAvatar/> rather than <./AuthorAvatar/> (which doesn't work).

By rewriting the import syntax at build time, we can replace your relative paths with the full paths, and everyone is happy!

What about official support?

There is an RFC for adding framework level primitives https://github.com/emberjs/rfcs/pull/454, but it hasn't been merged or worked on. Once this lands our goal is to use that API to keep the functionality that this addon provides. The goal of this addon is to get people to try it and to get hooked so we have an official solution faster!

But be warned - this addon is not official and when an official solution does exist, it might be different. So weigh the pros and cons carefully before widely adopting this addon.

License

This project is licensed under the MIT License.

unstable-ls: https://marketplace.visualstudio.com/items?itemName=lifeart.vscode-ember-unstable