From 31f3de9646e4e54db431be6a6751e931be43d995 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Wed, 1 Jul 2015 18:28:32 -0400 Subject: Add global search section --- app/Controller/Search.php | 51 +++++++++++++++++++++++++++++++++++ app/Model/Color.php | 2 +- app/Model/TaskFilter.php | 1 - app/Model/TaskFinder.php | 22 +++++++++------ app/Template/app/layout.php | 29 ++++++++++++++++---- app/Template/app/projects.php | 2 +- app/Template/app/subtasks.php | 2 +- app/Template/app/tasks.php | 2 +- app/Template/search/index.php | 26 ++++++++++++++++++ app/Template/search/results.php | 60 +++++++++++++++++++++++++++++++++++++++++ assets/css/app.css | 6 +---- assets/css/src/dashboard.css | 4 --- assets/css/src/form.css | 2 +- tests/units/TaskFilterTest.php | 5 ++++ 14 files changed, 186 insertions(+), 28 deletions(-) create mode 100644 app/Controller/Search.php create mode 100644 app/Template/search/index.php create mode 100644 app/Template/search/results.php diff --git a/app/Controller/Search.php b/app/Controller/Search.php new file mode 100644 index 00000000..519f9ce4 --- /dev/null +++ b/app/Controller/Search.php @@ -0,0 +1,51 @@ +projectPermission->getAllowedProjects($this->userSession->getId()); + $search = $this->request->getStringParam('search'); + $nb_tasks = 0; + + $paginator = $this->paginator + ->setUrl('search', 'index', array('search' => $search)) + ->setMax(30) + ->setOrder('tasks.id') + ->setDirection('DESC'); + + if ($search !== '') { + + $query = $this + ->taskFilter + ->search($search) + ->filterByProjects(array_keys($projects)) + ->getQuery(); + + $paginator + ->setQuery($query) + ->calculate(); + + $nb_tasks = $paginator->getTotal(); + } + + $this->response->html($this->template->layout('search/index', array( + 'board_selector' => $projects, + 'values' => array( + 'search' => $search, + 'controller' => 'search', + 'action' => 'index', + ), + 'paginator' => $paginator, + 'title' => t('Search tasks').($nb_tasks > 0 ? ' ('.$nb_tasks.')' : '') + ))); + } +} diff --git a/app/Model/Color.php b/app/Model/Color.php index a35aff8f..1fd81b85 100644 --- a/app/Model/Color.php +++ b/app/Model/Color.php @@ -193,11 +193,11 @@ class Color extends Base $buffer = ''; foreach ($this->default_colors as $color => $values) { - $buffer .= 'td.color-'.$color.','; $buffer .= 'div.color-'.$color.' {'; $buffer .= 'background-color: '.$values['background'].';'; $buffer .= 'border-color: '.$values['border']; $buffer .= '}'; + $buffer .= 'td.color-'.$color.' { background-color: '.$values['background'].'}'; } return $buffer; diff --git a/app/Model/TaskFilter.php b/app/Model/TaskFilter.php index b14dad0a..4a086078 100644 --- a/app/Model/TaskFilter.php +++ b/app/Model/TaskFilter.php @@ -214,7 +214,6 @@ class TaskFilter extends Base */ public function filterByCategoryName(array $values) { - $this->query->join(Category::TABLE, 'id', 'category_id'); $this->query->beginOr(); foreach ($values as $category) { diff --git a/app/Model/TaskFinder.php b/app/Model/TaskFinder.php index e007187f..181ff360 100644 --- a/app/Model/TaskFinder.php +++ b/app/Model/TaskFinder.php @@ -97,10 +97,16 @@ class TaskFinder extends Base 'tasks.recurrence_parent', 'tasks.recurrence_child', 'tasks.time_estimated', - 'users.username AS assignee_username', - 'users.name AS assignee_name' + User::TABLE.'.username AS assignee_username', + User::TABLE.'.name AS assignee_name', + Category::TABLE.'.name AS category_name', + Board::TABLE.'.title AS column_name', + Project::TABLE.'.name AS project_name' ) - ->join(User::TABLE, 'id', 'owner_id'); + ->join(User::TABLE, 'id', 'owner_id', Task::TABLE) + ->join(Category::TABLE, 'id', 'category_id', Task::TABLE) + ->join(Board::TABLE, 'id', 'column_id', Task::TABLE) + ->join(Project::TABLE, 'id', 'project_id', Task::TABLE); } /** @@ -115,11 +121,11 @@ class TaskFinder extends Base public function getTasksByColumnAndSwimlane($project_id, $column_id, $swimlane_id = 0) { return $this->getExtendedQuery() - ->eq('project_id', $project_id) - ->eq('column_id', $column_id) - ->eq('swimlane_id', $swimlane_id) - ->eq('is_active', Task::STATUS_OPEN) - ->asc('tasks.position') + ->eq(Task::TABLE.'.project_id', $project_id) + ->eq(Task::TABLE.'.column_id', $column_id) + ->eq(Task::TABLE.'.swimlane_id', $swimlane_id) + ->eq(Task::TABLE.'.is_active', Task::STATUS_OPEN) + ->asc(Task::TABLE.'.position') ->findAll(); } diff --git a/app/Template/app/layout.php b/app/Template/app/layout.php index d2d63f25..4a307a19 100644 --- a/app/Template/app/layout.php +++ b/app/Template/app/layout.php @@ -2,13 +2,32 @@ diff --git a/app/Template/app/projects.php b/app/Template/app/projects.php index 22e0cc47..61839cee 100644 --- a/app/Template/app/projects.php +++ b/app/Template/app/projects.php @@ -4,7 +4,7 @@ isEmpty()): ?>

- +
diff --git a/app/Template/app/subtasks.php b/app/Template/app/subtasks.php index 67f2d04f..ad7402bd 100644 --- a/app/Template/app/subtasks.php +++ b/app/Template/app/subtasks.php @@ -4,7 +4,7 @@ isEmpty()): ?>

-
order('Id', 'id') ?> order(t('Project'), 'name') ?>
+
diff --git a/app/Template/app/tasks.php b/app/Template/app/tasks.php index 8e7fe74a..3712750b 100644 --- a/app/Template/app/tasks.php +++ b/app/Template/app/tasks.php @@ -4,7 +4,7 @@ isEmpty()): ?>

-
order('Id', 'tasks.id') ?> order(t('Project'), 'project_name') ?>
+
diff --git a/app/Template/search/index.php b/app/Template/search/index.php new file mode 100644 index 00000000..058f428d --- /dev/null +++ b/app/Template/search/index.php @@ -0,0 +1,26 @@ +
+ + +
+ form->hidden('controller', $values) ?> + form->hidden('action', $values) ?> + form->text('search', $values, array(), array('autofocus', 'required', 'placeholder="'.t('Search').'"'), 'form-input-large') ?> + + + + isEmpty()): ?> +

+ isEmpty()): ?> + render('search/results', array( + 'paginator' => $paginator, + )) ?> + + +
\ No newline at end of file diff --git a/app/Template/search/results.php b/app/Template/search/results.php new file mode 100644 index 00000000..1d8cc6e2 --- /dev/null +++ b/app/Template/search/results.php @@ -0,0 +1,60 @@ +
order('Id', 'tasks.id') ?> order(t('Project'), 'project_name') ?>
+ + + + + + + + + + + + + getCollection() as $task): ?> + + + + + + + + + + + + + +
order(t('Project'), 'tasks.project_id') ?>order(t('Id'), 'tasks.id') ?>order(t('Column'), 'tasks.column_id') ?>order(t('Category'), 'tasks.category_id') ?>order(t('Title'), 'tasks.title') ?>order(t('Assignee'), 'users.username') ?>order(t('Due date'), 'tasks.date_due') ?>order(t('Date created'), 'tasks.date_creation') ?>order(t('Date completed'), 'tasks.date_completed') ?>order(t('Status'), 'tasks.is_active') ?>
+ url->link($this->e($task['project_name']), 'board', 'show', array('project_id' => $task['project_id'])) ?> + + url->link('#'.$this->e($task['id']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?> + + e($task['column_name']) ?> + + e($task['category_name']) ?> + + url->link($this->e($task['title']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?> + + + e($task['assignee_name'] ?: $task['assignee_username']) ?> + + + + + + + + + + + + + + + + + +
+ + diff --git a/assets/css/app.css b/assets/css/app.css index 03f95c6b..0e546b9f 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -347,7 +347,7 @@ input.form-date { } input.form-input-large { - width: 400px; + width: 450px; } .form-row { @@ -1404,10 +1404,6 @@ span.task-board-date-overdue { .dashboard-table-link:hover { color: #999; } - -#dashboard .sidebar-content { - font-size: 0.9em; -} /* datepicker */ #ui-datepicker-div { font-size: 0.8em; diff --git a/assets/css/src/dashboard.css b/assets/css/src/dashboard.css index 5fd79703..4cd4d4d9 100644 --- a/assets/css/src/dashboard.css +++ b/assets/css/src/dashboard.css @@ -19,7 +19,3 @@ .dashboard-table-link:hover { color: #999; } - -#dashboard .sidebar-content { - font-size: 0.9em; -} diff --git a/assets/css/src/form.css b/assets/css/src/form.css index 1c1b8ed2..903bd24e 100644 --- a/assets/css/src/form.css +++ b/assets/css/src/form.css @@ -142,7 +142,7 @@ input.form-date { } input.form-input-large { - width: 400px; + width: 450px; } .form-row { diff --git a/tests/units/TaskFilterTest.php b/tests/units/TaskFilterTest.php index cec30394..33e1792e 100644 --- a/tests/units/TaskFilterTest.php +++ b/tests/units/TaskFilterTest.php @@ -94,25 +94,30 @@ class TaskFilterTest extends Base $this->assertNotEmpty($tasks); $this->assertCount(1, $tasks); $this->assertEquals('task2', $tasks[0]['title']); + $this->assertEquals('Feature request', $tasks[0]['category_name']); $tf->search('category:"hé hé"'); $tasks = $tf->findAll(); $this->assertNotEmpty($tasks); $this->assertCount(1, $tasks); $this->assertEquals('task3', $tasks[0]['title']); + $this->assertEquals('hé hé', $tasks[0]['category_name']); $tf->search('category:"Feature request" category:"hé hé"'); $tasks = $tf->findAll(); $this->assertNotEmpty($tasks); $this->assertCount(2, $tasks); $this->assertEquals('task2', $tasks[0]['title']); + $this->assertEquals('Feature request', $tasks[0]['category_name']); $this->assertEquals('task3', $tasks[1]['title']); + $this->assertEquals('hé hé', $tasks[1]['category_name']); $tf->search('category:none'); $tasks = $tf->findAll(); $this->assertNotEmpty($tasks); $this->assertCount(1, $tasks); $this->assertEquals('task1', $tasks[0]['title']); + $this->assertEquals('', $tasks[0]['category_name']); $tf->search('category:"not found"'); $tasks = $tf->findAll(); -- cgit v1.2.3