Files
Fleetbase-Mirror-Repo/console/app/components/configure/filesystem.js
2023-10-10 20:43:18 +08:00

86 lines
2.2 KiB
JavaScript

import Component from '@glimmer/component';
import { inject as service } from '@ember/service';
import { tracked } from '@glimmer/tracking';
import { action } from '@ember/object';
export default class ConfigureFilesystemComponent extends Component {
@service fetch;
@service notifications;
@tracked isLoading = false;
@tracked testResponse;
@tracked disks = [];
@tracked driver = 'local';
@tracked s3Bucket = null;
@tracked s3Url = null;
@tracked s3Endpoint = null;
/**
* Creates an instance of ConfigureFilesystemComponent.
* @memberof ConfigureFilesystemComponent
*/
constructor() {
super(...arguments);
this.loadConfigValues();
}
@action setConfigValues(config) {
for (const key in config) {
if (this[key] !== undefined) {
this[key] = config[key];
}
}
}
@action setDriver(driver) {
this.driver = driver;
}
@action loadConfigValues() {
this.isLoading = true;
this.fetch
.get('settings/filesystem-config')
.then((response) => {
this.setConfigValues(response);
})
.finally(() => {
this.isLoading = false;
});
}
@action save() {
this.isLoading = true;
this.fetch
.post('settings/filesystem-config', {
driver: this.driver,
s3: {
bucket: this.s3Bucket,
url: this.s3Url,
endpoint: this.s3Endpoint,
},
})
.then(() => {
this.notifications.success('Filesystem configuration saved.');
})
.finally(() => {
this.isLoading = false;
});
}
@action test() {
this.isLoading = true;
this.fetch
.post('settings/test-filesystem-config', {
disk: this.driver,
})
.then((response) => {
this.testResponse = response;
})
.finally(() => {
this.isLoading = false;
});
}
}