Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new rule no-builtin-form-components #2990

Merged
merged 3 commits into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ Each rule has emojis denoting:
| [no-autofocus-attribute](./docs/rule/no-autofocus-attribute.md) || | ⌨️ | |
| [no-bare-strings](./docs/rule/no-bare-strings.md) | | | | |
| [no-block-params-for-html-elements](./docs/rule/no-block-params-for-html-elements.md) || | | |
| [no-builtin-form-components](./docs/rule/no-builtin-form-components.md) | | | | |
| [no-capital-arguments](./docs/rule/no-capital-arguments.md) || | | |
| [no-class-bindings](./docs/rule/no-class-bindings.md) || | | |
| [no-curly-component-invocation](./docs/rule/no-curly-component-invocation.md) || | | 🔧 |
Expand Down
97 changes: 97 additions & 0 deletions docs/rule/no-builtin-form-components.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
# no-builtin-form-components

Ember's built-in form components use two-way data binding, where the property passed as `@value` or `@checked` is mutated by user interaction. This goes against the Data Down Actions Up principle, goes against Glimmer Components’ intention to have immutable arguments, and is [discouraged by the Ember Core team](https://www.pzuraq.com/on-mut-and-2-way-binding/).

## Examples

This rule **forbids** the following:

```hbs
<Input />
```

```hbs
<Textarea></Textarea>
```

## Migration
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Both of these migration paths are for 'controlled inputs'

There is another migration path, too.

Which is faster, and involves less binding.

See:

Copy link
Contributor Author

@gilest gilest Nov 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True. I've seen some of this before but never used these patterns exactly. Not sure I understand them well enough make a concise recommendation.

How would you suggest the rule doc is structured?

We might:

  1. Branch the suggestions based on their existing form type somehow
  2. Just present both (light/controlled) as options
  3. Have a "Further reading" discussion section with more details

Ideally the simplest explanation of how to fix this issue is early in this doc.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Option 2 would be my preference.
You can copy from the above links 🎉

Copy link
Contributor Author

@gilest gilest Nov 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've made minor changes to incorporate your recommendations.

To be frank the docs on the ember primitives page are not easy to follow and don't clearly explain the light/controlled concepts so I don't really want to copy that over to this rule doc.

I'd welcome specific suggestions from you, but I can't paraphrase what you want because it's a bit conceptual IMO 😅

For many cases they will be the ideal migration but I think keeping an example of a low-level migration without addons is valuable for users to understand the underlying change that is needed.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you open an issue on ember-primitives? docs should be easy to understand, and it's a bug that they're not https://github.com/universal-ember/ember-primitives/ thanks!!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


Many forms may be simplified by switching to a light one-way data approach.

For example – vanilla JavaScript has everything we need to handle form data, de-sync it from our source data and collect all user input in a single object.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this looks great! nice work!


```js
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';
import { action } from '@ember/object';

export default class MyComponent extends Component {
@tracked userInput = {};

@action
handleInput(event) {
const formData = new FormData(event.currentTarget);
this.userInput = Object.fromEntries(formData.entries());
}
}
```

```hbs
<form {{on "input" this.handleInput}}>
<label> Name
<input name="name">
</label>
</form>
```

Another option would is to "control" the field's value by replacing the built-in form component with a native HTML element and binding an event listener to handle user input.

In the following example the initial value of a field is controlled by a local tracked property, which is updated by an event listener.

```js
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';
import { action } from '@ember/object';

export default class MyComponent extends Component {
@tracked name;

@action
updateName(event) {
this.name = event.target.value;
}
}
```

```hbs
<input
type="text"
value={{this.name}}
{{on "input" this.updateName}}
/>
```

