2024-05-23 09:42:14 +00:00
|
|
|
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2024-04-30 16:30:44 +00:00
|
|
|
import { CustomElement } from 'shared/components/element.js'
|
|
|
|
import { api } from '@converse/headless/core'
|
2024-05-11 15:37:20 +00:00
|
|
|
import { tplMucTask } from '../templates/muc-task'
|
2024-05-06 15:26:20 +00:00
|
|
|
import { __ } from 'i18n'
|
|
|
|
|
2024-05-11 15:37:20 +00:00
|
|
|
import '../styles/muc-tasks.scss'
|
2024-04-30 16:30:44 +00:00
|
|
|
|
|
|
|
export default class MUCTaskView extends CustomElement {
|
|
|
|
static get properties () {
|
|
|
|
return {
|
2024-05-06 15:26:20 +00:00
|
|
|
model: { type: Object, attribute: true },
|
|
|
|
edit: { type: Boolean, attribute: false }
|
2024-04-30 16:30:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async initialize () {
|
2024-05-06 15:26:20 +00:00
|
|
|
this.edit = false
|
2024-04-30 16:30:44 +00:00
|
|
|
if (!this.model) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this.listenTo(this.model, 'change', () => this.requestUpdate())
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2024-05-06 15:26:20 +00:00
|
|
|
return tplMucTask(this, this.model)
|
|
|
|
}
|
|
|
|
|
2024-05-09 13:05:15 +00:00
|
|
|
shouldUpdate (changedProperties) {
|
|
|
|
if (!super.shouldUpdate(...arguments)) { return false }
|
|
|
|
// When a task is currently edited, and another users change the order,
|
|
|
|
// it could refresh losing the current form.
|
|
|
|
// To avoid this, we cancel update here.
|
|
|
|
// Note: of course, if 'edit' is part of the edited properties, we must update anyway
|
|
|
|
// (it means we just leaved the form)
|
|
|
|
if (this.edit && !changedProperties.has('edit')) {
|
|
|
|
console.info('Canceling an update on task, because it is currently edited', this)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// FIXME: in some case this is not enough. Can't understand exactly why for now.
|
|
|
|
// probably because of some of the requestUpdate on the task-list or task-lists.
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2024-05-06 15:26:20 +00:00
|
|
|
async saveTask (ev) {
|
|
|
|
ev?.preventDefault?.()
|
|
|
|
|
|
|
|
const name = ev.target.name.value.trim()
|
|
|
|
|
|
|
|
if ((name ?? '') === '') { return }
|
|
|
|
|
|
|
|
try {
|
|
|
|
this.querySelectorAll('input[type=submit]').forEach(el => {
|
|
|
|
el.setAttribute('disabled', true)
|
|
|
|
el.classList.add('disabled')
|
|
|
|
})
|
|
|
|
|
|
|
|
const task = this.model
|
|
|
|
task.set('name', name)
|
|
|
|
task.set('description', ev.target.description.value.trim())
|
|
|
|
await task.saveItem()
|
|
|
|
|
|
|
|
this.edit = false
|
2024-05-09 13:05:15 +00:00
|
|
|
this.requestUpdate() // In case we cancel another update in shouldUpdate
|
2024-05-06 15:26:20 +00:00
|
|
|
} catch (err) {
|
|
|
|
console.error(err)
|
|
|
|
} finally {
|
|
|
|
this.querySelectorAll('input[type=submit]').forEach(el => {
|
|
|
|
el.removeAttribute('disabled')
|
|
|
|
el.classList.remove('disabled')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async deleteTask (ev) {
|
|
|
|
ev?.preventDefault?.()
|
|
|
|
|
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
const i18nConfirmDelete = __(LOC_task_delete_confirm)
|
|
|
|
|
2024-05-11 15:37:20 +00:00
|
|
|
const result = await api.confirm(i18nConfirmDelete)
|
2024-05-06 15:26:20 +00:00
|
|
|
if (!result) { return }
|
|
|
|
|
|
|
|
try {
|
|
|
|
await this.model.deleteItem()
|
|
|
|
} catch (err) {
|
|
|
|
api.alert(
|
|
|
|
'error', __('Error'), [__('Error')]
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async toggleEdit () {
|
|
|
|
this.edit = !this.edit
|
|
|
|
if (this.edit) {
|
|
|
|
await this.updateComplete
|
|
|
|
const input = this.querySelector('.task-name input[name="name"]')
|
|
|
|
if (input) {
|
|
|
|
input.focus()
|
|
|
|
// Placing cursor at the end:
|
|
|
|
input.selectionStart = input.value.length
|
|
|
|
input.selectionEnd = input.selectionStart
|
|
|
|
}
|
|
|
|
}
|
2024-04-30 16:30:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
api.elements.define('livechat-converse-muc-task', MUCTaskView)
|