76 lines
2 KiB
JavaScript
76 lines
2 KiB
JavaScript
import Ember from 'ember';
|
|
|
|
const { inject, computed } = Ember;
|
|
|
|
export default Ember.Component.extend({
|
|
wizard: inject.service(),
|
|
version: inject.service(),
|
|
init() {
|
|
this._super(...arguments);
|
|
this.maybeHideFeatures();
|
|
},
|
|
|
|
maybeHideFeatures() {
|
|
if (this.get('showReplication') === false) {
|
|
let feature = this.get('allFeatures').findBy('key', 'replication');
|
|
feature.show = false;
|
|
}
|
|
},
|
|
|
|
allFeatures: computed(function() {
|
|
return [
|
|
{
|
|
key: 'secrets',
|
|
name: 'Secrets',
|
|
steps: ['Enabling a secrets engine', 'Adding a secret'],
|
|
selected: false,
|
|
show: true,
|
|
},
|
|
{
|
|
key: 'authentication',
|
|
name: 'Authentication',
|
|
steps: ['Enabling an auth method', 'Managing your auth method'],
|
|
selected: false,
|
|
show: true,
|
|
},
|
|
{
|
|
key: 'policies',
|
|
name: 'Policies',
|
|
steps: ['Choosing a policy type', 'Creating a policy', 'Deleting your policy', 'Other types of policies'],
|
|
selected: false,
|
|
show: true,
|
|
},
|
|
{
|
|
key: 'replication',
|
|
name: 'Replication',
|
|
steps: ['Setting up replication', 'Your cluster information'],
|
|
selected: false,
|
|
show: true,
|
|
},
|
|
{
|
|
key: 'tools',
|
|
name: 'Tools',
|
|
steps: ['Wrapping data', 'Lookup wrapped data', 'Rewrapping your data', 'Unwrapping your data'],
|
|
selected: false,
|
|
show: true,
|
|
},
|
|
];
|
|
}),
|
|
|
|
showReplication: computed('version.hasPerfReplication', 'version.hasDRReplication', function() {
|
|
return this.get('version.hasPerfReplication') || this.get('version.hasDRReplication');
|
|
}),
|
|
|
|
selectedFeatures: computed('allFeatures.@each.selected', function() {
|
|
return this.get('allFeatures').filterBy('selected').mapBy('key');
|
|
}),
|
|
|
|
actions: {
|
|
saveFeatures() {
|
|
let wizard = this.get('wizard');
|
|
wizard.saveFeatures(this.get('selectedFeatures'));
|
|
wizard.transitionTutorialMachine('active.select', 'CONTINUE');
|
|
},
|
|
},
|
|
});
|