@times-components/ssr 2.59.33 → 2.59.35-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@times-components/ssr",
|
|
3
3
|
"main": "src",
|
|
4
|
-
"version": "2.59.
|
|
4
|
+
"version": "2.59.35-alpha.10+9ca9f38450",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"bundle:dev": "yarn cleanup-dist && webpack --config=webpack.config.js",
|
|
7
7
|
"bundle:prod": "yarn cleanup-dist && NODE_ENV=production webpack --config=webpack.config.js -p",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://github.com/newsuk/times-components#readme",
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@times-components/eslint-config-thetimes": "0.8.18",
|
|
39
|
-
"@times-components/fixture-generator": "0.35.1",
|
|
40
|
-
"@times-components/mock-tpa-server": "0.4.11",
|
|
38
|
+
"@times-components/eslint-config-thetimes": "^0.8.18",
|
|
39
|
+
"@times-components/fixture-generator": "^0.35.1",
|
|
40
|
+
"@times-components/mock-tpa-server": "^0.4.11",
|
|
41
41
|
"axe-core": "3.3.1",
|
|
42
42
|
"cypress-axe": "0.13.0",
|
|
43
43
|
"cypress-failed-log": "2.5.1",
|
|
@@ -52,14 +52,14 @@
|
|
|
52
52
|
"webpack": "4.30.0"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@times-components/article": "7.17.
|
|
56
|
-
"@times-components/author-profile": "6.19.19",
|
|
57
|
-
"@times-components/context": "1.24.0",
|
|
58
|
-
"@times-components/provider": "1.41.5",
|
|
59
|
-
"@times-components/schema": "0.7.5",
|
|
60
|
-
"@times-components/tealium": "1.15.3",
|
|
61
|
-
"@times-components/ts-styleguide": "1.50.34",
|
|
62
|
-
"@times-components/utils": "6.26.0",
|
|
55
|
+
"@times-components/article": "^7.17.54-alpha.10+9ca9f38450",
|
|
56
|
+
"@times-components/author-profile": "^6.19.19",
|
|
57
|
+
"@times-components/context": "^1.24.0",
|
|
58
|
+
"@times-components/provider": "^1.41.5",
|
|
59
|
+
"@times-components/schema": "^0.7.5",
|
|
60
|
+
"@times-components/tealium": "^1.15.3",
|
|
61
|
+
"@times-components/ts-styleguide": "^1.50.34",
|
|
62
|
+
"@times-components/utils": "^6.26.0",
|
|
63
63
|
"apollo-cache-inmemory": "1.5.1",
|
|
64
64
|
"apollo-client": "2.5.1",
|
|
65
65
|
"apollo-link": "1.2.4",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "9ca9f3845025b0e25ccc9085381155175b1298f3"
|
|
83
83
|
}
|
package/src/client/article.js
CHANGED
|
@@ -20,7 +20,7 @@ if (window.nuk && window.nuk.ssr && window.nuk.article) {
|
|
|
20
20
|
commentingFlag = true,
|
|
21
21
|
showAudioPlayer,
|
|
22
22
|
storefrontConfig,
|
|
23
|
-
|
|
23
|
+
hasCommentingEntitlement
|
|
24
24
|
} = window.nuk.article;
|
|
25
25
|
|
|
26
26
|
const { getCookieValue } = window.nuk;
|
|
@@ -43,7 +43,7 @@ if (window.nuk && window.nuk.ssr && window.nuk.article) {
|
|
|
43
43
|
commentingFlag,
|
|
44
44
|
showAudioPlayer,
|
|
45
45
|
storefrontConfig,
|
|
46
|
-
|
|
46
|
+
hasCommentingEntitlement
|
|
47
47
|
};
|
|
48
48
|
|
|
49
49
|
const clientOptions = {
|
package/src/component/article.js
CHANGED
|
@@ -37,7 +37,7 @@ module.exports = (client, analyticsStream, data, helmetContext) => {
|
|
|
37
37
|
commentingFlag,
|
|
38
38
|
showAudioPlayer,
|
|
39
39
|
storefrontConfig,
|
|
40
|
-
|
|
40
|
+
hasCommentingEntitlement
|
|
41
41
|
} = data;
|
|
42
42
|
|
|
43
43
|
return React.createElement(
|
|
@@ -87,7 +87,7 @@ module.exports = (client, analyticsStream, data, helmetContext) => {
|
|
|
87
87
|
isSavingEnabled: sharingSavingFlag,
|
|
88
88
|
isSharingEnabled: sharingSavingFlag,
|
|
89
89
|
isCommentEnabled: commentingFlag,
|
|
90
|
-
|
|
90
|
+
hasCommentingEntitlement,
|
|
91
91
|
isPreview
|
|
92
92
|
},
|
|
93
93
|
error,
|
package/src/server/article.js
CHANGED
|
@@ -29,7 +29,7 @@ module.exports = (
|
|
|
29
29
|
commentingFlag = true,
|
|
30
30
|
showAudioPlayer,
|
|
31
31
|
storefrontConfig,
|
|
32
|
-
|
|
32
|
+
hasCommentingEntitlement = false
|
|
33
33
|
},
|
|
34
34
|
userState
|
|
35
35
|
) => {
|
|
@@ -86,7 +86,7 @@ module.exports = (
|
|
|
86
86
|
commentingFlag,
|
|
87
87
|
showAudioPlayer,
|
|
88
88
|
storefrontConfig,
|
|
89
|
-
|
|
89
|
+
hasCommentingEntitlement
|
|
90
90
|
},
|
|
91
91
|
name: "article"
|
|
92
92
|
};
|