diff --git a/conversejs/custom/plugins/tasks/muc-task-list-view.js b/conversejs/custom/plugins/tasks/muc-task-list-view.js index 745640fe..a43de75e 100644 --- a/conversejs/custom/plugins/tasks/muc-task-list-view.js +++ b/conversejs/custom/plugins/tasks/muc-task-list-view.js @@ -8,13 +8,15 @@ export default class MUCTaskListView extends CustomElement { return { model: { type: Object, attribute: true }, collapsed: { type: Boolean, attribute: false }, - edit: { type: Boolean, attribute: false } + edit: { type: Boolean, attribute: false }, + add_task_form_opened: { type: Boolean, attribute: false } } } async initialize () { this.collapsed = false this.edit = false + this.add_task_form_opened = false if (!this.model) { return } @@ -82,7 +84,7 @@ export default class MUCTaskListView extends CustomElement { this.edit = !this.edit if (this.edit) { await this.updateComplete - const input = this.querySelector('input[name="name"]') + const input = this.querySelector('.task-list-name input[name="name"]') if (input) { input.focus() // Placing cursor at the end: @@ -91,6 +93,46 @@ export default class MUCTaskListView extends CustomElement { } } } + + async openAddTaskForm () { + this.add_task_form_opened = true + await this.updateComplete + const input = this.querySelector('.task-list-add-task input[name="name"]') + if (input) { + input.focus() + } + } + + closeAddTaskForm () { + this.add_task_form_opened = false + } + + async submitAddTask (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') + }) + + await this.model.createTask({ + name + }) + + this.closeAddTaskForm() + } catch (err) { + console.error(err) + } finally { + this.querySelectorAll('input[type=submit]').forEach(el => { + el.removeAttribute('disabled') + el.classList.remove('disabled') + }) + } + } } api.elements.define('livechat-converse-muc-task-list', MUCTaskListView) diff --git a/conversejs/custom/plugins/tasks/muc-task-view.js b/conversejs/custom/plugins/tasks/muc-task-view.js index c8ad8fc7..e336366f 100644 --- a/conversejs/custom/plugins/tasks/muc-task-view.js +++ b/conversejs/custom/plugins/tasks/muc-task-view.js @@ -1,6 +1,6 @@ import { CustomElement } from 'shared/components/element.js' import { api } from '@converse/headless/core' -import tplMucTask from './templates/muc-task' +import { tplMucTask } from './templates/muc-task' export default class MUCTaskView extends CustomElement { static get properties () { diff --git a/conversejs/custom/plugins/tasks/styles/muc-task-lists.scss b/conversejs/custom/plugins/tasks/styles/muc-task-lists.scss index 73833b9d..74f549d7 100644 --- a/conversejs/custom/plugins/tasks/styles/muc-task-lists.scss +++ b/conversejs/custom/plugins/tasks/styles/muc-task-lists.scss @@ -16,12 +16,25 @@ column-gap: 0.25em; width: 100%; - button { + .task-list-toggle-tasks, + .task-list-action { border: 0; + padding-left: 0.25em; + padding-right: 0.25em; } .task-list-name { flex-grow: 2; + + form { + display: flex; + flex-flow: row nowrap; + column-gap: 0.25em; + + input[type="text"] { + flex-grow: 2; + } + } } } @@ -29,5 +42,10 @@ padding-left: 2em; width: 100%; } + + .task-list-add-task { + padding: 0.25em 0.25em 0.25em 2em; + width: 100%; + } } } diff --git a/conversejs/custom/plugins/tasks/task-list.js b/conversejs/custom/plugins/tasks/task-list.js index 4ff72f4e..6b19829e 100644 --- a/conversejs/custom/plugins/tasks/task-list.js +++ b/conversejs/custom/plugins/tasks/task-list.js @@ -23,7 +23,27 @@ class ChatRoomTaskList extends Model { } async deleteItem () { - return this.collection.chatroom.taskManager.deleteItem(this) + const tasks = this.getTasks() + return this.collection.chatroom.taskManager.deleteItems([...tasks, this]) + } + + async createTask (data) { + // Cloning data to avoid side effects: + data = Object.assign({}, data) + + const name = data?.name + if (!name) { throw new Error('Missing name') } + + data.list = this.get('id') + if (!data.order) { + data.order = 1 + Math.max(...this.getTasks().map(t => t.get('order') ?? 0)) + } + + console.log('Creating task ' + name + '...') + const chatroom = this.collection.chatroom + const tasksCollection = chatroom.tasks + await chatroom.taskManager.createItem(tasksCollection, data) + console.log('Task list ' + name + ' created.') } } diff --git a/conversejs/custom/plugins/tasks/templates/muc-task-list.js b/conversejs/custom/plugins/tasks/templates/muc-task-list.js index ae06217f..06790dfa 100644 --- a/conversejs/custom/plugins/tasks/templates/muc-task-list.js +++ b/conversejs/custom/plugins/tasks/templates/muc-task-list.js @@ -1,23 +1,28 @@ import { html } from 'lit' import { repeat } from 'lit/directives/repeat.js' import { __ } from 'i18n' +import { tplMucAddTaskForm } from './muc-task' export default function tplMucTaskList (el, tasklist) { const tasks = tasklist.getTasks() // eslint-disable-next-line no-undef const i18nDelete = __(LOC_task_list_delete) + // eslint-disable-next-line no-undef + const i18nCreateTask = __(LOC_task_create) + // eslint-disable-next-line no-undef + const i18nTaskListName = __(LOC_task_list_name) return html`