70 lines
1.5 KiB
JavaScript
70 lines
1.5 KiB
JavaScript
import { inject as service } from '@ember/service';
|
|
import Component from '@ember/component';
|
|
import { get } from '@ember/object';
|
|
|
|
export default Component.extend({
|
|
classNames: 'config-pki',
|
|
flashMessages: service(),
|
|
|
|
/*
|
|
*
|
|
* @param String
|
|
* @public
|
|
* String corresponding to the route parameter for the current section
|
|
*
|
|
*/
|
|
|
|
section: null,
|
|
|
|
/*
|
|
* @param DS.Model
|
|
* @public
|
|
*
|
|
* a `pki-config` model - passed in in the component useage
|
|
*
|
|
*/
|
|
config: null,
|
|
|
|
/*
|
|
* @param Function
|
|
* @public
|
|
*
|
|
* function that gets called to refresh the config model
|
|
*
|
|
*/
|
|
onRefresh() {},
|
|
|
|
loading: false,
|
|
|
|
actions: {
|
|
save(section) {
|
|
this.set('loading', true);
|
|
const config = this.config;
|
|
config
|
|
.save({
|
|
adapterOptions: {
|
|
method: section,
|
|
fields: get(config, `${section}Attrs`).map((attr) => attr.name),
|
|
},
|
|
})
|
|
.then(() => {
|
|
this.flashMessages.success(`The ${section} config for this backend has been updated.`);
|
|
// attrs aren't persistent for Tidy
|
|
if (section === 'tidy') {
|
|
config.rollbackAttributes();
|
|
}
|
|
this.send('refresh');
|
|
})
|
|
.catch(() => {
|
|
// handle promise rejection - error will be shown by message-error component
|
|
})
|
|
.finally(() => {
|
|
this.set('loading', false);
|
|
});
|
|
},
|
|
refresh() {
|
|
this.onRefresh();
|
|
},
|
|
},
|
|
});
|