Blame view

resources/views/employers/dialog.blade.php 21.8 KB
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
1
2
3
4
  @extends('layout.frontend', ['title' => 'Диалог-переписка - РекаМоре'])
  
  @section('scripts')
      <script>
7fa088c5b   Сергей П   Задачи 58,49,51 +...
5
6
7
          $(function(){
              var chatbox_div = $('.chatbox__list');
              chatbox_div.scrollTop(chatbox_div.prop("scrollHeight"));
3d041f3f0   Сергей П   Изменения для соо...
8
9
10
11
12
  
              $('form.chatbox__bottom [name="file"]').on('change', function() {
                  var fileName = $(this).val().split('\\').pop();
                  $('.chatbox-file-name-wrap').text('Добавлен файл: ' + fileName);
              });
7fa088c5b   Сергей П   Задачи 58,49,51 +...
13
          });
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
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
          $(document).on('change', '#send_btn', function() {
              var this_ = $(this);
              var val_ = this_.val();
              console.log('sort items '+val_);
  
              $.ajax({
                  type: "GET",
                  url: "{{ route('shipping_companies') }}",
                  data: "sort="+val_+"&block=1",
                  success: function (data) {
                      console.log('Выбор сортировки');
                      console.log(data);
                      $('#block_1').html(data);
                  },
                  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('shipping_companies') }}",
                  data: "sort="+val_+"&block=2",
                  success: function (data) {
                      console.log('Выбор сортировки2');
                      console.log(data);
                      history.pushState({}, '', "{{ route('shipping_companies') }}?sort="+val_+"@if (isset($_GET['page']))&page={{ $_GET['page'] }}@endif");
                      $('#block_2').html(data);
                  },
                  headers: {
                      'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                  },
                  error: function (data) {
                      data = JSON.stringify(data);
                      console.log('Error: ' + data);
                  }
              });
          });
      </script>
  @endsection
  
  @section('content')
      <section class="cabinet">
          <div class="container">
              <ul class="breadcrumbs cabinet__breadcrumbs">
                  <li><a href="{{ route('index') }}">Главная</a></li>
                  <li><b>Личный кабинет</b></li>
              </ul>
              <div class="cabinet__wrapper">
                  <div class="cabinet__side">
6e2255214   Андрей Ларионов   Работа над сообще...
68
                      <div class="cabinet__side-toper">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
69
                          @include('employers.emblema')
6e2255214   Андрей Ларионов   Работа над сообще...
70
                      </div>
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
                      @include('employers.menu', ['item' => 5])
                  </div>
                  <div class="cabinet__body">
                      <div class="cabinet__body-item">
                          <h2 class="title cabinet__title">Сообщения</h2>
                      </div>
                      <div class="cabinet__body-item">
                          <a href="{{ route('employer.messages', ['type_message' => 'input']) }}" class="back">
                              <svg>
                                  <use xlink:href="{{ asset('images/sprite.svg#back') }}"></use>
                              </svg>
                              <span>
                                      К списку чатов
                              </span>
                          </a>
                          <div class="chatbox">
                              <div class="chatbox__toper">
09a2fc9d8   Hayk Nazaryan   messages and subs...
88
89
90
91
92
93
94
95
                                  @if($chat->is_admin_chat)
                                      <div class="chatbox__toper-info messages__item-info">
                                          @include('svg.logo_icon')
                                          <div class="messages__item-text bold font20">
                                              Администратор сайта
                                          </div>
                                      </div>
                                  @elseif ($companion->is_worker)
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
96
97
98
99
100
                                      <div class="chatbox__toper-info messages__item-info">
                                          <div class="messages__item-photo">
                                              <svg>
                                                  <use xlink:href="{{ asset('images/sprite.svg#pic') }}"></use>
                                              </svg>
7f2872aa3   Андрей Ларионов   Коммит Работа-среда
101
102
103
104
105
106
                                              @if ((isset($companion->workers[0]->photo)) &&
                                               (!empty($companion->workers[0]->photo)))
                                                  <img src="{{ asset(\Illuminate\Support\Facades\Storage::url($companion->workers[0]->photo)) }}" alt="">
                                              @else
                                                  <img src="{{ asset('images/default_man.jpg') }}" alt="">
                                              @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
107
108
109
                                          </div>
                                          <div class="messages__item-text">
                                              <div>{{ $companion->surname." ".$companion->name_man." ".$companion->surname2." (".$companion->id.")" }} </div>
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
110
111
                                          </div>
                                      </div>
