1.0.5 • Published 2 months ago

ember-hbs-imports v1.0.5

Weekly downloads
44
License
MIT
Repository
github
Last release
2 months ago

ember-hbs-imports

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

  • More concise invocations while making it explicit where it comes from
  • No hyphens needed!
  • Relative imports!

there is now an official addon for imports at https://github.com/ember-template-imports/ember-template-imports

Installation

ember install ember-hbs-imports

Usage

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

Syntax:

  • import "{ named }" from "my-helpers"
  • import "{ * as named }" from "my-helpers"
  • import a from 'x': will use helper/component from 'x'
  • import as b from 'x': will user helper/component from path 'x/<b.>'
  • import style from 'x.scoped.scss': import scss and replace content in template
{{import "{ fn }" from "@ember/helper"}}
{{import myHelper from 'ui/helper'}}
{{import my-mod from 'ui/modifiers'}}
{{import style from './styles.module.scss'}}
{{import BasicDropdown from 'ember-basic-dropdown/components/basic-dropdown'}}
{{import SameDropdown from 'ember-basic-dropdown/components/basic-dropdown'}}


{{import helper as ashelper from "ui/helpers" }}
{{import a as ahelper from "ui/helpers" }}
{{import "* as helpers" from "u/helpersi" }}
{{import "a, b" from "ui/helpers" }}
{{import "a as x, b as y" from "ui/helpers" }}
{{import "a as z, helper" from "ui/helpers" }}


{{myHelper 'a'}}
{{helpers.x 'a'}}

<BasicDropdown class={{style.myclass}} />
<SameDropdown @param={{style.myclass}} />

<a {{my-mod}} />

The helper is looked up from the given string using a direct lookup pattern. I set the resolveHelper in the resolver. All this addon does is taking that {{import ...}} statement and replacing all helper invocations with {{ember-hbs-import/helpers/invoke-helper 'myHelper' ...}}.

Our helper then looks up the actual helper and calls compute with the other arguments

Embroider Support

to also have style imports working you need to add following to the embroider packagerOptions. this will prefix the styles with a specific hash, which is the same ember-hbs-imports will use in the templates.

const spark_md5 = require('spark-md5');
...
packagerOptions: {
      webpackConfig: {
        module: {
          rules: [
            {
              test: /app\/styles\/app.scss$/i,
              use: [
                { loader: 'style-loader' },
                { loader: 'css-loader', options: {
                    modules: {
                      mode: 'global',
                    }
                  } },
                { loader: 'sass-loader' }
              ],
            },
            {
              test: /\.module\.scss$/i,
              use: [
                { loader: 'style-loader' },
                { loader: 'css-loader', options: {
                    modules: {
                      mode: 'local',
                      getLocalIdent(context, localIdentName, localName) {
                        const name = localName;
                        let namespace = context.resourcePath.split('node_modules').slice(-1)[0];
                        if (namespace.startsWith('@')) {
                          namespace = namespace.split('/').slice(0, 2).join('/');
                        } else {
                          namespace = namespace.split('/')[0];
                        }
                        let relativePath = context.resourcePath;
                        relativePath = relativePath.replace(/\\/g, '/');
                        const prefix = context.context;
                        const hashKey = `${namespace}_${prefix}_${name}`;
                        return `${namespace}_${prefix}_${name}_${spark_md5.hash(hashKey).slice(0, 5)}`;
                      }
                    }
                  } },
                { loader: 'sass-loader' }
              ],
            },
          ],
        },
      }
    }

Glint Support

Template Lint Support

  • add plugin "ember-hbs-imports/hbs-imports-rule" to your .template-lintrc.js
  • enable or disable rule 'must-have-hbs-imports': true

Motivation

ember-template-component-import already gives us import for components, but I really miss the helper imports. So I went ahead and added this functionality :)

License

This project is licensed under the MIT License.

1.0.5

2 months ago

1.0.2

2 months ago

1.0.0

2 months ago

1.0.4

2 months ago

1.0.3

2 months ago

0.5.41

7 months ago

0.5.40

9 months ago

0.5.38

10 months ago

0.5.39

10 months ago

0.5.37

10 months ago

0.5.36

10 months ago

0.5.32

11 months ago

0.5.33

11 months ago

0.5.34

11 months ago

0.5.35

11 months ago

0.5.30

1 year ago

0.5.31

1 year ago

0.5.29

1 year ago

0.5.28

1 year ago

0.5.22

2 years ago

0.5.27

1 year ago

0.5.25

2 years ago

0.5.26

2 years ago

0.5.23

2 years ago

0.5.24

2 years ago

0.5.10

2 years ago

0.5.11

2 years ago

0.5.8

2 years ago

0.5.7

2 years ago

0.5.9

2 years ago

0.5.18

2 years ago

0.5.19

2 years ago

0.5.16

2 years ago

0.5.17

2 years ago

0.5.14

2 years ago

0.5.15

2 years ago

0.5.12

2 years ago

0.5.13

2 years ago

0.5.21

2 years ago

0.5.20

2 years ago

0.5.4

2 years ago

0.5.3

2 years ago

0.5.6

2 years ago

0.5.5

2 years ago

0.5.0

2 years ago

0.5.2

2 years ago

0.5.1

2 years ago

0.4.8

2 years ago

0.4.7

2 years ago

0.4.6

2 years ago

0.4.5

3 years ago

0.4.4

3 years ago

0.4.1

3 years ago

0.4.0

3 years ago

0.4.2

3 years ago

0.3.3

3 years ago

0.3.2

3 years ago

0.3.1

3 years ago

0.3.0

3 years ago