open-consul/ui/packages/consul-partitions/app/components/consul/partition/selector
John Cowen 3055c8918f
ui: PagedCollection component (#12404)
* ui: PagedCollection component

* ui: Use PagedCollection (#12436)

* ui: Integrate PagedCollection into DisclosureMenu

* Integrate PageCollection into DC, Nspace and Partition menus
2022-02-25 10:01:08 +00:00
..
README.mdx ui: Adds initial CRUD for partitions (#11188) 2021-10-08 16:29:30 +01:00
index.hbs ui: PagedCollection component (#12404) 2022-02-25 10:01:08 +00:00

README.mdx

# Consul::Partition::Selector

A conditional, autoloading, menu component specifically for making it easy to select partitions.

Please note: 

- Currently at least, you must add this inside of a `<ul>` element.
- For the moment, make sure you have enabled partitions using developer debug
  cookies.

```hbs preview-template
<ul>
  <Consul::Partition::Selector
    @dc={{hash
      Name='dc-1'
    }}
    @nspace='default'
    @partition='default'
    @partitions={{or this.partitions (array)}}
    @onchange={{action (mut this.partitions) value="data"}}
  />
</ul>
```


## Arguments

| Argument/Attribute | Type | Default | Description |
| --- | --- | --- | --- |
| `dc` | `object` |  | The current datacenter |
| `nspace` | `string` |  | The name of the current namespace |
| `partition` | `string` |  | The name of the current partition |
| `partitions` | `array` |  | A list of partition models/objects to use for the selector |
| `onchange` | `function` |  | An event handler, for when partitions are loaded. You probably want to update `@partitions` using this. |

## See

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

---