e4a225e47   Андрей Ларионов   Коммит по ссылке ...
112
113
                                      @if (isset($companion->workers[0]->id))
                                      <a href="{{ route('resume_profile', ['worker' => $companion->workers[0]->id]) }}" class="button chatbox__toper-button">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
114
115
116
                                          <svg>
                                              <use xlink:href="{{ asset('images/sprite.svg#cabinet-1') }}"></use>
                                          </svg>
d721fd846   Сергей П   правки по сообщен...
117
                                          Перейти в профиль
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
118
119
120
121
122
123
124
125
                                      </a>
                                      @endif
                                  @else
                                      <div class="chatbox__toper-info messages__item-info">
                                          <div class="messages__item-photo">
                                              <svg>
                                                  <use xlink:href="{{ asset('images/sprite.svg#pic') }}"></use>
                                              </svg>
7f2872aa3   Андрей Ларионов   Коммит Работа-среда
126
127
128
129
130
131
                                              @if ((isset($companion->employers[0]->logo)) &&
                                                 (!empty($companion->employers[0]->logo)))
                                                  <img src="{{ asset(\Illuminate\Support\Facades\Storage::url($companion->employers[0]->logo)) }}" alt="">
                                              @else
                                                  <img src="{{ asset('images/default_man.jpg') }}" alt="">
                                              @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
132
133
134
135
136
137
138
139
140
141
142
                                          </div>
                                          <div class="messages__item-text">
                                              <div>{{ $companion->surname." ".$companion->name_man." ".$companion->surname2." (".$companion->id.")" }} </div>
                                              <div><span>Статус:</span> Работодатель или Администратор</div>
                                          </div>
                                      </div>
                                      @if (isset($companion->employer->id))
                                      <a href="" class="button chatbox__toper-button">
                                          <svg>
                                              <use xlink:href="{{ asset('images/sprite.svg#cabinet-1') }}"></use>
                                          </svg>
d721fd846   Сергей П   правки по сообщен...
143
                                          Перейти в профиль
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
144
145
146
147
                                      </a>
                                      @endif
                                  @endif
                              </div>
333b51535   Сергей П   правки
148
149
150
151
152
153
154
155
156
                              @if ($errors->any())
                                  <div class="red bold">
                                      <ul>
                                          @foreach ($errors->all() as $error)
                                              <li>{{ $error }}</li>
                                          @endforeach
                                      </ul>
                                  </div>
                              @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
157
                              <div class="chatbox__list" id="dialogs" name="dialogs">
09a2fc9d8   Hayk Nazaryan   messages and subs...
158
                                  @if ($Messages->count())
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
159
160
161
                                      @foreach ($Messages as $it)
                                          @if ($it->user_id == $companion->id)
                                              <div class="chatbox__item">
09a2fc9d8   Hayk Nazaryan   messages and subs...
162
163
164
165
166
167
168
                                                  <div class="@if(!$companion->id != $superAdmin->id) chatbox__item-photo @endif ">
                                                      @if(!$companion->id == $superAdmin->id)
                                                          <svg>
                                                              <use xlink:href="{{ asset('images/sprite.svg#pic') }}"></use>
                                                          </svg>
                                                      @endif
                                                      @if($companion->is_worker)
7f2872aa3   Андрей Ларионов   Коммит Работа-среда
169
170
171
172
173
174
                                                          @if ((isset($companion->workers[0]->photo)) &&
                                                              (!empty($companion->workers[0]->photo)))
                                                              <img src="{{ asset(\Illuminate\Support\Facades\Storage::url($companion->workers[0]->photo)) }}" alt="">
                                                          @else
                                                              <img src="{{ asset('images/default_man.jpg') }}" alt="">
                                                          @endif
09a2fc9d8   Hayk Nazaryan   messages and subs...
175
176
                                                      @elseif($companion->id == $superAdmin->id)
                                                          @include('svg.logo_icon')
7f2872aa3   Андрей Ларионов   Коммит Работа-среда
177
                                                      @else
7db5ce20a   Hayk Nazaryan   fix chat design
178
                                                          @if ((isset($companion->employers[0]->logo)) && (!empty($companion->employers[0]->logo)))
7f2872aa3   Андрей Ларионов   Коммит Работа-среда
179
180
                                                              <img src="{{ asset(\Illuminate\Support\Facades\Storage::url($companion->employers[0]->logo)) }}" alt="">
                                                          @else
