resume.blade.php
29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
@extends('layout.frontend', ['title' => 'База резюме - РекаМоре'])
@section('scripts')
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<script>
console.log('Test system');
$(document).on('change', '#jobs', function() {
var val = $(this).val();
var main_oskar = $('#main_ockar');
console.log('Code='+val);
console.log('Click change...');
$.ajax({
type: "GET",
url: "",
data: "job="+val,
success: function (data) {
console.log('Выбор сделан!');
console.log(data);
main_oskar.html(data);
},
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
error: function (data) {
data = JSON.stringify(data);
console.log('Error: ' + data);
}
});
});
</script>
<script>
$(document).ready(function() {
$(document).on('click', '.js_box_favorites', function () {
var _this = $(this);
var id_worker = _this.attr('data-val');
if (_this.hasClass('active')) {
add_in_array(id_worker);
console.log('Добавлено в избранное id=' + id_worker);
} else {
delete_in_array(id_worker);
console.log('Удалено из избранных id='+id_worker)
}
var str = $.cookie('favorite_worker');
console.log("Вывод куков "+str);
});
});
//помеченный элемент
function selected_item(obj) {
var arr = read_array();
var index = arr.indexOf(obj);
if (index > 0)
return "active";
else
return "";
}
// запись элемента массива в cookie
function add_in_array(obj){
var arr = read_array();//получаем текущее состояние массива
arr[arr.length]=obj; //добавляем элемент в конец
//var str = JSON.stringify(arr);//конвертируем в строку
//$.cookie('arr',str);//записываем массив в куки
$.cookie('favorite_worker', JSON.stringify(arr));
}
// удаление элемента из массива в cookie
function delete_in_array(obj) {
var arr = read_array();
var unique = [...new Set(arr)]
var index = unique.indexOf(obj);
unique.splice(index, 1);
//var str = JSON.stringify(arr);//конвертируем в строку
//$.cookie('arr',str);//записываем массив в куки
$.cookie('favorite_worker', JSON.stringify(unique));
}
function read_array(){
var dataArr=$.cookie('favorite_worker');//считываем данные из куков
//если массив не был обнаружен, иницилизируем его
if(dataArr===null){
dataArr = init_array(); //возвращаем инициализированный пустой маасив
}
//возвращаем полученный массив
//return JSON.parse(dataArr);
return JSON.parse(dataArr);
}
//другими словами создаем пустой массив
function init_array(){
//var str = JSON.stringify(new Array());//конвертируем в строку
var str = JSON.stringify(new Array());
$.cookie('favorite_worker',str);//записываем массив в куки
return str;
}
</script>
<script>
$(document).on('click', '.js_it_button', function() {
var this_ = $(this);
var code_user_id = this_.attr('data-uid');
var code_to_user_id = this_.attr('data-tuid');
var code_vacancy = this_.attr('data-vacancy');
var user_id = $('#_user_id');
var to_user_id = $('#_to_user_id');
var vacancy = $('#_vacancy');
console.log('code_to_user_id='+code_to_user_id);
console.log('code_user_id='+code_user_id);
console.log('code_vacancy='+code_vacancy);
console.log('Клик на кнопке...');
user_id.val(code_user_id);
to_user_id.val(code_to_user_id);
vacancy.val(code_vacancy);
});
</script>
<script>
$(document).on('change', '#sort_ajax', function() {
var this_ = $(this);
var val_ = this_.val();
console.log('sort items '+val_);
$.ajax({
type: "GET",
url: "{{ route('bd_resume') }}",
data: "sort="+val_+"&block=1",
success: function (data) {
console.log('Выбор сортировки');
console.log(data);
$('#block1').html(data);
history.pushState({}, '', "{{ route('bd_resume') }}?sort="+val_+"@if (isset($_GET['page']))&page={{ $_GET['page'] }}@endif");
},
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
error: function (data) {
data = JSON.stringify(data);
console.log('Error: ' + data);
}
});
$.ajax({
type: "GET",
url: "{{ route('bd_resume') }}",
data: "sort="+val_+"&block=2",
success: function (data) {
console.log('Выбор сортировки');
console.log(data);
$('#block2').html(data);
history.pushState({}, '', "{{ route('bd_resume') }}?sort="+val_+"@if (isset($_GET['page']))&page={{ $_GET['page'] }}@endif");
},
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
error: function (data) {
data = JSON.stringify(data);
console.log('Error: ' + data);
}
});
});
$(document).ready(function(){
var sel = $('#select2-sort_ajax-container');
var key = getUrlParameter('sort');
console.log(sel);
console.log(key);
if (key !=='') {
console.log(key);
switch (key) {
case "default": sel.html('Сортировка (по умолчанию)'); break;
case "name_up": sel.html('По имени (возрастание)'); break;
case "name_down": sel.html('По дате (убывание)'); break;
case "created_at_up": sel.html('По дате (возрастание)'); break;
case "created_at_down": sel.html('По дате (убывание)'); break;
}
}
});
</script>
<script>
console.log('Test system');
$(document).on('change', '.jobs', function() {
var val = $(this).val();
console.log('Click filter вакансии...');
$.ajax({
type: "GET",
url: "{{ route('bd_resume') }}",
data: "job="+val+'&block=1',
success: function (data) {
console.log('Выбор должности');
console.log(data);
$('#block1').html(data);
history.pushState({}, '', "{{ route('bd_resume') }}?job="+val+"@if (isset($_GET['sort']))&sort={{ $_GET['sort'] }}@endif"+"@if (isset($_GET['page']))&page={{ $_GET['page'] }}@endif");
},
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
error: function (data) {
data = JSON.stringify(data);
console.log('Error: ' + data);
}
});
$.ajax({
type: "GET",
url: "{{ route('bd_resume') }}",
data: "job="+val+'&block=2',
success: function (data) {
console.log('Выбор должности');
console.log(data);
$('#block2').html(data);
},
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
error: function (data) {
data = JSON.stringify(data);
console.log('Error: ' + data);
}
});
});
</script>
@include('js.favorite-worker')
@endsection
@section('content')
<section class="thing">
<div class="container">
<form class="thing__body" action="{{ url()->current() }}">
<ul class="breadcrumbs thing__breadcrumbs">
<li><a href="{{ route('index') }}">Главная</a></li>
<li><b>База резюме</b></li>
</ul>
<h1 class="thing__title">База резюме</h1>
<p class="thing__text">С другой стороны, социально-экономическое развитие не оставляет шанса для
существующих финансовых и административных условий.</p>
<!--<div class="search thing__search">
<input type="search" class="input" name="search" id="search" placeholder="Введите наименование должности" required>
<button type="submit" class="button">Найти</button>
<span>
<svg>
<use xlink:href="{{ asset('images/sprite.svg#search') }}"></use>
</svg>
</span>
</div>-->
<div class="select select_search thing__select">
<div class="select__icon">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#search') }}"></use>
</svg>
</div>
<select class="js-select2 jobs" name="search" id="search">
<option value="0">Выберите должность</option>
@if($Job_title->count())
@foreach($Job_title as $JT)
<option value="{{ $JT->id }}" @if (isset($_GET['job'])) @if($_GET['job'] == $JT->id) selected @endif @endif>{{ $JT->name }}</option>
@endforeach
@endif
</select>
</div>
<!--<label class="checkbox thing__checkbox">
<input type="checkbox" class="checkbox__input" name="experience" id="experience">
<span class="checkbox__icon">
<svg>
<use xlink:href=" asset('images/sprite.svg#v') }}"></use>
</svg>
</span>
<span class="checkbox__text">
<span>
Опыт работы
</span>
</span>
</label>-->
</form>
</div>
</section>
<main class="main">
<div class="container">
<div class="main__resume-base">
<h2>Резюме работников</h2>
<div class="filters">
<div class="filters__label">Показано {{ $resumes->firstItem() }} – {{ $resumes->lastItem() }} из {{ $res_count }} результатов поиска</div>
<div class="filters__body">
<div class="select filters__select">
<select class="js-select2" id="sort_ajax" name="sort_ajax">
<option value="default">Сортировка (по умолчанию)</option>
<option value="name_up">По имени (возрастание)</option>
<option value="name_down">По имени (убывание)</option>
<option value="created_at_up">По дате (возрастание)</option>
<option value="created_at_down">По дате (убывание)</option>
</select>
</div>
<button type="button" class="filters__item active" data-tab="1">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#grid-1') }}"></use>
</svg>
</button>
<button type="button" class="filters__item" data-tab="2">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#grid-2') }}"></use>
</svg>
</button>
</div>
</div>
<div class="main__resume-base-body showed" data-body="1">
<div class="main__resume-base-body-one" id="block1" name="block1">
@if ($resumes->count())
@foreach ($resumes as $res)
<div class="main__resume-base-body-item">
<div class="main__resume-base-body-item-wrapper">
<div>
<img src="@isset ($res->photo) {{ asset(Storage::url($res->photo)) }} @else {{ asset('images/default_man.jpg')}} @endif" alt="" class="main__resume-base-body-item-photo">
<div>
<div class="main__resume-base-body-item-buttons">
<button type="button" data-id="{{ $res->id }}" id="elem{{ $res->id }}" class="like js-toggle js_box_favorit {{ \App\Classes\LikesClass::get_status_worker($res) }}" data-val="{{ $res->id }}">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#heart') }}"></use>
</svg>
<span class="to-favorites">В избранное</span>
<span class="in-favorites">В избранном</span>
</button>
@guest
<button type="button" data-fancybox data-src="#question" data-options='{"touch":false,"autoFocus":false}'
class="chat js-toggle js_it_button">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#chat') }}"></use>
</svg>
<span>Написать</span>
</button>
@else
@if (App\Classes\StatusUser::Status()==0)
@if ((!Auth()->user()->is_worker) && (Auth()->user()->is_message))
<button type="button" class="chat js-toggle js_it_button" data-fancybox data-src="#send2" data-vacancy="0" data-uid="{{ $idiot}}" data-tuid="{{ $res->users->id }}" data-options='{"touch":false,"autoFocus":false}'>
<svg>
<use xlink:href="{{ asset('images/sprite.svg#chat') }}"></use>
</svg>
<span>Написать</span>
</button>
@endif
@else
<button type="button" data-fancybox data-src="#question2" data-options='{"touch":false,"autoFocus":false}'
class="chat js-toggle js_it_button">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#chat') }}"></use>
</svg>
<span>Написать</span>
</button>
@endif
@endif
<a href="{{ route('resume_profile', ['worker' => $res->id]) }}" class="button button_light main__resume-base-body-item-link">Подробнее</a>
</div>
</div>
</div>
<div class="main__resume-base-body-item-inner">
<div class="horizontal">
<div class="main__resume-base-item-status @if ($res->status_work == 0) looking-for-job @endif">
{{ $status_work[$res->status_work] }}
</div>
<div class="main__resume-base-item-updated-at">
Обновлено: {{ date('d.m.Y', strtotime($res->updated_at)) }}
</div>
</div>
<div>
<b>Предпочтение по типу судна:</b>
<span>{{ $res->boart_type_preference ?? '-' }}</span>
</div>
<div>
<b>ФИО:</b>
<span>@if (isset($res->users)){{ $res->users->surname." ".$res->users->name_man." ".$res->users->surname2 }} @endif</span>
</div>
<div>
<b>Наличие визы:</b>
<span>{{ $res->visa_available ?? '-' }}</span>
</div>
<div>
<b>Возраст:</b>
<span>{{ $res->old_year ?? '-' }}</span>
</div>
<div>
<b>Наличие танкерных документов:</b>
<span>{{ $res->tanker_documents_available ?? '-' }}</span>
</div>
<div>
<b>Желаемые вакансии:</b>
<span>
@if ($res->job_titles->count())
@foreach ($res->job_titles as $job_title)
{{ $job_title->name }}
@if (!$loop->last) / @endif
@endforeach
@else
-
@endif
</span>
</div>
<div>
<b>Наличие подтверждения для работы на ВВП:</b>
<span>{{ $res->confirmation_work_for_vvp ?? '-' }}</span>
</div>
<div>
<b>Пожелание к З/П:</b>
<span>{{ $res->salary_expectations ?? '-' }}</span>
</div>
<div>
<b>Город проживания</b>
<span>{{ $res->city ?? "-" }}</span>
</div>
<div>
<b>Уровень английского:</b>
<span>{{ $res->english_level ?? '-' }}</span>
</div>
<div>
<b>Номер телефона</b>
<span><a href="tel:{{ $res->telephone }}">{{ $res->telephone ?? '-' }}</a></span>
</div>
<div>
<b>Дата готовности к посадке:</b>
<span>{{ $res->ready_boart_date ?? '-' }}</span>
</div>
<div>
<b>E-mail:</b>
<span><a href="mailto:{{ $res->email }}">{{ $res->email }}</a></span>
</div>
<div>
<b>Опыт работы:</b>
<span>{{ $res->experience }}</span>
</div>
</div>
</div>
</div>
@endforeach
{{ $resumes->appends($_GET)->links('paginate') }}
@else
<p>По данному запросу ничего не найдено</p>
@endif
</div>
</div>
<div class="main__resume-base-body" data-body="2">
<div class="main__resume-base-body-two" id="block2" name="block2">
@if ($resumes->count())
@foreach ($resumes as $res)
<div class="main__resume-base-body-item">
<div class="main__resume-base-body-item-buttons">
<button type="button" id="elem_{{ $res->id }}" class="like js-toggle js_box_favorit {{ \App\Classes\LikesClass::get_status_worker($res) }}" data-val="{{ $res->id }}">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#heart') }}"></use>
</svg>
</button>
<!--<button type="button" class="chat js-toggle js_it_button" data-fancybox data-src="#send2" data-vacancy="0" data-uid=" $idiot}}" data-tuid=" $res->id }}" data-options='{"touch":false,"autoFocus":false}'>
<svg>
<use xlink:href=" asset('images/sprite.svg#chat') }}"></use>
</svg>
</button>-->
@guest
<button type="button" data-fancybox data-src="#question" data-options='{"touch":false,"autoFocus":false}'
class="chat js-toggle js_it_button">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#chat') }}"></use>
</svg>
</button>
@else
@if (App\Classes\StatusUser::Status()==0)
@if ((!Auth()->user()->is_worker) && (Auth()->user()->is_message))
<button type="button" class="chat js-toggle js_it_button" data-fancybox data-src="#send2" data-vacancy="0" data-uid="{{ $idiot}}" data-tuid="{{ $res->users->id }}" data-options='{"touch":false,"autoFocus":false}'>
<svg>
<use xlink:href="{{ asset('images/sprite.svg#chat') }}"></use>
</svg>
</button>
@endif
@else
<button type="button" data-fancybox data-src="#question2" data-options='{"touch":false,"autoFocus":false}'
class="chat js-toggle js_it_button">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#chat') }}"></use>
</svg>
</button>
@endif
@endif
</div>
<div class="main__resume-base-body-item-wrapper">
<img src="@isset ($res->photo) {{ asset(Storage::url($res->photo)) }} @else {{ asset('images/default_man.jpg')}} @endif" alt="" class="main__resume-base-body-item-photo">
<div class="main__resume-base-body-item-inner">
<div>
<b>Статус</b>
<span>{{ $status_work[$res->status_work] }}</span>
</div>
<div>
<b>Имя работника</b>
<span>@if (isset($res->users)){{ $res->users->surname." ".$res->users->name_man." ".$res->users->surname2 }} @endif</span>
</div>
<div>
<b>Номер телефона</b>
<span><a href="tel:{{ $res->telephone }}">{{ $res->telephone }}</a></span>
</div>
<div>
<b>Электронный адрес</b>
<span><a href="mailto:{{ $res->email }}">{{ $res->email }}</a></span>
</div>
<div>
<b>Город проживания</b>
<span>{{ $res->city }}</span>
</div>
<div>
<b>Опыт работы</b>
<span>{{ $res->experience }}</span>
</div>
</div>
</div>
<a href="{{ route('resume_profile', ['worker' => $res->id]) }}" class="button button_light main__resume-base-body-item-link">Перейти в
резюме</a>
</div>
@endforeach
{{ $resumes->appends($_GET)->links('paginate') }}
@endif
</div>
</div>
</div>
</div>
</main>
</div>
</div>
@endsection