Welcome to mirror list, hosted at ThFree Co, Russian Federation.

notification.js « utils « whats_new « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d4326c4b3a5fce87d0f0fcac64d11fb0a050ebc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export const STORAGE_KEY = 'display-whats-new-notification';

export const getVersionDigest = (appEl) => appEl.getAttribute('data-version-digest');

export const setNotification = (appEl) => {
  const versionDigest = getVersionDigest(appEl);
  const notificationEl = document.querySelector('.header-help');
  let notificationCountEl = notificationEl.querySelector('.js-whats-new-notification-count');

  const legacyStorageKey = 'display-whats-new-notification-13.10';
  const localStoragePairs = [
    [legacyStorageKey, false],
    [STORAGE_KEY, versionDigest],
  ];
  if (localStoragePairs.some((pair) => localStorage.getItem(pair[0]) === pair[1].toString())) {
    notificationEl.classList.remove('with-notifications');
    if (notificationCountEl) {
      notificationCountEl.parentElement.removeChild(notificationCountEl);
      notificationCountEl = null;
    }
  } else {
    notificationEl.classList.add('with-notifications');
  }
};