You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
915 B
51 lines
915 B
const {fileApi} = require("../../../../../rpdata/api/File")
|
|
|
|
module.exports = class {
|
|
onCreate(input) {
|
|
this.state = {
|
|
error: null,
|
|
loading: false,
|
|
values: {
|
|
id: "",
|
|
}
|
|
}
|
|
}
|
|
|
|
onInput(input) {
|
|
this.state.values = {
|
|
id: input.file.id,
|
|
}
|
|
}
|
|
|
|
change(key, ev) {
|
|
this.state.values = Object.assign({}, this.state.values, {[key]: ev.target.value})
|
|
}
|
|
|
|
open() {
|
|
|
|
}
|
|
|
|
close() {
|
|
this.emit("close")
|
|
}
|
|
|
|
doIt() {
|
|
if (this.state.loading) {
|
|
return
|
|
}
|
|
|
|
const input = Object.assign({}, this.state.values)
|
|
|
|
this.state.loading = true
|
|
fileApi.removeFile(input).then((res) => {
|
|
this.emit("removed", res)
|
|
this.emit("close")
|
|
}).catch(errs => {
|
|
console.warn("Failed to add:", errs)
|
|
|
|
this.state.error = "Failed to add: " + JSON.stringify(errs)
|
|
}).then(() => {
|
|
this.state.loading = false
|
|
})
|
|
}
|
|
}
|