Blame view

resources/views/workers/menu.blade.php 4.09 KB
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
1
2
3
  <div class="cabinet__side-item">
      <div class="cabinet__menu">
          <button type="button" class="cabinet__menu-toper js-toggle">
d62e4b4e7   Сергей П   правки
4
              <span class="cabinet__menu-toper-text"></span>
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
              <i class="cabinet__menu-toper-arrow">
                  <svg>
                      <use xlink:href="{{ asset('images/sprite.svg#arrow') }}"></use>
                  </svg>
              </i>
          </button>
          <div class="cabinet__menu-body">
              <div class="cabinet__menu-items">
                  <a href="{{ route('worker.cabinet') }}" class="cabinet__menu-item @if ($item==1) active @endif">
                      <i>
                          <svg>
                              <use xlink:href="{{ asset('images/sprite.svg#cabinet-1') }}"></use>
                          </svg>
                      </i>
                      <span>Моя анкета</span>
                  </a>
                  <a href="{{ route('worker.messages', ['type_message' => 'input']) }}" class="cabinet__menu-item @if ($item==2) active @endif">
                      <i>
                          <svg>
                              <use xlink:href="{{ asset('images/sprite.svg#cabinet-5') }}"></use>
                          </svg>
                      </i>
                      <span>Сообщения</span>
                  </a>
2b21634e3   Hayk Nazaryan   workers profile p...
29
                  <a href="{{ route('worker.autolift') }}" class="cabinet__menu-item @if ($item==15) active @endif">
8ec6b4403   Fedor   task-132985 autor...
30
31
32
33
34
35
36
                      <i>
                          <svg>
                              <use xlink:href="{{ asset('images/sprite.svg#refresh') }}"></use>
                          </svg>
                      </i>
                      <span>Автоподнятие резюме</span>
                  </a>
2b21634e3   Hayk Nazaryan   workers profile p...
37
                  <a href="{{ route('worker.autoresponder') }}" class="cabinet__menu-item @if ($item==16) active @endif">
8ec6b4403   Fedor   task-132985 autor...
38
39
40
41
42
43
44
                      <i>
                          <svg>
                              <use xlink:href="{{ asset('images/sprite.svg#answering') }}"></use>
                          </svg>
                      </i>
                      <span>Автоответчик</span>
                  </a>
1862e7a3a   Андрей Ларионов   Борьба против кол...
45
                  <a href="{{ route('worker.colorado') }}" class="cabinet__menu-item @if ($item==3) active @endif">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
46
47
48
49
50
51
52
                      <i>
                          <svg>
                              <use xlink:href="{{ asset('images/sprite.svg#cabinet-6') }}"></use>
                          </svg>
                      </i>
                      <span>Избранные вакансии</span>
                  </a>
09a2fc9d8   Hayk Nazaryan   messages and subs...
53
54
55
56
57
58
59
  
                      <a href="{{ route('worker.subscribe') }}" class="cabinet__menu-item @if ($item==11) active @endif">
                          <i><svg>
                                  <use xlink:href="{{ asset('images/sprite.svg#cabinet-11') }}"></use>
                              </svg></i>
                          <span>Настройки уведомлений</span>
                      </a>
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
                  <a href="{{ route('worker.new_password') }}" class="cabinet__menu-item green @if ($item==4) active @endif">
                      <i></i>
                      <span>Сменить пароль</span>
                  </a>
                  <a href="{{ route('worker.delete_profile') }}" class="cabinet__menu-item red @if ($item==5) active @endif">
                      <i></i>
                      <span>Удалить профиль</span>
                  </a>
              </div>
              <div class="cabinet__menu-bottom">
                  <a href="{{ route('logout') }}" class="button cabinet__menu-leave">
                      <svg>
                          <use xlink:href="{{ asset('images/sprite.svg#leave') }}"></use>
                      </svg>
                      Выход
                  </a>
                  <span class="cabinet__menu-copy">
                      &copy; 2020 &ndash; Rekamore.su
                  </span>
              </div>
          </div>
      </div>
  </div>
d62e4b4e7   Сергей П   правки
83
84
85
86
  
  <script>
      $(function(){
          var active_menu = $('.cabinet__menu-item.active');
2b21634e3   Hayk Nazaryan   workers profile p...
87
          console.log(active_menu.length);
d62e4b4e7   Сергей П   правки
88
          if (active_menu.length === 1){
2b21634e3   Hayk Nazaryan   workers profile p...
89

d62e4b4e7   Сергей П   правки
90
91
92
93
              $('.cabinet__menu-toper-text').html(active_menu.html());
          }
      });
  </script>