You may consider composing the [set helper](https://github.com/pzuraq/ember-set-helper) with the [pick helper](https://github.com/DockYard/ember-composable-helpers#pick) to avoid creating an action within a component class.

```hbs
<input
type="text"
value={{this.name}}
{{on "input" (pick "target.value" (set this "name"))}}
/>
```

## Related Rules

* [no-mut-helper](no-mut-helper.md)

## References

* [Native HTML `input`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input)
* [Native HTML `textarea`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea)
* [Native HTML `FormData`](https://developer.mozilla.org/en-US/docs/Web/API/FormData)
* [The `on` modifier](https://guides.emberjs.com/release/components/component-state-and-actions/#toc_html-modifiers-and-actions)
* [ember-headless-form](https://ember-headless-form.pages.dev/)
* [Built-in components guides](https://guides.emberjs.com/release/components/built-in-components/)
* [Built-in `Input` component API](https://api.emberjs.com/ember/release/classes/Ember.Templates.components/methods/Input?anchor=Input)
* [Built-in `Textarea` component API](https://api.emberjs.com/ember/release/classes/Ember.Templates.components/methods/Textarea?anchor=Textarea)
2 changes: 2 additions & 0 deletions lib/rules/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import noattrsincomponents from './no-attrs-in-components.js';
import noautofocusattribute from './no-autofocus-attribute.js';
import nobarestrings from './no-bare-strings.js';
import noblockparamsforhtmlelements from './no-block-params-for-html-elements.js';
import nobuiltinformcomponents from './no-builtin-form-components.js';
import nocapitalarguments from './no-capital-arguments.js';
import noclassbindings from './no-class-bindings.js';
import nocurlycomponentinvocation from './no-curly-component-invocation.js';
Expand Down Expand Up @@ -148,6 +149,7 @@ export default {
'no-autofocus-attribute': noautofocusattribute,
'no-bare-strings': nobarestrings,
'no-block-params-for-html-elements': noblockparamsforhtmlelements,
'no-builtin-form-components': nobuiltinformcomponents,
'no-capital-arguments': nocapitalarguments,
'no-class-bindings': noclassbindings,
'no-curly-component-invocation': nocurlycomponentinvocation,
Expand Down
25 changes: 25 additions & 0 deletions lib/rules/no-builtin-form-components.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import Rule from './_base.js';

const WHY = 'Built-in form components use two-way binding to mutate values.';
const ACTION = 'Instead, refactor to use a native HTML element.';
export const MESSAGES = {
Input: `Do not use the \`Input\` component. ${WHY} ${ACTION}`,
Textarea: `Do not use the \`Textarea\` component. ${WHY} ${ACTION}`,
};

const COMPONENTS = new Set(['Input', 'Textarea']);

export default class NoBuiltinFormComponents extends Rule {
visitor() {
return {
ElementNode(node) {
if (COMPONENTS.has(node.tag)) {
this.log({
message: MESSAGES[node.tag],
node,
});
}
},
};
}
}
61 changes: 61 additions & 0 deletions test/unit/rules/no-builtin-form-components-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
import generateRuleTests from '../../helpers/rule-test-harness.js';

generateRuleTests({
name: 'no-builtin-form-components',

config: true,

good: [
'<input type="text" />',
'<input type="checkbox" />',
'<input type="radio" />',
'<textarea></textarea>',
],

bad: [
{
template: '<Input />',
verifyResults(results) {
expect({ results }).toMatchInlineSnapshot(`
{
"results": [
{
"column": 0,
"endColumn": 9,
"endLine": 1,
"filePath": "layout.hbs",
"line": 1,
"message": "Do not use the \`Input\` component. Built-in form components use two-way binding to mutate values. Instead, refactor to use a native HTML element.",
"rule": "no-builtin-form-components",
"severity": 2,
"source": "<Input />",
},
],
}
`);
},
},
{
template: '<Textarea></Textarea>',
verifyResults(results) {
expect({ results }).toMatchInlineSnapshot(`
{
"results": [
{
"column": 0,
"endColumn": 21,
"endLine": 1,
"filePath": "layout.hbs",
"line": 1,
"message": "Do not use the \`Textarea\` component. Built-in form components use two-way binding to mutate values. Instead, refactor to use a native HTML element.",
"rule": "no-builtin-form-components",
"severity": 2,
"source": "<Textarea></Textarea>",
},
],
}
`);
},
},
],
});