open-consul/ui/packages/consul-ui/app/components/ref
John Cowen ac65aa80c6
ui: Remove storybook, add docfy (#9831)
This PR removes storybook and adds docfy and uses docfy to render our existing README files.

This now means we can keep adding README documentation without committing any specific format or framework. If we eventually move to storybook then fine, or if we just want to remove docfy for whatever reason then fine - we will still have a full set of README files viewable via GitHub.
2021-03-08 12:22:01 +00:00
..
README.mdx ui: Remove storybook, add docfy (#9831) 2021-03-08 12:22:01 +00:00
index.js ui: Move to Workspaced Structure (#8994) 2020-10-21 15:23:16 +01:00

README.mdx

## Ref

`<Ref @target={{this}} @name="api" @value={{api}} />`

| Argument | Type | Default | Description |
| --- | --- | --- | --- |
| `target` | `Object` | | The object to assign the property/value to |
| `name` | `String` | | The property name |
| `value` | `Object` |  | The value |

`<Ref />` allows component users use an author defined public API of a component. The component is renderless in that it yields nothing to the DOM.

The component takes a property name and value and sets it on the specified target, similar to the `{{ref this "name"}}` modifier.

Occasionally it's necessary call actions belonging to a component from outside the component. For example, you may have a form that needs submitting by clicking a button in another area of the
page. In order to do this, the button needs access to the `submit` action of the form component.

This can be thought of as providing the public API for the component, the author of the component has control over what the user of the component can and can't call in this way.

### Example

Here we provide a public API for a form component whilst authoring.

```hbs
{{! /components/form/index.hbs }}
<form onsubmit={{action "submit"}}>
  {{yield (hash
    focus=(action "focus")
    submit=(action "submit")
    cancel=(action "cancel")
  )}}
  ...
  <button type="submit">Submit</button>
</form>
```

The user of the component now has access to the public API of the ember/glimmer `<Form>` component, in the same way that using the `{{ref}}` modifier gives the user access to the public API of native DOM elements (for example `<input {{ref this 'input'}}/>` / `this.input.focus()`).

```hbs
{{! /templates/index.hbs}}
<Form as |api|>
  <Ref @target={{this}} @name="form" @value={{api}} />
</Form>
...
<button type="button" onclick={{action this.form.submit}}}></button>
```

### See

- [Component Source Code](./index.js)

---