@financial-times/n-myft-ui 33.0.0 → 33.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -0
- package/build-state/npm-shrinkwrap.json +710 -613
- package/components/jsx/preferences-modal/index.js +6 -6
- package/karma.conf.js +1 -1
- package/myft/ui/lists.js +12 -0
- package/package.json +3 -3
@@ -11,10 +11,10 @@ const renderError = ({ message, preferencesModal }) => {
|
|
11
11
|
|
12
12
|
const removeError = ({ preferencesModal }) => {
|
13
13
|
renderError({
|
14
|
-
message:
|
14
|
+
message: '',
|
15
15
|
preferencesModal,
|
16
16
|
});
|
17
|
-
}
|
17
|
+
};
|
18
18
|
|
19
19
|
/**
|
20
20
|
* This preference modal is part of a test
|
@@ -60,7 +60,7 @@ const toggleCheckboxStatus = ({ instantAlertsCheckbox, isChecked }) => {
|
|
60
60
|
instantAlertsCheckbox.dataset.trackable = 'pop-up-box|set-instant-alert-on';
|
61
61
|
instantAlertsCheckbox.checked = false;
|
62
62
|
}
|
63
|
-
}
|
63
|
+
};
|
64
64
|
|
65
65
|
const tracking = (conceptId) => {
|
66
66
|
const trackingData = {
|
@@ -72,7 +72,7 @@ const tracking = (conceptId) => {
|
|
72
72
|
name: 'pop-up-box',
|
73
73
|
id: '72de123e-5082-11ee-be56-0242ac120002',
|
74
74
|
}
|
75
|
-
}
|
75
|
+
};
|
76
76
|
|
77
77
|
const trackingEvent = new CustomEvent('oTracking.event', {
|
78
78
|
detail: trackingData,
|
@@ -218,7 +218,7 @@ const toggleInstantAlertsPreference = async ({ event, conceptId, preferencesModa
|
|
218
218
|
instantAlertsCheckbox.removeAttribute('disabled');
|
219
219
|
};
|
220
220
|
|
221
|
-
const setCheckboxForAlertConceptToOff =
|
221
|
+
const setCheckboxForAlertConceptToOff = ({ event, preferencesModal }) => {
|
222
222
|
const conceptId = preferencesModal.dataset.conceptId;
|
223
223
|
const instantAlertsCheckbox = preferencesModal.querySelector('[data-component-id="myft-preferences-modal-checkbox"]');
|
224
224
|
|
@@ -231,7 +231,7 @@ const setCheckboxForAlertConceptToOff = ({ event, preferencesModal }) => {
|
|
231
231
|
instantAlertsCheckbox,
|
232
232
|
isChecked: false,
|
233
233
|
});
|
234
|
-
}
|
234
|
+
};
|
235
235
|
|
236
236
|
export default () => {
|
237
237
|
/**
|
package/karma.conf.js
CHANGED
package/myft/ui/lists.js
CHANGED
@@ -500,6 +500,12 @@ function openCreateListAndAddArticleOverlay (contentId, config) {
|
|
500
500
|
function initialEventListeners () {
|
501
501
|
|
502
502
|
document.body.addEventListener('myft.user.saved.content.add', event => {
|
503
|
+
//Only show the create list overlay if the saved article is the main article, this is useful if there are other article listed in the article page
|
504
|
+
//For example having a related articles that can also be saved
|
505
|
+
const currentContentId = document.querySelector('[data-content-id]').dataset.contentId;
|
506
|
+
if (event && event.detail && currentContentId !== event.detail.subject) {
|
507
|
+
return;
|
508
|
+
}
|
503
509
|
event.stopPropagation();
|
504
510
|
const contentId = event.detail.subject;
|
505
511
|
const configSet = event.currentTarget.querySelector('[data-myft-ui-save-config]');
|
@@ -512,6 +518,12 @@ function initialEventListeners () {
|
|
512
518
|
});
|
513
519
|
|
514
520
|
document.body.addEventListener('myft.user.saved.content.remove', event => {
|
521
|
+
//Only show unsave notification if the saved article is the main article, this is useful if there are other article listed in the article page
|
522
|
+
//For example having a related articles that can also be saved
|
523
|
+
const currentContentId = document.querySelector('[data-content-id]').dataset.contentId;
|
524
|
+
if (event && event.detail && currentContentId !== event.detail.subject) {
|
525
|
+
return;
|
526
|
+
}
|
515
527
|
event.stopPropagation();
|
516
528
|
const contentId = event.detail.subject;
|
517
529
|
return showUnsavedNotification(contentId);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@financial-times/n-myft-ui",
|
3
|
-
"version": "33.
|
3
|
+
"version": "33.1.0",
|
4
4
|
"description": "Client side component for interaction with myft",
|
5
5
|
"main": "server.js",
|
6
6
|
"scripts": {
|
@@ -63,7 +63,7 @@
|
|
63
63
|
"karma-chrome-launcher": "3.2.0",
|
64
64
|
"karma-firefox-launcher": "^1.0.0",
|
65
65
|
"karma-html-reporter": "^0.2.6",
|
66
|
-
"karma-mocha": "^
|
66
|
+
"karma-mocha": "^2.0.1",
|
67
67
|
"karma-sinon": "^1.0.5",
|
68
68
|
"karma-sinon-chai": "2.0.2",
|
69
69
|
"karma-sourcemap-loader": "^0.3.7",
|
@@ -71,7 +71,7 @@
|
|
71
71
|
"karma-webpack": "^4.0.2",
|
72
72
|
"lintspaces-cli": "^0.7.0",
|
73
73
|
"lolex": "5.1.2",
|
74
|
-
"mocha": "
|
74
|
+
"mocha": "^10.2.0",
|
75
75
|
"mockery": "2.1.0",
|
76
76
|
"node-fetch": "2.6.0",
|
77
77
|
"nodemon": "^1.9.2",
|