Blame view

frontend/web/js/script.js 11.5 KB
8f340aa7   Anastasia   - main page
1
2
3
4
5
6
7
8
9
10
11
  $(document).ready(function() {
  
      footerBottom();
      modalForms();
      openMobMenuNew();
      closeMobMenu();
      canvasFunction();
      scrollToForm();
      cardHideDesk();
      inputNumber();
      phoneMask();
6c6f2e19   Виталий   account form
12
      accountCabinet();
8f340aa7   Anastasia   - main page
13
14
15
16
17
18
  
  
      function footerBottom(){
          var heightHeader = document.getElementById('header_').offsetHeight
          var heightFooter = document.getElementById('footer_').offsetHeight
          var windowHeight = window.innerHeight
d524f25a   Виталий   about
19
          document.getElementById('content_').style.minHeight = windowHeight-heightHeader-heightFooter-60+'px';
8f340aa7   Anastasia   - main page
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
      }
  
      function mobOverlayAdd() {
          if($('body').find('.mob-overlay').length > 0) {
          } else {
              $('body').append('<div class="mob-overlay"></div>')
          }
          $('.mob-overlay').fadeIn(300);
      }
  
      function mobOverlayRemove() {
          $('.mob-overlay').fadeOut(300);
          $('body').removeClass('show-block-mobile');
          setTimeout(function () {
              $('body').removeClass('body-fixed');
          },510)
  
      }
  
      function openMobMenuNew() {
          $('.menu_mob').click(function () {
              mobOverlayAdd()
              $('body').addClass('body-fixed show-block-mobile');
  
  
          })
      }
  
      function closeCallMobileHide() {
          $('.call-mobile-wr').removeClass('visible')
          setTimeout(function () {
              $('.call-mobile-wr').removeClass('open')
          },200)
      }
  
      function closeMobMenu() {
          $('body').on('click','.mob-overlay',function () {
              mobOverlayRemove();
          })
  
          $('.close-mobile-menu').click(function () {
              mobOverlayRemove();
          })
      }
  
  
      function canvasFunction() {
          var percentBl = $(".percent-bl");
          for (i=0; i < percentBl.length; i++){
              var width = (typeof $(percentBl[i]).attr("data-width") != 'undefined') ? Math.round($(percentBl[i]).attr("data-width")) : 80;
              var procent = (Number($(percentBl[i]).html()) > 0 && Number($(percentBl[i]).html()) < 100) ? Math.round(Number($(percentBl[i]).html()) * 10)/10 : 0;
              var lineWidth = (typeof $(percentBl[i]).attr("data-lineWidth") != 'undefined') ? Number($(percentBl[i]).attr("data-lineWidth")) : width / 10;
              var size = width+lineWidth;
              var lineRound = (typeof $(percentBl[i]).attr("data-lineRound") != 'undefined') ? true : false;
              var borderColor = "#ccc"
              var color = $(percentBl[i]).css("color");
              $(percentBl[i]).css({"width": size + 'px', "height": size + 'px', "font-size": Math.floor((width-lineWidth) / 4) + 'px'});
              $(percentBl[i]).html('<canvas id="dial' + i + '" width="' + size + '" height="' + size + '"></canvas><p>' + procent + '%</p>');
              $("p", percentBl[i]).css({"line-height": size + 'px'});
              var canvas = document.getElementById("dial" + i);
              var context = canvas.getContext("2d");
              var radian = 2*Math.PI*procent/100;
              context.arc(width/2+lineWidth/2, width/2+lineWidth/2, width/2, 0, 2*Math.PI, false);
              context.lineWidth = lineWidth;
              context.strokeStyle = borderColor;
              context.stroke();
              context.beginPath();
              context.arc(width/2+lineWidth/2, width/2+lineWidth/2, width/2, 1.5 * Math.PI, radian+1.5 * Math.PI, false);
              context.strokeStyle = color;
              if (lineRound == true && lineWidth < width) context.lineCap = "round";
              context.stroke();
          }
      }
  
      function scrollToForm() {
          $('body').on('click','.answers-wr span', function () {
95f0b726   Anastasia   - comment answer ...
96
              $("#answer-form").find('.field-comment-parent_id').find("#comment-parent_id").val($(this).data('id'));
8f340aa7   Anastasia   - main page
97
98
99
100
              var block = $('.hidden-comments-form-card');
              block.addClass('vis_');
              $('body, html').animate({scrollTop:block.offset().top - 36},500)
  
e47109b0   Anastasia   - support
101
102
103
104
105
106
          });
  //        $('body').on('click','.hidden-comments-form-card button', function () {
  //            $('.hidden-comments-form-card').removeClass('vis_');
  //
  //            alert('thiiiis')
  //        })
8f340aa7   Anastasia   - main page
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
  
      }
      
      function cardHideDesk() {
          $('body').on('click','.mob-card-desk-btn span', function () {
              var hideText = $(this).parent().data('hide');
              var showText = $(this).parent().data('show');
              if($('.card-desk-text').hasClass('show_')){
                  $('.card-desk-text').removeClass('show_');
                  $(this).html(showText);
  
              } else {
                  $('.card-desk-text').addClass('show_');
                  $(this).html(hideText);
              }
          })
      }
  
  
      function inputNumber() {
          $(document).on('keypress', '.price-input input', function (e) {
              if (!(e.which == 8 || (e.which > 47 && e.which < 58))) {
                  return false;
              }
          });
      }
  
      function phoneMask() {
          var phoneInput = '.phones_mask input';
  
          if($('body').find('.phones_mask').find('input').length>0){
              $(phoneInput).mask('(000) 000-00-00');
              $(phoneInput).focus(function () {
  
                  var text = $(this).val();
                  $(this).val(text);
                  if(($(this).val())== '') {$(this).val('(0')}
              });
              $(phoneInput).focusout(function () {
                  var phoneVal = $(this).val();
                  if(phoneVal.length <15) {$(this).val('')}
              })
0060a4ca   Anastasia   first commit
149
150
          }
      }
8f340aa7   Anastasia   - main page
151
  
6c6f2e19   Виталий   account form
152
153
154
155
156
157
158
159
160
161
162
      function accountCabinet() {
          $('.tabs-account ul li').click(function () {
              var index = $(this).index();
              var tabs = $('.tabs-account-forms');
              $('.tabs-account ul li').removeClass('active');
              $(this).addClass('active');
              $('.tabs-account-forms').removeClass('active')
              $(tabs[index]).addClass('active')
          })
      }
  
8f340aa7   Anastasia   - main page
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
      $(window).resize(function () {
          // heightSliderCol();
          footerBottom();
          if(window.innerWidth>=992){
              mobOverlayRemove()
              $('#menu-mob-hidden').removeClass('visible')
              setTimeout(function () {
                  $('#menu-mob-hidden').removeClass('opens')
              },200)
              $('body').removeClass('off-scroll')
              $('body').removeClass('hidden_scroll-y')
              $('.mob_filters_wr').attr('style','')
          }
      })
  
      function modalForms() {
          $('body').on('click','.modal-link', function (e) {
  
              e.preventDefault();
              e.stopPropagation();
  
  
              mobOverlayRemove()
              $('#menu-mob-hidden').removeClass('visible')
              setTimeout(function () {
                  $('#menu-mob-hidden').removeClass('opens')
              },200)
              $('body').removeClass('off-scroll')
  
              mobOverlayRemove()
              closeCallMobileHide()
              $('.btn_call').removeClass('close')
              $('.call-mobile-wr').removeClass('open')
              $('body').removeClass('off-scroll')
  
  
              var idForm = $(this).data('form');
  
  
              var pos = ($(window).scrollTop()) + 30;
              if($(this).hasClass('fixed-modal')){
                  pos = 30;
                  $('#'+idForm).css({position:'fixed'})
              }
              if($(this).hasClass('pos-top')){
                  pos = 30;
              }
              $('#overlay').removeClass('overlay_cloned');
              $('#overlay').fadeIn(400,
                  function(){
                      $('#'+idForm)
                          .css('display', 'block')
                          .animate({opacity: 1, top: pos}, 200);
                  });
          })
      }
  
      closeForms();
      function closeForms() {
          $('#modal_close, #overlay').click( function(){
              $('.forms_').animate({opacity: 0, top: '0'}, 200,function(){
                  $(this).css('display', 'none');
                  $(this).prev("#overlay").css('display', 'none');
                  $('#overlay').fadeOut(400);
              });
              $('#success_form').animate({opacity: 0, top: '0'}, 200,function(){
                  $(this).css('display', 'none');
                  $(this).prev("#overlay").css('display', 'none');
                  $(this).css({top:'50%'});
              });
          });
      }
      //после удачной отправки формы запускать success()
      // success()
e47109b0   Anastasia   - support
237
238
239
240
241
242
243
244
245
246
247
248
  //    function success(message) {
  //        var pos = ($(window).scrollTop()) + 30;
  //        $('.forms_').animate({opacity: 0, top: '0'}, 200,function(){
  //            $(this).css('display', 'none');
  //        });
  //        setTimeout(function () {
  //            $('#overlay').fadeIn(400);
  //            $('#success_form').find('.txt-success').html(message);
  //            $('#success_form').css('display', 'block').animate({opacity: 1, top: pos}, 700);
  //        },400)
  //    }
  
9afd152f   Anastasia   - support from main
249
250
251
252
253
254
255
      $(document).on('beforeSubmit', '#search-form', function(e) {
          if ($("#next").data('id') != ''){
              console.log('ololo');
              window.location.replace('/support/index?book_id='+$("#next").data('id'));
              return false;
          }
      });
e47109b0   Anastasia   - support
256
  
db1feeef   Anastasia   author page
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
      $(document).on('click', '.change-password-link span', function(e) {
          e.preventDefault();
          var password = $('#changepassword-password');
          var passwordConfirm = $('#changepassword-confirmpassword');
          if (password.parent().hasClass('has-error') || passwordConfirm.parent().hasClass('has-error')){
              return false;
          }
          if (password.val() == '' || passwordConfirm.val() == ''){
              return false;
          }
  
          $.ajax(
              {
                  url: '/author/change-password',
                  type: "POST",
                  data: {
                      'password': password.val(),
                      'passwordConfirm': passwordConfirm.val()
                  },
                  success: function(data) {
                      if (data){
                          password.val('');
                          passwordConfirm.val('');
                          passwordConfirm.parent().parent().after('<p>Пароль змінено</p>')
                      }
                  }
              }
          );
  
0e25b179   Anastasia   author page projects
286
      });
db1feeef   Anastasia   author page
287
  
0e25b179   Anastasia   author page projects
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
      $(document).on('click', '.account-delete a', function(e) {
          e.preventDefault();
          $.ajax(
              {
                  url: $(this).attr('href'),
                  type: "GET",
                  success: function(data) {
                      if (data){
                          reloadContent('/author/index');
                      }
                  }
              }
          );
      });
      function reloadContent(url) {
          $.get(url, {
          }, function(data) {
              var parser = new DOMParser();
              var el = parser.parseFromString(data, 'text/html');
              console.log(el.getElementById('tab1').innerHTML);
              $('#tab1')
                  .html(el.getElementById('tab1').innerHTML);
              $('#tab2')
                  .html(el.getElementById('tab2').innerHTML);
          })
           .fail(function(data) {
               console.log(data);
           });
      }
e47109b0   Anastasia   - support
317
  });
0e25b179   Anastasia   author page projects
318
319
320
  
  
  
e47109b0   Anastasia   - support
321
322
323
324
325
326
327
328
329
330
331
  function success(message) {
      document.querySelector('#success_form .txt-success').innerHTML = message;
      var pos = ($(window)
              .scrollTop()) + 30 + 60;
      $('.forms_')
          .animate({
              opacity: 0,
              top: '0'
          }, 200, function() {
              $(this)
                  .css('display', 'none');
8f340aa7   Anastasia   - main page
332
          });
e47109b0   Anastasia   - support
333
334
335
336
337
338
339
340
341
342
343
344
      setTimeout(function() {
          $('#overlay')
              .fadeIn(400, function() {
                  $('#success_form')
                      .css('display', 'block')
                      .animate({
                          opacity: 1,
                          top: pos
                      }, 700);
              });
      }, 400)
  }
8f340aa7   Anastasia   - main page
345
  
e47109b0   Anastasia   - support
346
  window.success = success;
8f340aa7   Anastasia   - main page