summaryrefslogtreecommitdiff
path: root/app/Controller/SubtaskStatus.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-02-05 18:30:16 -0500
committerFrederic Guillot <fred@kanboard.net>2016-02-05 18:30:16 -0500
commit4e07ad6555bee33c6e48992f8f8e56706aff7c58 (patch)
tree1921c1c080133a6c9bd67119b282d3dbd313e4b2 /app/Controller/SubtaskStatus.php
parent9c15658089ec5bd3914b91c7a59fdb522e837b70 (diff)
Improve subtask toggle status and timer
Diffstat (limited to 'app/Controller/SubtaskStatus.php')
-rw-r--r--app/Controller/SubtaskStatus.php47
1 files changed, 45 insertions, 2 deletions
diff --git a/app/Controller/SubtaskStatus.php b/app/Controller/SubtaskStatus.php
index efe8a974..ef0ec081 100644
--- a/app/Controller/SubtaskStatus.php
+++ b/app/Controller/SubtaskStatus.php
@@ -21,8 +21,51 @@ class SubtaskStatus extends Base
$subtask = $this->getSubtask();
$status = $this->subtask->toggleStatus($subtask['id']);
- $subtask['status'] = $status;
- $this->response->html($this->helper->subtask->toggleStatus($subtask, $task['project_id']));
+ if ($this->request->getIntegerParam('refresh-table') === 0) {
+ $subtask['status'] = $status;
+ $html = $this->helper->subtask->toggleStatus($subtask, $task['project_id']);
+ } else {
+ $html = $this->renderTable($task);
+ }
+
+ $this->response->html($html);
+ }
+
+ /**
+ * Start/stop timer for subtasks
+ *
+ * @access public
+ */
+ public function timer()
+ {
+ $task = $this->getTask();
+ $subtask_id = $this->request->getIntegerParam('subtask_id');
+ $timer = $this->request->getStringParam('timer');
+
+ if ($timer === 'start') {
+ $this->subtaskTimeTracking->logStartTime($subtask_id, $this->userSession->getId());
+ } elseif ($timer === 'stop') {
+ $this->subtaskTimeTracking->logEndTime($subtask_id, $this->userSession->getId());
+ $this->subtaskTimeTracking->updateTaskTimeTracking($task['id']);
+ }
+
+ $this->response->html($this->renderTable($task));
+ }
+
+ /**
+ * Render table
+ *
+ * @access private
+ * @param array $task
+ * @return string
+ */
+ private function renderTable(array $task)
+ {
+ return $this->template->render('subtask/table', array(
+ 'task' => $task,
+ 'subtasks' => $this->subtask->getAll($task['id']),
+ 'editable' => true,
+ ));
}
}