open-consul/ui-v2/app/components/copy-button
John Cowen 1ddffb4162 ui: Renames CopyButtonFeedback to CopyButton and use it everywhere (#7834)
* ui: Renames CopyButtonFeedback to CopyButton and use it everywhere

* Uncapitalize output

* Remove the ability to set the contents via an attr, and..

..change the attribute for the string that gets copied to be called
'value' so it feels like HTML
2020-05-12 17:14:56 +00:00
..
README.mdx ui: Renames CopyButtonFeedback to CopyButton and use it everywhere (#7834) 2020-05-12 17:14:56 +00:00
index.hbs ui: Renames CopyButtonFeedback to CopyButton and use it everywhere (#7834) 2020-05-12 17:14:56 +00:00
index.js ui: Renames CopyButtonFeedback to CopyButton and use it everywhere (#7834) 2020-05-12 17:14:56 +00:00

README.mdx

## CopyButton

```handlebars
{{! inline }}
<CopyButton
  @value={{stringToCopy}}
  @name="Thing"
/>

<CopyButton
  @value={{stringToCopy}}
  @name="Thing"
>
  Copy me!
</CopyButton>
```

### Arguments

| Argument | Type | Default | Description |
| --- | --- | --- | --- |
| `value` | `String` | | The string to be copied to the clipboard on click |
| `name` | `String` | | The 'Name' of the string to be copied. Mainly used for giving feedback to the user |

This component renders a simple button, when clicked copies the value (the `@value` attribute) to the users clipboard. A simple piece of feedback is given to the user in the form of a tooltip. When used inline an empty button is rendered.

### See

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

---