7db5ce20a   Hayk Nazaryan   fix chat design
181
                                                              <div class="chatbox__item-photo">
09a2fc9d8   Hayk Nazaryan   messages and subs...
182
183
                                                                  <img src="{{ asset('images/default_man.jpg') }}" alt="">
                                                              </div>
7f2872aa3   Андрей Ларионов   Коммит Работа-среда
184
185
                                                          @endif
                                                      @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
186
187
                                                  </div>
                                                  <div class="chatbox__item-body">
3d041f3f0   Сергей П   Изменения для соо...
188
189
190
191
192
193
194
195
196
197
                                                      @if ((isset($it->file)) && (!empty($it->file)))
                                                          <div class="chatbox__item-text chatbox__item-body-file-name-wrap">
                                                              <div class="">
                                                                  @if($it->original_file_name)
                                                                      {{ $it->original_file_name }}
                                                                  @else
                                                                      <svg>
                                                                          <use xlink:href="{{ asset('images/sprite.svg#clip') }}"></use>
                                                                      </svg>
                                                                  @endif
f98ccb92c   Сергей П   Массова рассылка
198
                                                              </div>
3d041f3f0   Сергей П   Изменения для соо...
199
200
201
202
                                                              <a href="{{ asset(Storage::url($it->file)) }}" class="">
                                                                  Скачать
                                                              </a>
                                                          </div>
7db5ce20a   Hayk Nazaryan   fix chat design
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
                                                      @else
                                                          <div class="chatbox__item-text">
                                                              <button class="button admin-chat-answer"
                                                                      data-fancybox data-src="#answer_to_admin_chat_modal"
                                                                      data-to-user-id="{{ $it->user_id }}" data-message-id="{{ $it->id }}">
                                                                  Ответить
                                                              </button>
                                                              @if(\App\Models\Ad_employer::where('id', $it->ad_employer_id)->exists())
                                                                  Отклик на вакансию {{ \App\Models\Ad_employer::find($it->ad_employer_id)->name }}
                                                                  @if($it->text)
                                                                      Комментарий: {{ $it->text }}
                                                                  @endif
                                                              @else
                                                                  @if($it->text)
                                                                      {{ $it->text }}
                                                                  @endif
                                                              @endif
                                                          </div>
3d041f3f0   Сергей П   Изменения для соо...
221
                                                      @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
222
223
224
225
226
                                                  </div>
                                                  <div class="chatbox__item-time">{{ $it->created_at }}</div>
                                              </div>
                                          @else
                                              <div class="chatbox__item chatbox__item_reverse">
09a2fc9d8   Hayk Nazaryan   messages and subs...
227
                                                  <div class="@if($sender->id!=$superAdmin->id) chatbox__item-photo @endif">
7f2872aa3   Андрей Ларионов   Коммит Работа-среда
228
229
230
231
232
233
234
                                                      @if ($sender->is_worker)
                                                          @if ((isset($sender->workers[0]->photo)) &&
                                                           (!empty($sender->workers[0]->photo)))
                                                              <img src="{{ asset(\Illuminate\Support\Facades\Storage::url($sender->workers[0]->photo)) }}" alt="">
                                                          @else
                                                              <img src="{{ asset('images/default_man.jpg') }}" alt="">
                                                          @endif
09a2fc9d8   Hayk Nazaryan   messages and subs...
235
236
                                                      @elseif($sender->id == $superAdmin->id)
                                                          @include('svg.logo_icon')
7f2872aa3   Андрей Ларионов   Коммит Работа-среда
237
                                                      @else
09a2fc9d8   Hayk Nazaryan   messages and subs...
238
239
240
                                                          <svg>
                                                              <use xlink:href="{{ asset('images/sprite.svg#pic') }}"></use>
                                                          </svg>
7f2872aa3   Андрей Ларионов   Коммит Работа-среда
241
242
243
244
245
246
247
                                                          @if ((isset($sender->employers[0]->logo)) &&
                                                          (!empty($sender->employers[0]->logo)))
                                                              <img src="{{ asset(\Illuminate\Support\Facades\Storage::url($sender->employers[0]->logo)) }}" alt="">
                                                          @else
                                                              <img src="{{ asset('images/default_man.jpg') }}" alt="">
                                                          @endif
                                                      @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
248
249
                                                  </div>
                                                  <div class="chatbox__item-body">
09a2fc9d8   Hayk Nazaryan   messages and subs...
250
                                                      @if($chat->is_admin_chat || $it->text || $it->reply_message_id || $it->ad_employer_id > 0)
