debian-mirror-gitlab/app/assets/javascripts/releases/release_notification_service.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.4 KiB
JavaScript
Raw Normal View History

2023-07-09 08:55:56 +05:30
import { s__, __, sprintf } from '~/locale';
2023-05-27 22:25:52 +05:30
import { createAlert, VARIANT_SUCCESS } from '~/alert';
2023-04-23 21:23:45 +05:30
const createReleaseSessionKey = (projectPath) => `createRelease:${projectPath}`;
export const putCreateReleaseNotification = (projectPath, releaseName) => {
window.sessionStorage.setItem(createReleaseSessionKey(projectPath), releaseName);
};
export const popCreateReleaseNotification = (projectPath) => {
const key = createReleaseSessionKey(projectPath);
const createdRelease = window.sessionStorage.getItem(key);
if (createdRelease) {
createAlert({
message: sprintf(s__('Release|Release %{createdRelease} has been successfully created.'), {
createdRelease,
}),
variant: VARIANT_SUCCESS,
});
window.sessionStorage.removeItem(key);
}
};
2023-07-09 08:55:56 +05:30
export const deleteReleaseSessionKey = (projectPath) => `deleteRelease:${projectPath}`;
export const putDeleteReleaseNotification = (projectPath, releaseName) => {
window.sessionStorage.setItem(deleteReleaseSessionKey(projectPath), releaseName);
};
export const popDeleteReleaseNotification = (projectPath) => {
const key = deleteReleaseSessionKey(projectPath);
const deletedRelease = window.sessionStorage.getItem(key);
if (deletedRelease) {
createAlert({
message: sprintf(__('Release %{deletedRelease} has been successfully deleted.'), {
deletedRelease,
}),
variant: VARIANT_SUCCESS,
});
window.sessionStorage.removeItem(key);
}
};