This commit is contained in:
commit
e548158c15
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,5 +1,15 @@
|
|||||||
# Notice Manager Changelog
|
# Notice Manager Changelog
|
||||||
|
|
||||||
|
## 0.26
|
||||||
|
|
||||||
|
Release date: Sep 1 2024
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Use Mutation Observer instead of deprecated `DOMNodeRemoved` event.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Add method `NoticeManager.bootstrap()` to initialize Notice manager.
|
||||||
|
|
||||||
## 0.25
|
## 0.25
|
||||||
|
|
||||||
Release date: Feb 18 2024
|
Release date: Feb 18 2024
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
"name": "abuyoyo/notice-manager",
|
"name": "abuyoyo/notice-manager",
|
||||||
"description": "Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link.",
|
"description": "Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link.",
|
||||||
"type": "wordpress-plugin",
|
"type": "wordpress-plugin",
|
||||||
"version": "0.25",
|
"version": "0.26",
|
||||||
"repositories": [
|
"repositories": [
|
||||||
{
|
{
|
||||||
"type": "vcs",
|
"type": "vcs",
|
||||||
|
|||||||
@ -2,27 +2,26 @@
|
|||||||
* NoticeManager class/module
|
* NoticeManager class/module
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
var NoticeManager = (function ($, document) {
|
const NoticeManager = function ($) {
|
||||||
let options = window.notice_manager_options
|
|
||||||
|
|
||||||
let selectors_notice = [
|
const selectors_notice = [
|
||||||
"div.notice",
|
"div.notice",
|
||||||
"div.updated",
|
"div.updated",
|
||||||
]
|
]
|
||||||
|
|
||||||
let selectors_warning = [
|
const selectors_warning = [
|
||||||
"div.notice-warning",
|
"div.notice-warning",
|
||||||
"div.update-nag",
|
"div.update-nag",
|
||||||
]
|
]
|
||||||
|
|
||||||
let selectors_error = [
|
const selectors_error = [
|
||||||
"div.error",
|
"div.error",
|
||||||
"div.notice-error",
|
"div.notice-error",
|
||||||
]
|
]
|
||||||
|
|
||||||
let selectors_all = selectors_notice.concat(selectors_warning, selectors_error)
|
const selectors_all = selectors_notice.concat(selectors_warning, selectors_error)
|
||||||
|
|
||||||
let selectors_skip = [
|
const selectors_skip = [
|
||||||
".inline",
|
".inline",
|
||||||
".below-h2",
|
".below-h2",
|
||||||
".theme-info .notice",
|
".theme-info .notice",
|
||||||
@ -30,136 +29,133 @@ var NoticeManager = (function ($, document) {
|
|||||||
]
|
]
|
||||||
|
|
||||||
// wait function used with autoCollapse
|
// wait function used with autoCollapse
|
||||||
let wait = function (ms) {
|
const wait = function (ms) {
|
||||||
var dfd = $.Deferred()
|
var dfd = $.Deferred()
|
||||||
setTimeout(dfd.resolve, ms) //callback, timeout till callback
|
setTimeout(dfd.resolve, ms) //callback, timeout till callback
|
||||||
return dfd.promise()
|
return dfd.promise()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const options = window.notice_manager_options
|
||||||
|
|
||||||
let notices
|
let notices
|
||||||
|
|
||||||
let button
|
let button
|
||||||
let panel
|
let panel
|
||||||
let haveClosed // set to true on first close/collect
|
|
||||||
let dismissNoticesButton
|
let dismissNoticesButton
|
||||||
|
|
||||||
// bootstrap
|
let haveClosed // set to true on first close/collect
|
||||||
// some of these need to run BEFORE document.ready - don't know why really
|
let panelObserver
|
||||||
button = $("#meta-link-notices")
|
|
||||||
panel = $("#meta-link-notices-wrap")
|
|
||||||
haveClosed = false
|
|
||||||
dismissNoticesButton = $("#meta-link-notices-wrap button.notice-dismiss")
|
|
||||||
|
|
||||||
dismissNoticesButton.on("click", () => {
|
|
||||||
screenMeta.close(panel, button)
|
|
||||||
if (! haveClosed){
|
|
||||||
NoticeManager.collectNotices()
|
|
||||||
}
|
|
||||||
NoticeManager.addCounter()
|
|
||||||
})
|
|
||||||
|
|
||||||
//original wp focus on click function
|
|
||||||
button.on("focus.scroll-into-view", (e) => {
|
|
||||||
if (e.target.scrollIntoView) e.target.scrollIntoView(false)
|
|
||||||
})
|
|
||||||
|
|
||||||
// scroll page to top when closing notice panel
|
|
||||||
// function used to work with $(this)
|
|
||||||
// using e.target instead
|
|
||||||
// not sure if this should perhaps be e.currentTarget
|
|
||||||
button.on("click", (e) => {
|
|
||||||
if ($(e.target).hasClass("screen-meta-active")) {
|
|
||||||
if (haveClosed) {
|
|
||||||
NoticeManager.addCounter()
|
|
||||||
}
|
|
||||||
|
|
||||||
// $(window).scrollTop(true)
|
|
||||||
} else {
|
|
||||||
NoticeManager.removeCounter()
|
|
||||||
|
|
||||||
// wait (500).then(function(){ //still jumpy sometimes - but scrolls to correct position 400 ~ 600
|
|
||||||
// $(window).scrollTop(true)
|
|
||||||
// })
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
/**
|
|
||||||
* document.on.ready
|
|
||||||
*/
|
|
||||||
$(() => {
|
|
||||||
|
|
||||||
console.log("NoticeManager.on.ready")
|
|
||||||
console.log("options")
|
|
||||||
console.log(options)
|
|
||||||
|
|
||||||
// bootstrap notices
|
|
||||||
// get all notices that are not explicitly marked as `.inline` or `.below-h2`
|
|
||||||
// we add .update-nag.inline for WordPress Update notice
|
|
||||||
notices = $( selectors_all.join(', ') )
|
|
||||||
.not(selectors_skip.join(', '))
|
|
||||||
.add("div.update-nag")
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Remove panel if there are no notices on this page
|
|
||||||
*/
|
|
||||||
if (options.screen_panel) {
|
|
||||||
NoticeManager.maybeRemoveNoticesPanel()
|
|
||||||
}
|
|
||||||
|
|
||||||
if (options.screen_panel && options.auto_collect) {
|
|
||||||
NoticeManager.collectNotices()
|
|
||||||
} else {
|
|
||||||
if (options.above_title) {
|
|
||||||
NoticeManager.moveAboveTitle()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* auto-open notices panel
|
|
||||||
*/
|
|
||||||
if (button.length && ! options.distraction_free) {
|
|
||||||
panel.toggle()
|
|
||||||
button.addClass("screen-meta-active")
|
|
||||||
screenMeta.open(panel, button)
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* auto-close notices panel after short delay
|
|
||||||
* only auto-close if we have collected notices previously
|
|
||||||
* only auto-close if no error messages
|
|
||||||
*/
|
|
||||||
if (options.auto_collapse && ! options.distraction_free) {
|
|
||||||
wait(4000).then(() => {
|
|
||||||
if (haveClosed && NoticeManager.getNoticesTopPriority() != 'error') {
|
|
||||||
screenMeta.close(panel, button)
|
|
||||||
NoticeManager.addCounter()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
if (options.distraction_free) {
|
|
||||||
NoticeManager.addCounterWhenClosed()
|
|
||||||
}
|
|
||||||
|
|
||||||
}) // end document.on.ready
|
|
||||||
|
|
||||||
// prevent jumpy scrollRestoration on reload page
|
|
||||||
// fixed below on 'beforeunload'
|
|
||||||
// if (history.scrollRestoration) {
|
|
||||||
// history.scrollRestoration = 'manual'
|
|
||||||
//}
|
|
||||||
/**
|
|
||||||
* Set history.scrollTop to prevent jump on page refresh when scrollRestoration = auto
|
|
||||||
*/
|
|
||||||
$(window).on("beforeunload", () => {
|
|
||||||
history.pushState(
|
|
||||||
{ scrollTop: document.body.scrollTop },
|
|
||||||
document.title,
|
|
||||||
document.location.pathname
|
|
||||||
)
|
|
||||||
})
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
bootstrap: () => {
|
||||||
|
|
||||||
|
// Init selectors
|
||||||
|
button = $("#meta-link-notices")
|
||||||
|
panel = $("#meta-link-notices-wrap")
|
||||||
|
dismissNoticesButton = $("#meta-link-notices-wrap button.notice-dismiss")
|
||||||
|
|
||||||
|
// bootstrap notices
|
||||||
|
// get all notices that are not explicitly marked as `.inline` or `.below-h2`
|
||||||
|
// we add .update-nag.inline for WordPress Update notice
|
||||||
|
notices = $(selectors_all.join(', '))
|
||||||
|
.not(selectors_skip.join(', '))
|
||||||
|
.add("div.update-nag")
|
||||||
|
|
||||||
|
// Set state
|
||||||
|
haveClosed = false
|
||||||
|
|
||||||
|
dismissNoticesButton.on("click", () => {
|
||||||
|
screenMeta.close(panel, button)
|
||||||
|
if (!haveClosed) {
|
||||||
|
NoticeManager.collectNotices()
|
||||||
|
}
|
||||||
|
NoticeManager.addCounter()
|
||||||
|
})
|
||||||
|
|
||||||
|
//original wp focus on click function
|
||||||
|
button.on("focus.scroll-into-view", (e) => {
|
||||||
|
if (e.target.scrollIntoView) e.target.scrollIntoView(false)
|
||||||
|
})
|
||||||
|
|
||||||
|
// scroll page to top when closing notice panel
|
||||||
|
// function used to work with $(this)
|
||||||
|
// using e.target instead
|
||||||
|
// not sure if this should perhaps be e.currentTarget
|
||||||
|
button.on("click", (e) => {
|
||||||
|
if ($(e.target).hasClass("screen-meta-active")) {
|
||||||
|
if (haveClosed) {
|
||||||
|
NoticeManager.addCounter()
|
||||||
|
}
|
||||||
|
|
||||||
|
// $(window).scrollTop(true)
|
||||||
|
} else {
|
||||||
|
NoticeManager.removeCounter()
|
||||||
|
|
||||||
|
// wait (500).then(function(){ //still jumpy sometimes - but scrolls to correct position 400 ~ 600
|
||||||
|
// $(window).scrollTop(true)
|
||||||
|
// })
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// prevent jumpy scrollRestoration on reload page
|
||||||
|
// fixed below on 'beforeunload'
|
||||||
|
// if (history.scrollRestoration) {
|
||||||
|
// history.scrollRestoration = 'manual'
|
||||||
|
//}
|
||||||
|
/**
|
||||||
|
* Set history.scrollTop to prevent jump on page refresh when scrollRestoration = auto
|
||||||
|
*/
|
||||||
|
$(window).on('beforeunload', () => history.pushState(
|
||||||
|
{ scrollTop: document.body.scrollTop },
|
||||||
|
document.title,
|
||||||
|
document.location.pathname
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove panel if there are no notices on this page
|
||||||
|
*/
|
||||||
|
if (options.screen_panel) {
|
||||||
|
NoticeManager.maybeRemoveNoticesPanel()
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.screen_panel && options.auto_collect) {
|
||||||
|
NoticeManager.collectNotices()
|
||||||
|
} else {
|
||||||
|
if (options.above_title) {
|
||||||
|
NoticeManager.moveAboveTitle()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* auto-open notices panel
|
||||||
|
*/
|
||||||
|
if (button.length && !options.distraction_free) {
|
||||||
|
panel.toggle()
|
||||||
|
button.addClass("screen-meta-active")
|
||||||
|
screenMeta.open(panel, button)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* auto-close notices panel after short delay
|
||||||
|
* only auto-close if we have collected notices previously
|
||||||
|
* only auto-close if no error messages
|
||||||
|
*/
|
||||||
|
if (options.auto_collapse && !options.distraction_free) {
|
||||||
|
wait(4000).then(() => {
|
||||||
|
if (haveClosed && NoticeManager.getNoticesTopPriority() != 'error') {
|
||||||
|
screenMeta.close(panel, button)
|
||||||
|
NoticeManager.addCounter()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.distraction_free) {
|
||||||
|
NoticeManager.addCounterWhenClosed()
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
getNotices: () => notices,
|
getNotices: () => notices,
|
||||||
|
|
||||||
getNoticesTopPriority: () => {
|
getNoticesTopPriority: () => {
|
||||||
@ -197,20 +193,18 @@ var NoticeManager = (function ($, document) {
|
|||||||
* When dismissible notices are dismissed, check if any notices are left on page.
|
* When dismissible notices are dismissed, check if any notices are left on page.
|
||||||
* If no notices are left - remove Notice Panel entirely
|
* If no notices are left - remove Notice Panel entirely
|
||||||
*/
|
*/
|
||||||
$(document).on(
|
panelObserver = new MutationObserver(() => {
|
||||||
"DOMNodeRemoved",
|
notices = panel
|
||||||
"#meta-link-notices-wrap div.notice",
|
.find(selectors_all.join(", "))
|
||||||
() => {
|
.filter(":visible")
|
||||||
notices = panel
|
NoticeManager.maybeRemoveNoticesPanel()
|
||||||
.find(selectors_all.join(", "))
|
});
|
||||||
.filter(":visible")
|
panelObserver.observe(panel.get(0), { childList: true, subtree: true }); // only run once
|
||||||
NoticeManager.maybeRemoveNoticesPanel()
|
|
||||||
}
|
|
||||||
)
|
|
||||||
},
|
},
|
||||||
|
|
||||||
addCounter: () => {
|
addCounter: () => {
|
||||||
if (!button.children('.plugin-count').length){
|
if (!button.children('.plugin-count').length) {
|
||||||
button.append(
|
button.append(
|
||||||
$("<span/>").text(notices.filter(":visible").length).attr({
|
$("<span/>").text(notices.filter(":visible").length).attr({
|
||||||
class: "plugin-count",
|
class: "plugin-count",
|
||||||
@ -223,7 +217,7 @@ var NoticeManager = (function ($, document) {
|
|||||||
* cannot rely on filter(:visible)
|
* cannot rely on filter(:visible)
|
||||||
*/
|
*/
|
||||||
addCounterWhenClosed: () => {
|
addCounterWhenClosed: () => {
|
||||||
if (!button.children('.plugin-count').length){
|
if (!button.children('.plugin-count').length) {
|
||||||
button.append(
|
button.append(
|
||||||
$("<span/>").text(notices.length).attr({
|
$("<span/>").text(notices.length).attr({
|
||||||
class: "plugin-count",
|
class: "plugin-count",
|
||||||
@ -247,7 +241,7 @@ var NoticeManager = (function ($, document) {
|
|||||||
$("#meta-link-notices-link-wrap").detach()
|
$("#meta-link-notices-link-wrap").detach()
|
||||||
$("#meta-link-notices-wrap").detach()
|
$("#meta-link-notices-wrap").detach()
|
||||||
|
|
||||||
if ($("#screen-meta-links").children().length == 0){
|
if ($("#screen-meta-links").children().length == 0) {
|
||||||
$("#screen-meta-links").detach()
|
$("#screen-meta-links").detach()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -262,4 +256,6 @@ var NoticeManager = (function ($, document) {
|
|||||||
notices.insertBefore(".wrap:first")
|
notices.insertBefore(".wrap:first")
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}(jQuery,document) )
|
}(jQuery);
|
||||||
|
|
||||||
|
jQuery(NoticeManager.bootstrap);
|
||||||
@ -2,7 +2,7 @@
|
|||||||
/**
|
/**
|
||||||
* Plugin Name: Notice Manager
|
* Plugin Name: Notice Manager
|
||||||
* Description: Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link panel to collect notices from page.
|
* Description: Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link panel to collect notices from page.
|
||||||
* Version: 0.25
|
* Version: 0.26
|
||||||
* Author: abuyoyo
|
* Author: abuyoyo
|
||||||
* Author URI: https://github.com/abuyoyo/
|
* Author URI: https://github.com/abuyoyo/
|
||||||
* Plugin URI: https://github.com/abuyoyo/notice-manager
|
* Plugin URI: https://github.com/abuyoyo/notice-manager
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user