require(['jquery'], function($){
  $(window).load(function() {
    var xcomSubscribeModal = window.localStorage.getItem('xcomSubscribeModal');
    //Cookie consent has been accepted and get the gdprSettingsCookie cookie.
    function getGdprSettingsCookie() {
      return gdprSettingsCookie = document.cookie
        .split('; ')
        .find(row => row.indexOf('gdprSettings') !== -1);
    }
    //Display the Modal after 15s if the marketing cookie has been accepted/or all cookies have been accepted.
    function displaySubcribeModal(gdprSettingsCookie) {
      if (gdprSettingsCookie.indexOf('marketing') !== -1) {
        if (!xcomSubscribeModal || xcomSubscribeModal == 1 ) {
          setTimeout(function() {
            $('#subscribeModal').modal('show');
          }, 15000)
        }
      }
    }
    var gdprSettingsCookie = getGdprSettingsCookie();
    if (gdprSettingsCookie) {
      displaySubcribeModal(gdprSettingsCookie);
    } else {
      //If the gdpr cookie has not been accepted wait for the them to be accepted
      $('#cookieConsentContent').on('click', '#cookieConsentHide, #cookieConsentOK', function() {
        gdprSettingsCookie = getGdprSettingsCookie();
        displaySubcribeModal(gdprSettingsCookie);
      });
    }
    //Don't anymore display the modal if it was closed
    $('#subscribeModal').on( "click", ".close", function() {
      window.localStorage.setItem('xcomSubscribeModal', 0);
    });
    //Display "Thank you" message after subscription.
    $('#mauticform_subscribetonewsletteren').submit(function(event) {
      $('.contact-form').toggleClass('hidden')
      $('#subscribeModal .form-content').children('.subcription-thank-you').toggleClass('hidden');
    });
  });
});

