2023-03-15 16:00:52 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2021-05-24 16:45:35 +00:00
|
|
|
import Component from '@glimmer/component';
|
|
|
|
import { action } from '@ember/object';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @module ToolRewrap
|
|
|
|
* ToolRewrap components are components that sys/wrapping/rewrap functionality. Most of the functionality is passed through as actions from the tool-actions-form and then called back with properties.
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* ```js
|
|
|
|
* <ToolRewrap
|
|
|
|
* @onClear={{action "onClear"}}
|
|
|
|
* @token={{token}}
|
|
|
|
* @rewrap_token={{rewrap_token}}
|
|
|
|
* @selectedAction={{selectedAction}}
|
|
|
|
* @bytes={{bytes}}
|
|
|
|
* @errors={{errors}}/>
|
|
|
|
* ```
|
|
|
|
* @param onClear {Function} - parent action that is passed through. Must be passed as {{action "onClear"}}
|
|
|
|
* @param token=null {String} - property passed from parent to child and then passed back up to parent
|
|
|
|
* @param rewrap_token {String} - property returned from parent.
|
|
|
|
* @param selectedAction {String} - property returned from parent.
|
|
|
|
* @param bytes {String} - property returned from parent.
|
|
|
|
* @param error=null {Object} - errors passed from parent as default then from child back to parent.
|
|
|
|
*/
|
|
|
|
|
|
|
|
export default class ToolRewrap extends Component {
|
|
|
|
@action
|
|
|
|
onClear() {
|
|
|
|
this.args.onClear();
|
|
|
|
}
|
|
|
|
}
|