Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / history / js / mark-as-read.es6.js
diff --git a/web/core/modules/history/js/mark-as-read.es6.js b/web/core/modules/history/js/mark-as-read.es6.js
new file mode 100644 (file)
index 0000000..92d1d4a
--- /dev/null
@@ -0,0 +1,19 @@
+/**
+ * @file
+ * Marks the nodes listed in drupalSettings.history.nodesToMarkAsRead as read.
+ *
+ * Uses the History module JavaScript API.
+ *
+ * @see Drupal.history
+ */
+
+(function (window, Drupal, drupalSettings) {
+  // When the window's "load" event is triggered, mark all enumerated nodes as
+  // read. This still allows for Drupal behaviors (which are triggered on the
+  // "DOMContentReady" event) to add "new" and "updated" indicators.
+  window.addEventListener('load', () => {
+    if (drupalSettings.history && drupalSettings.history.nodesToMarkAsRead) {
+      Object.keys(drupalSettings.history.nodesToMarkAsRead).forEach(Drupal.history.markAsRead);
+    }
+  });
+}(window, Drupal, drupalSettings));