6bad752f0   Fedor   task-132687 minor...
251
                                                          <div class="chatbox__item-text">
09a2fc9d8   Hayk Nazaryan   messages and subs...
252

09a2fc9d8   Hayk Nazaryan   messages and subs...
253
                                                              @if(\App\Models\Ad_employer::where('id', $it->ad_employer_id)->exists()))
7db5ce20a   Hayk Nazaryan   fix chat design
254
                                                                  <b>Отклик на вакансию</b> "{{ \App\Models\Ad_employer::find($it->ad_employer_id)->name }}"<br>
09a2fc9d8   Hayk Nazaryan   messages and subs...
255
256
257
                                                              @if($it->text)
                                                                  <b>Комментарий:</b> {{ $it->text }}
                                                              @endif
6bad752f0   Fedor   task-132687 minor...
258
259
260
261
                                                              @else
                                                                  @if($it->text)
                                                                      {{ $it->text }}
                                                                  @endif
09a2fc9d8   Hayk Nazaryan   messages and subs...
262
263
264
265
266
267
268
269
                                                              @endif
  
                                                              @if($it->reply_message_id)
                                                                  <div class="reply-message">
                                                                      {{ $it->reply_message->text }}
                                                                  </div>
                                                              @endif
                                                          </div>
3d041f3f0   Сергей П   Изменения для соо...
270
                                                      @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
271
                                                      @if ((isset($it->file)) && (!empty($it->file)))
3d041f3f0   Сергей П   Изменения для соо...
272
273
274
275
276
277
278
279
280
281
282
283
284
285
                                                          <div class="chatbox__item-text chatbox__item-body-file-name-wrap">
                                                              <a href="{{ asset(Storage::url($it->file)) }}" class="">
                                                                  Скачать
                                                              </a>
                                                              <div class="">
                                                                  @if($it->original_file_name)
                                                                      {{ $it->original_file_name }}
                                                                  @else
                                                                      <svg>
                                                                          <use xlink:href="{{ asset('images/sprite.svg#clip') }}"></use>
                                                                      </svg>
                                                                  @endif
                                                              </div>
                                                          </div>
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
286
287
288
289
290
291
292
293
294
                                                      @endif
                                                  </div>
                                                  <div class="chatbox__item-time">{{ $it->created_at }}</div>
                                              </div>
                                          @endif
  
                                      @endforeach
                                  @endif
                              </div>
3d041f3f0   Сергей П   Изменения для соо...
295
296
297
298
                              <div>
                                  <form action="{{ route('employer.test123') }}" class="chatbox__bottom" enctype="multipart/form-data" method="POST" >
                                      @csrf
                                      <label class="chatbox__bottom-file">
f51411018   Fedor   task-132985 minor...
299
                                          <input id="file" name="file" type="file" accept=".pdf, .doc, .docx">
3d041f3f0   Сергей П   Изменения для соо...
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
                                          <svg>
                                              <use xlink:href="{{ asset('images/sprite.svg#clip') }}"></use>
                                          </svg>
                                      </label>
                                      <input type="hidden" name="_token" value="{{ csrf_token() }}"/>
                                      <input type="hidden" id="user_id" name="user_id" value="{{ $sender->id }}"/>
                                      <input type="hidden" id="to_user_id" name="to_user_id" value="{{ $companion->id }}"/>
                                      <input type="hidden" id="ad_employer_id" name="ad_employer_id" value="{{ $ad_employer }}"/>
                                      <input type="hidden" id="ad_name" name="ad_name" value="@if (isset($_GET['ad_name'])){{ $_GET['ad_name'] }} @endif"/>
                                      <input id="text" name="text" type="text" class="input chatbox__bottom-text" placeholder="Ответить">
                                      <button type="submit" id="send_btn" name="send_btn" class="chatbox__bottom-send">
                                          <svg>
                                              <use xlink:href="{{ asset('images/sprite.svg#arrow') }}"></use>
                                          </svg>
                                      </button>
                                  </form>
                                  <div class="chatbox-file-name-wrap mt-5 fw600"></div>
                              </div>
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
318
319
320
321
322
323
324
                          </div>
                      </div>
                  </div>
              </div>
          </div>
      </section>
      </div>
7f3406fc6   Hayk Nazaryan   fix subscribe and...
325
      @include('modals.chats.answer_to_admin_chat')
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
326
  @endsection