258 lines
11 KiB
PHP
Raw Normal View History

2020-05-03 05:04:26 +01:00
@extends('adminlte::page')
@section('title', config('app.name') . ' | ' . __('Open vacancies'))
2020-05-03 05:04:26 +01:00
@section('content_header')
@if (Auth::user()->hasAnyRole('admin', 'hiringManager'))
<h4>{{__('Administration')}} / {{__('Open vacancies')}}</h4>
@else
<h4>{{__('Application access denied')}}</h4>
@endif
2020-05-03 05:04:26 +01:00
@stop
@section('js')
@if (session()->has('success'))
<script>
toastr.success("{{session('success')}}")
</script>
@elseif(session()->has('error'))
<script>
toastr.error("{{session('error')}}")
</script>
@endif
@if($errors->any())
@foreach ($errors->all() as $error)
<script>toastr.error('{{$error}}', '{{__('Validation error!')}}')</script>
@endforeach
@endif
@stop
2020-05-03 05:04:26 +01:00
@section('content')
@if (Auth::user()->hasAnyRole('admin', 'hiringManager'))
2020-07-11 20:34:26 +01:00
<!-- todo: switch to modal component -->
<div class="modal fade" tabindex="-1" id="newVacancyForm" role="dialog" aria-labelledby="modalFormLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modalFormLabel">{{__('New vacancy')}}</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
@if(!$forms->isEmpty())
<form id="savePositionForm" action="{{route('savePosition')}}" method="POST">
@csrf
<label for="vacancyName">{{__('Vacancy name')}}</label>
<input type="text" id="vacancyName" name="vacancyName" class="form-control">
<label for="vacancyDescription">{{__('Vacancy description')}}</label>
<input type="text" id="vacancyDescription" name="vacancyDescription" class="form-control">
<label for="vacancyFullDescription">{{__('Vacancy details')}}</label>
<textarea name="vacancyFullDescription" class="form-control" rel="txtTooltip" title="{{__('Add things like admission requirements, rank resposibilities and roles, and anything else you feel is necessary')}}" data-toggle="tooltip" data-placement="bottom"></textarea>
<span class="right text-muted"><i class="fab fa-markdown"></i> {{__('Markdown supported')}}</span>
<div class="row mt-3">
<div class="col">
<label for="discordrole">{{__('Discord Role ID(s) (optional)')}}</label>
<input rel="txtTooltip" title="{{__("Enter one or more comma-separated role IDs to be given to successful candidates")}}" data-toggle="tooltip" data-placement="bottom" type="text" id="discordrole" name="discordRole" class="form-control">
</div>
</div>
<div class="form-group mt-4">
<label for="associatedForm">{{__('Application form')}}</label>
<select class="custom-select" name="vacancyFormID" id="associatedForm">
<option disabled>{{__('Select a form...')}}</option>
@foreach($forms as $form)
<option value="{{$form->id}}">{{$form->formName}}</option>
@endforeach
</select>
<label for="vacancyCount">{{__('Free slots')}}</label>
<input rel="txtTooltip" title="{{__('The number of free slots decreases each time an applicant is approved for this vacancy.')}}" data-toggle="tooltip" data-placement="bottom" type="text" id="vacancyCount" name="vacancyCount" class="form-control">
<label for="requiredAge">{{__('Minimum age')}}</label>
<input rel="txtTooltip" title="{{__('How old must users be to apply for this vacancy?')}}" data-toggle="tooltip" data-placement="bottom" type="number" min="13" max="100" id="requiredAge" name="requiredAge" class="form-control">
<div class="form-check mt-4">
<input type="hidden" value="off" name="requireDiscordAccount">
<input class="form-check-input" type="checkbox" id="requireDiscordAccount" name="requireDiscordAccount">
<label class="text-bold form-check-label" for="requireDiscordAccount">
{{ __('Require a Discord account for users to apply') }}
</label>
</div>
</div>
</form>
@else
<div class="alert alert-danger">
<p>
{{__('You cannot create a vacancy without any forms with which people would apply.')}}
{{ __('Create a form first, then, create a vacancy.') }}
{{ __("A single form is allowed to have multiple vacancies, so you can attach future vacancies to the same form if you'd like.") }}
</p>
</div>
@endif
</div>
<div class="modal-footer">
@if(!$forms->isEmpty())
<button type="button" class="btn btn-primary" onclick="document.getElementById('savePositionForm').submit()">{{__('Add vacancy')}}</button>
@endif
<button type="button" class="btn btn-secondary" data-dismiss="modal">{{__('Close')}}</button>
</div>
</div>
</div>
</div>
2020-05-03 05:04:26 +01:00
<div class="row">
<div class="col-md-4 offset-md-4 text-center">
<div class="card">
<div class="card-body">
<button type="button" class="btn btn-primary" onclick="$('#newVacancyForm').modal('show')">{{__('NEW VACANCY')}}</button>
2020-05-03 05:04:26 +01:00
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="card bg-gray-dark">
<div class="card-header bg-indigo">
<div class="card-title"><h4 class="text-bold">{{__('Open vacancies')}}</h4></div>
2020-05-03 05:04:26 +01:00
</div>
<div class="card-body">
@if(!$vacancies->isEmpty())
2020-05-03 05:04:26 +01:00
<table class="table table-active table-borderless" style="white-space: nowrap">
<thead>
2020-05-03 05:04:26 +01:00
<tr>
<th>{{__('Name')}}</th>
<th>{{__('Description')}}</th>
<th>{{__('Free slots')}}</th>
<th>{{__('Status')}}</th>
<th>{{__('Created at')}}</th>
<th>{{__('Actions')}}</th>
2020-05-03 05:04:26 +01:00
</tr>
</thead>
2020-05-03 05:04:26 +01:00
<tbody>
2020-05-03 05:04:26 +01:00
@foreach($vacancies as $vacancy)
<tr>
<td>{{$vacancy->vacancyName}}</td>
<td>{{substr($vacancy->vacancyDescription, 0, 20)}}...</td>
<td>{{$vacancy->vacancyCount}}</td>
@if($vacancy->vacancyStatus == 'OPEN')
<td><span class="badge badge-success">{{__('Open')}}</span></td>
@else
<td><span class="badge badge-danger">{{__('Closed')}}</span></td>
@endif
<td>{{$vacancy->created_at}}</td>
<td>
2020-07-11 20:34:26 +01:00
2021-10-25 05:45:45 +01:00
<button type="button" class="btn btn-sm btn-success" onclick="window.location.href='{{ route('editPosition', ['vacancy' => $vacancy->id]) }}'"><i class="fas fa-edit"></i></button>
2020-07-11 20:34:26 +01:00
@if ($vacancy->vacancyStatus == 'OPEN')
<form action="{{route('updatePositionAvailability', ['status' => 'close', 'vacancy' => $vacancy->id])}}" method="POST" id="closePosition" style="display: inline">
@csrf
@method('PATCH')
2021-10-25 05:45:45 +01:00
<button type="submit" class="btn btn-sm btn-warning"><i class="fa fa-lock"></i></button>
</form>
@else
<form action="{{route('updatePositionAvailability', ['status' => 'open', 'vacancy' => $vacancy->id])}}" method="POST" id="openPosition" style="display: inline">
@csrf
@method('PATCH')
2021-10-25 05:45:45 +01:00
<button type="submit" class="btn btn-sm btn-warning"><i class="fa fa-unlock"></i></button>
</form>
@endif
2021-10-25 05:45:45 +01:00
<form action="{{route('deletePosition', ['vacancy' => $vacancy->id])}}" method="POST" id="{{ 'deleteVacancy' . $vacancy->id }}" style="display: inline">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-sm btn-danger" onclick="$('#deleteVacancyModal').modal('show')"><i class="fa fa-trash"></i></button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
2021-10-25 05:45:45 +01:00
<p class="mt-3 text-bold"><i class="fas fa-info-circle"></i> {{ __('Note: If you delete a vacancy, all its applications are also deleted') }}</p>
2020-05-03 05:04:26 +01:00
@else
2020-05-03 05:04:26 +01:00
<div class="alert alert-warning">
<p>{{__('Nothing to see here! Open some vacancies first. This will get applicants pouring in! (hopefully)')}}</p>
</div>
2020-05-03 05:04:26 +01:00
@endif
2020-05-03 05:04:26 +01:00
</div>
<div class="card-footer">
<button type="button" class="btn btn-outline-primary" onclick="window.location.href='{{route('showForms')}}'">{{__('MANAGE APPLICATION FORMS')}}</button>
2020-05-03 05:04:26 +01:00
</div>
</div>
</div>
</div>
@else
<x-no-permission type="danger"></x-no-permission>
@endif
2020-05-03 05:04:26 +01:00
@stop
2020-07-16 06:46:20 +01:00
@section('footer')
@include('breadcrumbs.dashboard.footer')
@stop