PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.8
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.8
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
learnpress / assets / js / admin / admin-notices.min.js

admin-notices.min.js in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.4.8, at assets/js/admin/admin-notices.min.js

1 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import{lpOnElementReady}from"../utils.js";import API from"../api.js";let elLPAdminNotices=null,dataHtml=null;const queryString=window.location.search,urlParams=new URLSearchParams(queryString),tab=urlParams.get("tab"),notifyAddonsNewVersion=()=>{try{const e=document.querySelector("#adminmenu");if(!e)return;const t=e.querySelector("#toplevel_page_learn_press");if(!t)return;const n=t.querySelector(".wp-menu-name");if(!n)return;const s=document.querySelector("input[name=lp-addons-new-version-totals]");if(!s)return;const i='<span class="tab-lp-admin-notice"></span>';n.insertAdjacentHTML("beforeend",i);const a=t.querySelector('a[href="admin.php?page=learn-press-addons"]');if(!a)return;const o=`<span style="margin-left: 5px" class="update-plugins">${s.value}</span>`;a.setAttribute("href","admin.php?page=learn-press-addons&tab=update"),a.insertAdjacentHTML("beforeend",o)}catch(e){console.log(e)}},callAdminNotices=(e="")=>{if(!lpGlobalSettings.is_admin)return;let t=tab?`?tab=${tab}`:"";t+=e?(tab?"&":"?")+`${e}`:"",fetch(API.admin.apiAdminNotice+t,{method:"POST",headers:{"X-WP-Nonce":lpGlobalSettings.nonce}}).then(e=>e.json()).then(e=>{const{status:t,message:n,data:s}=e;"success"===t?"Dismissed!"!==n&&(dataHtml=s.content,0===dataHtml.length?elLPAdminNotices.style.display="none":(elLPAdminNotices.innerHTML=dataHtml,elLPAdminNotices.style.display="block",notifyAddonsNewVersion())):dataHtml=n}).catch(e=>{console.log(e)})};lpOnElementReady(".lp-admin-notices",()=>{elLPAdminNotices=document.querySelector(".lp-admin-notices"),callAdminNotices()}),document.addEventListener("click",e=>{const t=e.target;if(t.classList.contains("btn-lp-notice-dismiss")&&(e.preventDefault(),confirm("Are you sure you want to dismiss this notice?"))){const e=t.closest(".lp-notice");callAdminNotices(`dismiss=${t.getAttribute("data-dismiss")}`),e.remove(),0===elLPAdminNotices.querySelectorAll(".lp-notice").length&&(elLPAdminNotices.style.display="none")}});