163 lines
4.8 KiB
PHP
163 lines
4.8 KiB
PHP
<?php
|
|
|
|
namespace Modules\PMS\Http\Controllers;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Illuminate\Http\Request;
|
|
use Modules\Employee\Repositories\EmployeeInterface;
|
|
use Modules\PMS\Models\Task;
|
|
use Modules\PMS\Repositories\ProjectInterface;
|
|
use Modules\PMS\Repositories\TaskInterface;
|
|
|
|
class TaskController extends Controller
|
|
{
|
|
private $taskRepository;
|
|
private $projectRepository;
|
|
private $employeeRepository;
|
|
|
|
public function __construct(
|
|
TaskInterface $taskRepository,
|
|
ProjectInterface $projectRepository,
|
|
EmployeeInterface $employeeRepository) {
|
|
$this->taskRepository = $taskRepository;
|
|
$this->projectRepository = $projectRepository;
|
|
$this->employeeRepository = $employeeRepository;
|
|
|
|
}
|
|
/**
|
|
* Display a listing of the resource.
|
|
*/
|
|
public function index(Request $request)
|
|
{
|
|
$filters = $request->all();
|
|
$data['title'] = 'Task List';
|
|
$data['tasks'] = $this->taskRepository->findAll($filters);
|
|
$data['statusList'] = Task::STATUS;
|
|
|
|
// dd($data['tasks']->toArray());
|
|
|
|
return view('pms::task.index', $data);
|
|
}
|
|
|
|
/**
|
|
* Show the form for creating a new resource.
|
|
*/
|
|
public function create()
|
|
{
|
|
$data['title'] = 'Create Task';
|
|
$data['status'] = Task::STATUS;
|
|
$data['priority'] = Task::PRIORITY;
|
|
$data['categoryList'] = Task::CATEGORY;
|
|
$data['projectList'] = $this->projectRepository->pluck();
|
|
$data['memberList'] = $this->employeeRepository->pluck();
|
|
|
|
return view('pms::task.create', $data);
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*/
|
|
public function store(Request $request): RedirectResponse
|
|
{
|
|
$inputData = $request->all();
|
|
try {
|
|
$this->taskRepository->create($inputData);
|
|
foreach($request->assigned_id as $memberId) {
|
|
$employeemodel=$this->employeeRepository->getEmployeeById($memberId);
|
|
// dd($employeemodel->user);
|
|
sendNotification($employeemodel->user, [
|
|
'msg' => 'A Task has been assigned to you', ]);
|
|
}
|
|
toastr()->success('Task Created Succesfully');
|
|
} catch (\Throwable $th) {
|
|
toastr()->error($th->getMessage());
|
|
}
|
|
return redirect()->route('task.index');
|
|
}
|
|
|
|
/**
|
|
* Show the specified resource.
|
|
*/
|
|
public function show($id)
|
|
{
|
|
$data['title'] = 'View Task';
|
|
$data['task'] = $this->taskRepository->getTaskById($id);
|
|
$data['status'] = Task::STATUS;
|
|
return view('pms::task.show', $data);
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*/
|
|
public function edit($id)
|
|
{
|
|
$data['title'] = 'Edit Task';
|
|
$data['task'] = $this->taskRepository->getTaskById($id);
|
|
$data['status'] = Task::STATUS;
|
|
$data['priority'] = Task::PRIORITY;
|
|
$data['categoryList'] = Task::CATEGORY;
|
|
$data['projectList'] = $this->projectRepository->pluck();
|
|
$data['memberList'] = $this->employeeRepository->pluck();
|
|
return view('pms::task.edit', $data);
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*/
|
|
public function update(Request $request, $id): RedirectResponse
|
|
{
|
|
$inputData = $request->except(['_method', '_token']);
|
|
try {
|
|
$this->taskRepository->update($id, $inputData);
|
|
toastr()->success('Task Update Succesfully');
|
|
} catch (\Throwable $th) {
|
|
toastr()->error($th->getMessage());
|
|
}
|
|
return redirect()->route('task.index');
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*/
|
|
public function destroy($id)
|
|
{
|
|
try {
|
|
$this->taskRepository->delete($id);
|
|
toastr()->success('Task Deleted Succesfully');
|
|
} catch (\Throwable $th) {
|
|
//throw $th;
|
|
toastr()->error($th->getMessage());
|
|
|
|
}
|
|
}
|
|
|
|
public function kanban()
|
|
{
|
|
$data['title'] = 'Kanban Board';
|
|
$data['tasks'] = Task::select('*')->get()->groupBy('status');
|
|
$data['statusList'] = Task::STATUS;
|
|
|
|
return view('pms::task.kanban', $data);
|
|
}
|
|
|
|
public function changeStatus(Request $request)
|
|
{
|
|
try {
|
|
$taskModel = $this->taskRepository->getTaskById($request->id);
|
|
$taskModel->status = $request->changeStatus;
|
|
$taskModel->save();
|
|
return response()->json([
|
|
'status' => true,
|
|
'msg' => 'Status Changed',
|
|
], 200);
|
|
} catch (\Throwable $th) {
|
|
return response()->json([
|
|
'status' => false,
|
|
'msg' => $th->getMessage(),
|
|
], 400);
|
|
|
|
}
|
|
}
|
|
}
|