gatsby-core-theme 3.0.0 → 5.0.1
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/CHANGELOG.md +116 -0
- package/__mocks__/gatsby.js +16 -4
- package/gatsby-node.esm.js +7 -1
- package/jest.config.js +8 -1
- package/package.json +1 -1
- package/src/components/app.js +1 -17
- package/src/components/atoms/author/author.test.js +12 -5
- package/src/components/atoms/author-box/index.js +10 -11
- package/src/components/atoms/breadcrumbs/breadcrumbs.test.js +8 -0
- package/src/components/atoms/carousel/pagination-item/pagination-item.test.js +18 -3
- package/src/components/atoms/collapse/collapse.test.js +10 -0
- package/src/components/atoms/collapse/index.js +3 -1
- package/src/components/atoms/content-box/content-box.test.js +9 -6
- package/src/components/atoms/content-box/index.js +13 -12
- package/src/components/atoms/custom-select/index.js +31 -30
- package/src/components/atoms/disclaimer/disclaimer.test.js +16 -1
- package/src/components/atoms/iframe/iframe.module.scss +3 -0
- package/src/components/atoms/iframe/iframe.test.js +6 -0
- package/src/components/atoms/image/image.test.js +19 -6
- package/src/components/atoms/image/index.js +2 -4
- package/src/components/atoms/info-grid/index.js +10 -12
- package/src/components/atoms/label/index.js +2 -2
- package/src/components/atoms/label/label.test.js +4 -0
- package/src/components/atoms/module-title/index.js +9 -9
- package/src/components/atoms/module-title/module-title.test.js +76 -0
- package/src/components/atoms/open-graph/open-graph.test.js +34 -5
- package/src/components/atoms/operator-cta/operator-cta.test.js +26 -3
- package/src/components/atoms/scroll-to-top/scroll-to-top.test.js +6 -0
- package/src/components/atoms/search/autocomplete/operator.js +1 -1
- package/src/components/atoms/sitemap/index.js +1 -1
- package/src/components/atoms/spotlights/index.js +59 -54
- package/src/components/atoms/spotlights/spotlights.module.scss +25 -37
- package/src/components/atoms/spotlights/spotlights.test.js +13 -15
- package/src/components/molecules/carousel/default-slide/index.js +3 -1
- package/src/components/molecules/content/content.test.js +127 -0
- package/src/components/molecules/content/index.js +0 -1
- package/src/components/molecules/header/header.test.js +6 -0
- package/src/components/molecules/main/main.test.js +48 -12
- package/src/components/molecules/menu/menu.test.js +27 -0
- package/src/components/molecules/module/module.test.js +134 -0
- package/src/components/molecules/operator-banner/operator-banner.test.js +7 -1
- package/src/components/molecules/pagination/pagination-with-midpoints.module.scss +48 -49
- package/src/components/molecules/slider/index.js +6 -0
- package/src/components/organisms/anchor/index.js +14 -11
- package/src/components/organisms/carousel/index.js +16 -3
- package/src/components/organisms/cookie-consent/cookie-consent.test.js +7 -1
- package/src/components/organisms/form/form.test.js +21 -0
- package/src/components/organisms/form/index.js +5 -1
- package/src/components/organisms/navigation/index.js +9 -1
- package/src/components/organisms/search/index.js +0 -1
- package/src/components/organisms/toplist/list/index.js +1 -1
- package/src/components/organisms/toplist/list/list.test.js +30 -0
- package/src/components/pages/body/index.js +4 -6
- package/src/components/pages/tracker/index.js +1 -1
- package/src/constants/settings.js +1 -1
- package/src/helpers/getters.js +10 -6
- package/src/helpers/getters.test.js +1 -3
- package/src/helpers/processor/common.test.js +7 -1
- package/src/helpers/processor/index.js +2 -3
- package/src/helpers/processor/index.test.js +21 -0
- package/src/helpers/schema.js +14 -6
- package/src/helpers/schema.test.js +17 -14
- package/src/hooks/gatsby-img/index.js +1 -1
- package/src/hooks/lazy-image/index.js +37 -37
- package/src/hooks/lazy-image/lazy-image.test.js +39 -0
- package/src/hooks/lazy-picture/index.js +1 -1
- package/src/hooks/link/link.test.js +42 -1
- package/src/hooks/tabs/tab/tab.test.js +41 -0
- package/src/styles/utils/variables/_main.scss +3 -1
- package/tests/envVars.js +1 -1
- package/tests/factories/modules/content.factory.js +6 -3
- package/tests/factories/modules/modules.factory.js +152 -0
- package/tests/factories/modules/schema.factory.js +87 -0
- package/tests/factories/pages/list.factory.js +2 -1
- package/tests/factories/pages/pages.factory.js +192 -0
- package/tests/factories/sections/header.factory.js +8 -2
- package/src/components/atoms/logo/index.js +0 -36
- package/src/components/atoms/logo/logo.module.scss +0 -4
- package/src/components/atoms/logo/logo.stories.js +0 -57
- package/src/components/atoms/logo/logo.test.js +0 -30
- package/src/components/molecules/section/index.js +0 -24
- package/src/components/molecules/section/section.test.js +0 -16
- package/src/components/molecules/sidebar/index.js +0 -25
- package/src/components/molecules/sidebar/sidebar.module.scss +0 -3
- package/src/components/molecules/sidebar/sidebar.test.js +0 -30
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
/* eslint-disable jsx-a11y/anchor-is-valid */
|
|
2
|
+
/* eslint-disable no-unused-expressions */
|
|
1
3
|
import React from 'react';
|
|
2
|
-
import { render, cleanup } from '@testing-library/react';
|
|
4
|
+
import { render, cleanup, fireEvent } from '@testing-library/react';
|
|
3
5
|
import '@testing-library/jest-dom/extend-expect';
|
|
4
6
|
import Link from '.';
|
|
5
7
|
|
|
@@ -32,6 +34,45 @@ describe('Link Component', () => {
|
|
|
32
34
|
);
|
|
33
35
|
expect(getByText('Test Content').closest('a').classList.contains('test-gtm')).toBe(true);
|
|
34
36
|
});
|
|
37
|
+
test('with window.location.pathname: /preview', () => {
|
|
38
|
+
delete global.window.location;
|
|
39
|
+
global.window = Object.create(window);
|
|
40
|
+
global.window.location = {
|
|
41
|
+
pathname: '/preview',
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
const { container } = render(
|
|
45
|
+
<Link to="test/link">
|
|
46
|
+
<span>Just Test</span>
|
|
47
|
+
</Link>
|
|
48
|
+
);
|
|
49
|
+
|
|
50
|
+
expect(container.querySelectorAll('a')).toHaveLength(1);
|
|
51
|
+
expect(container.querySelectorAll('a')[0]).toHaveAttribute('href', 'test/link');
|
|
52
|
+
const ahref = container.querySelector('a');
|
|
53
|
+
// eslint-disable-next-line no-lone-blocks
|
|
54
|
+
{
|
|
55
|
+
ahref && fireEvent.click(ahref);
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
test('Without to false ', () => {
|
|
60
|
+
const { getByText } = render(
|
|
61
|
+
<Link to="">
|
|
62
|
+
<span>Just Test</span>
|
|
63
|
+
</Link>
|
|
64
|
+
);
|
|
65
|
+
expect(getByText('Just Test')).toBeTruthy();
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
test('Without to ', () => {
|
|
69
|
+
const { getByText } = render(
|
|
70
|
+
<Link to="">
|
|
71
|
+
<span>Just Test 2</span>
|
|
72
|
+
</Link>
|
|
73
|
+
);
|
|
74
|
+
expect(getByText('Just Test 2')).toBeTruthy();
|
|
75
|
+
});
|
|
35
76
|
});
|
|
36
77
|
afterEach(() => {
|
|
37
78
|
cleanup();
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { render, cleanup } from '@testing-library/react';
|
|
3
|
+
|
|
4
|
+
import Tab from './tab';
|
|
5
|
+
|
|
6
|
+
describe('Tab component', () => {
|
|
7
|
+
test(' activeTab and tabId have not same props', () => {
|
|
8
|
+
const { container, getByText } = render(<Tab label="test" activeTab="2" tabId="3" />);
|
|
9
|
+
expect(getByText('test')).toBeTruthy();
|
|
10
|
+
expect(container.querySelectorAll('li')).toHaveLength(1);
|
|
11
|
+
expect(container.querySelectorAll('button')).toHaveLength(1);
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
test('activeTab and tabId have same props', () => {
|
|
15
|
+
const { container, getByText } = render(<Tab label="test2" activeTab="2" tabId="2" />);
|
|
16
|
+
expect(getByText('test2'));
|
|
17
|
+
expect(container.querySelector('button')).toHaveAttribute(
|
|
18
|
+
'class',
|
|
19
|
+
' active tabs-menu-gtm btn-cta'
|
|
20
|
+
);
|
|
21
|
+
expect(container.querySelectorAll('li')).toHaveLength(1);
|
|
22
|
+
expect(container.querySelectorAll('button')).toHaveLength(1);
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
test('activeTab and tabId have same props and active class name', () => {
|
|
26
|
+
const { container, getByText } = render(
|
|
27
|
+
<Tab label="test3" activeTab="2" tabId="2" activeTabClass="activeTabClassTest" />
|
|
28
|
+
);
|
|
29
|
+
expect(getByText('test3'));
|
|
30
|
+
expect(container.querySelector('button')).toHaveAttribute(
|
|
31
|
+
'class',
|
|
32
|
+
' activeTabClassTest tabs-menu-gtm btn-cta'
|
|
33
|
+
);
|
|
34
|
+
expect(container.querySelectorAll('li')).toHaveLength(1);
|
|
35
|
+
expect(container.querySelectorAll('button')).toHaveLength(1);
|
|
36
|
+
});
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
afterEach(() => {
|
|
40
|
+
cleanup();
|
|
41
|
+
});
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
--secondary-text-color: var(--color-4);
|
|
10
10
|
--heading-base-color: var(--color-12);
|
|
11
11
|
--text-link-color: var(--color-13);
|
|
12
|
-
--full-star-fill-color: #fba62f;
|
|
12
|
+
--full-star-fill-color: #fba62f;
|
|
13
13
|
--full-star-border-color: #fba62f;
|
|
14
14
|
--halfFull-star-fill-color: #fba62f;
|
|
15
15
|
--halfEmpty-star-fill-color: white;
|
|
@@ -85,6 +85,8 @@
|
|
|
85
85
|
--second-table-background: var(--color-17);
|
|
86
86
|
--secondary-module-background: var(--color-42);
|
|
87
87
|
|
|
88
|
+
--pagination-with-midpoints-color: #ccc;
|
|
89
|
+
|
|
88
90
|
// HTML Sitemap
|
|
89
91
|
--template-name-icon-background: #ff893f;
|
|
90
92
|
--page-number-background: #393939;
|
package/tests/envVars.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
process.env.GATSBY_SITE_NAME = '
|
|
1
|
+
process.env.GATSBY_SITE_NAME = 'Irishluck.ie';
|
|
2
2
|
process.env.GATSBY_SITE_URL = 'http://urltest.com/';
|
|
3
3
|
process.env.IMAGE_CDN_URL = 'https://cdn.images.com';
|
|
4
4
|
process.env.TRACKER_LINK_FORMAT_MAIN = '[no],[visit],short_name';
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @description Factory to retrieve data related to content (Main, Sidebar and Body) those contents can be everywhere
|
|
3
3
|
*/
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
export function getSingleContentData(
|
|
5
|
+
module_title_tag = 'h2',
|
|
6
|
+
contentIndex = 1,
|
|
7
|
+
moduleTitle = 'Test Content '
|
|
8
|
+
) {
|
|
6
9
|
const contentData = {
|
|
7
10
|
module_title_tag,
|
|
8
|
-
module_title:
|
|
11
|
+
module_title: `${moduleTitle} ${contentIndex}`,
|
|
9
12
|
value: `<p><i>Hello</i> I am content ${contentIndex}</p><img src="#" alt="test image">`,
|
|
10
13
|
};
|
|
11
14
|
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
/* eslint-disable no-console */
|
|
2
|
+
import { getListContentData } from '~tests/factories/modules/content.factory';
|
|
3
|
+
// import { sampleGameCards } from '~tests/factories/modules/card.factory.js';
|
|
4
|
+
import { getSpotlightItems } from '~tests/factories/modules/spotlights.factory.js';
|
|
5
|
+
import { multiToplistData } from '~tests/factories/modules/toplist.factory.js';
|
|
6
|
+
|
|
7
|
+
const BonusProps = {
|
|
8
|
+
value: {
|
|
9
|
+
review_link: 'https://www.irishluck.ie/leovegas-casino/',
|
|
10
|
+
rating: '4.8',
|
|
11
|
+
status: 'active',
|
|
12
|
+
logo_url: 'image-38.png',
|
|
13
|
+
url: 'https://www.leovegas.com',
|
|
14
|
+
short_name: 'leovegas',
|
|
15
|
+
name: 'LeoVegas Casino',
|
|
16
|
+
},
|
|
17
|
+
type: 'Bonus',
|
|
18
|
+
module_value_id: 245478,
|
|
19
|
+
name: 'bonus',
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
const archivesProp = {
|
|
23
|
+
items: [
|
|
24
|
+
{
|
|
25
|
+
title: 'title 1',
|
|
26
|
+
content: 'content 1',
|
|
27
|
+
label: 'label-1',
|
|
28
|
+
primary_action: '/primary_action',
|
|
29
|
+
secondary_action: '/secondary_action',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
title: 'title 2',
|
|
33
|
+
content: 'content 2',
|
|
34
|
+
label: 'label-2',
|
|
35
|
+
primary_action: '/primary_action',
|
|
36
|
+
secondary_action: '/secondary_action',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
title: 'title 3',
|
|
40
|
+
content: 'content 3',
|
|
41
|
+
label: 'label-3',
|
|
42
|
+
primary_action: '/primary_action',
|
|
43
|
+
secondary_action: '/secondary_action',
|
|
44
|
+
},
|
|
45
|
+
],
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
const ProsAndCons = {
|
|
49
|
+
pros: ['TestPro'],
|
|
50
|
+
cons: ['TestCons'],
|
|
51
|
+
module_value_id: 245475,
|
|
52
|
+
name: 'pros_and_cons',
|
|
53
|
+
anchored: 0,
|
|
54
|
+
anchor_label: null,
|
|
55
|
+
anchor_slug: null,
|
|
56
|
+
module_title: null,
|
|
57
|
+
module_title_tag: null,
|
|
58
|
+
background_color: null,
|
|
59
|
+
style: null,
|
|
60
|
+
style_id: null,
|
|
61
|
+
see_more_link: {
|
|
62
|
+
type: 'page',
|
|
63
|
+
value: null,
|
|
64
|
+
title: null,
|
|
65
|
+
},
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const accordionProps = {
|
|
69
|
+
items: [
|
|
70
|
+
{
|
|
71
|
+
title: 'Test Test',
|
|
72
|
+
content: '<p>This is just a jest</p>',
|
|
73
|
+
},
|
|
74
|
+
],
|
|
75
|
+
module_value_id: 245476,
|
|
76
|
+
name: 'accordion',
|
|
77
|
+
anchored: 0,
|
|
78
|
+
anchor_label: null,
|
|
79
|
+
anchor_slug: null,
|
|
80
|
+
module_title: null,
|
|
81
|
+
module_title_tag: null,
|
|
82
|
+
background_color: null,
|
|
83
|
+
style: null,
|
|
84
|
+
style_id: null,
|
|
85
|
+
see_more_link: {
|
|
86
|
+
type: 'page',
|
|
87
|
+
value: null,
|
|
88
|
+
title: null,
|
|
89
|
+
},
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
const anchorProps = {
|
|
93
|
+
name: 'anchor',
|
|
94
|
+
module_title: 'Page Contents',
|
|
95
|
+
module_title_tag: 'h2',
|
|
96
|
+
items: [
|
|
97
|
+
{
|
|
98
|
+
label: 'Game Selection',
|
|
99
|
+
type: 'module',
|
|
100
|
+
slug: 'game-selection',
|
|
101
|
+
},
|
|
102
|
+
],
|
|
103
|
+
module_value_id: 91620,
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
const imageProps = {
|
|
107
|
+
value: 'jumanji-slot-thumbnail.jpg',
|
|
108
|
+
value_object: {
|
|
109
|
+
width: '576',
|
|
110
|
+
height: '576',
|
|
111
|
+
url: 'https://assets-srv.s3.eu-west-1.amazonaws.com/jumanji-slot-thumbnail.jpg',
|
|
112
|
+
filename: 'jumanji-slot-thumbnail.jpg',
|
|
113
|
+
},
|
|
114
|
+
title: 'Tets',
|
|
115
|
+
alignment: 'align_left',
|
|
116
|
+
alt: null,
|
|
117
|
+
module_value_id: 245479,
|
|
118
|
+
name: 'image',
|
|
119
|
+
anchored: 0,
|
|
120
|
+
anchor_label: null,
|
|
121
|
+
anchor_slug: null,
|
|
122
|
+
module_title: null,
|
|
123
|
+
module_title_tag: null,
|
|
124
|
+
background_color: null,
|
|
125
|
+
style: null,
|
|
126
|
+
style_id: null,
|
|
127
|
+
see_more_link: {
|
|
128
|
+
type: 'page',
|
|
129
|
+
value: null,
|
|
130
|
+
title: null,
|
|
131
|
+
},
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
// eslint-disable-next-line import/prefer-default-export
|
|
135
|
+
export function objectsHolder(elm) {
|
|
136
|
+
if (!elm || elm == null || undefined) {
|
|
137
|
+
return null;
|
|
138
|
+
}
|
|
139
|
+
const data = {
|
|
140
|
+
content: getListContentData(3),
|
|
141
|
+
top_list: multiToplistData,
|
|
142
|
+
archive: archivesProp,
|
|
143
|
+
counter: [],
|
|
144
|
+
pros_and_cons: ProsAndCons,
|
|
145
|
+
accordion: accordionProps,
|
|
146
|
+
anchor: anchorProps,
|
|
147
|
+
bonus: BonusProps,
|
|
148
|
+
image: imageProps,
|
|
149
|
+
spotlights: getSpotlightItems(2),
|
|
150
|
+
};
|
|
151
|
+
return data[elm];
|
|
152
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
// eslint-disable-next-line import/prefer-default-export
|
|
2
|
+
export const schema = {
|
|
3
|
+
ie_en: {
|
|
4
|
+
1: [
|
|
5
|
+
{
|
|
6
|
+
title: 'Test Check',
|
|
7
|
+
path: 'test-check',
|
|
8
|
+
template_id: 1,
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
title: 'Just Test',
|
|
12
|
+
path: 'just-test',
|
|
13
|
+
template_id: 1,
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
2: [
|
|
17
|
+
{
|
|
18
|
+
title: 'Betway Sports Ireland',
|
|
19
|
+
path: 'sports/betway',
|
|
20
|
+
template_id: 2,
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
title: 'Unibet Sportsbook Ireland',
|
|
24
|
+
path: 'sports/unibet',
|
|
25
|
+
template_id: 2,
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export const templatesInSchema = {
|
|
32
|
+
1: {
|
|
33
|
+
short_name: 'default',
|
|
34
|
+
sections: [
|
|
35
|
+
'navigation',
|
|
36
|
+
'social_share_buttons',
|
|
37
|
+
'breadcrumbs',
|
|
38
|
+
'footer',
|
|
39
|
+
'sidebar',
|
|
40
|
+
'main',
|
|
41
|
+
'links',
|
|
42
|
+
'header',
|
|
43
|
+
],
|
|
44
|
+
breadcrumbs: {
|
|
45
|
+
25: [
|
|
46
|
+
{
|
|
47
|
+
page_id: 6236,
|
|
48
|
+
label: 'About us',
|
|
49
|
+
path: 'about-us',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
page_id: 5907,
|
|
53
|
+
label: 'Casino Reviews',
|
|
54
|
+
path: 'casino-reviews',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
page_id: 38434,
|
|
58
|
+
label: 'Casino Games',
|
|
59
|
+
path: 'casino-games',
|
|
60
|
+
},
|
|
61
|
+
],
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
2: {
|
|
65
|
+
short_name: 'operator_review',
|
|
66
|
+
sections: [
|
|
67
|
+
'navigation',
|
|
68
|
+
'social_share_buttons',
|
|
69
|
+
'breadcrumbs',
|
|
70
|
+
'footer',
|
|
71
|
+
'sidebar',
|
|
72
|
+
'main',
|
|
73
|
+
'post_main_operators',
|
|
74
|
+
'header',
|
|
75
|
+
'links',
|
|
76
|
+
],
|
|
77
|
+
breadcrumbs: {
|
|
78
|
+
25: [
|
|
79
|
+
{
|
|
80
|
+
page_id: 5907,
|
|
81
|
+
label: 'Casino Reviews',
|
|
82
|
+
path: 'casino-reviews',
|
|
83
|
+
},
|
|
84
|
+
],
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
};
|
|
@@ -26,7 +26,7 @@ export default function getPageDataList(length) {
|
|
|
26
26
|
url: 'https://rizk.com',
|
|
27
27
|
preconnect_links: ['1', '2', '3'],
|
|
28
28
|
seo_json_schema: [],
|
|
29
|
-
sections: { main: {} },
|
|
29
|
+
sections: { main: { extra_fields: { logos: { value: 339, type: 'default' } } } },
|
|
30
30
|
breadcrumbs: [
|
|
31
31
|
{
|
|
32
32
|
label: 'Sport',
|
|
@@ -50,6 +50,7 @@ export default function getPageDataList(length) {
|
|
|
50
50
|
one_liner: 'Oneliner',
|
|
51
51
|
},
|
|
52
52
|
},
|
|
53
|
+
deposit_methods: {},
|
|
53
54
|
},
|
|
54
55
|
extra_fields: {
|
|
55
56
|
summary_background: 'fe63f69ca1618cf2e7ff810197001dec.png',
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
site_markets: { za_en: [] },
|
|
3
|
+
pages: {
|
|
4
|
+
en: {
|
|
5
|
+
page: {
|
|
6
|
+
404: {
|
|
7
|
+
za_en: {
|
|
8
|
+
id: 99408,
|
|
9
|
+
market_id: 67,
|
|
10
|
+
updated_at: '2021-12-08',
|
|
11
|
+
created_at: '2021-12-08 16:15:50',
|
|
12
|
+
template_id: 97,
|
|
13
|
+
page_hreflang_group_id: null,
|
|
14
|
+
page_hreflang_combined: 0,
|
|
15
|
+
relation_id: 0,
|
|
16
|
+
relation_type: 'page',
|
|
17
|
+
market: 'za_en',
|
|
18
|
+
region_code: null,
|
|
19
|
+
author: null,
|
|
20
|
+
hard_coded_breadcrumbs: 0,
|
|
21
|
+
breadcrumb_ids: null,
|
|
22
|
+
categories: [],
|
|
23
|
+
author_id: null,
|
|
24
|
+
style_id: null,
|
|
25
|
+
language: 'en',
|
|
26
|
+
description: null,
|
|
27
|
+
meta_title: null,
|
|
28
|
+
meta_robots: null,
|
|
29
|
+
robot_options: {
|
|
30
|
+
page_index: 0,
|
|
31
|
+
links_followed: 0,
|
|
32
|
+
images_index: 0,
|
|
33
|
+
show_snippet: 0,
|
|
34
|
+
},
|
|
35
|
+
meta_description: null,
|
|
36
|
+
seo_keywords: null,
|
|
37
|
+
seo_raw_js: '',
|
|
38
|
+
seo_json_schema: null,
|
|
39
|
+
seo_json_schemas: [],
|
|
40
|
+
page_custom_hreflangs: null,
|
|
41
|
+
title: '404 Page',
|
|
42
|
+
vanity_label: null,
|
|
43
|
+
path: '404',
|
|
44
|
+
type: 'page',
|
|
45
|
+
template: 'default',
|
|
46
|
+
extra_fields: [],
|
|
47
|
+
banner: null,
|
|
48
|
+
featured_image: null,
|
|
49
|
+
canonical_url: null,
|
|
50
|
+
canonical_url_page_id: null,
|
|
51
|
+
status: 'active',
|
|
52
|
+
page_group_id: null,
|
|
53
|
+
page_group_combined: 0,
|
|
54
|
+
page_group_custom_items: null,
|
|
55
|
+
sections: {
|
|
56
|
+
navigation: null,
|
|
57
|
+
header: null,
|
|
58
|
+
main: null,
|
|
59
|
+
links: null,
|
|
60
|
+
site_markets: { za_en: [] },
|
|
61
|
+
pages: {
|
|
62
|
+
en: {
|
|
63
|
+
page: {
|
|
64
|
+
404: {
|
|
65
|
+
za_en: {
|
|
66
|
+
id: 99408,
|
|
67
|
+
market_id: 67,
|
|
68
|
+
updated_at: '2021-12-08',
|
|
69
|
+
created_at: '2021-12-08 16:15:50',
|
|
70
|
+
template_id: 97,
|
|
71
|
+
page_hreflang_group_id: null,
|
|
72
|
+
page_hreflang_combined: 0,
|
|
73
|
+
relation_id: 0,
|
|
74
|
+
relation_type: 'page',
|
|
75
|
+
market: 'za_en',
|
|
76
|
+
region_code: null,
|
|
77
|
+
author: null,
|
|
78
|
+
hard_coded_breadcrumbs: 0,
|
|
79
|
+
breadcrumb_ids: null,
|
|
80
|
+
categories: [],
|
|
81
|
+
author_id: null,
|
|
82
|
+
style_id: null,
|
|
83
|
+
language: 'en',
|
|
84
|
+
description: null,
|
|
85
|
+
meta_title: null,
|
|
86
|
+
meta_robots: null,
|
|
87
|
+
robot_options: {
|
|
88
|
+
page_index: 0,
|
|
89
|
+
links_followed: 0,
|
|
90
|
+
images_index: 0,
|
|
91
|
+
show_snippet: 0,
|
|
92
|
+
},
|
|
93
|
+
meta_description: null,
|
|
94
|
+
seo_keywords: null,
|
|
95
|
+
seo_raw_js: '',
|
|
96
|
+
seo_json_schema: null,
|
|
97
|
+
seo_json_schemas: [],
|
|
98
|
+
page_custom_hreflangs: null,
|
|
99
|
+
title: '404 Page',
|
|
100
|
+
vanity_label: null,
|
|
101
|
+
path: '404',
|
|
102
|
+
type: 'page',
|
|
103
|
+
template: 'default',
|
|
104
|
+
extra_fields: [],
|
|
105
|
+
banner: null,
|
|
106
|
+
featured_image: null,
|
|
107
|
+
canonical_url: null,
|
|
108
|
+
canonical_url_page_id: null,
|
|
109
|
+
status: 'active',
|
|
110
|
+
page_group_id: null,
|
|
111
|
+
page_group_combined: 0,
|
|
112
|
+
page_group_custom_items: null,
|
|
113
|
+
sections: {
|
|
114
|
+
navigation: null,
|
|
115
|
+
header: null,
|
|
116
|
+
main: null,
|
|
117
|
+
links: null,
|
|
118
|
+
footer: null,
|
|
119
|
+
popup: null,
|
|
120
|
+
footer_navigation: null,
|
|
121
|
+
},
|
|
122
|
+
},
|
|
123
|
+
},
|
|
124
|
+
},
|
|
125
|
+
},
|
|
126
|
+
},
|
|
127
|
+
footer: null,
|
|
128
|
+
popup: null,
|
|
129
|
+
footer_navigation: null,
|
|
130
|
+
},
|
|
131
|
+
},
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
},
|
|
135
|
+
},
|
|
136
|
+
market_sections: {
|
|
137
|
+
za_en: {
|
|
138
|
+
footer: {
|
|
139
|
+
extra_fields: {
|
|
140
|
+
logos: {
|
|
141
|
+
value: '339',
|
|
142
|
+
type: 'menu',
|
|
143
|
+
},
|
|
144
|
+
links: {
|
|
145
|
+
value: '340',
|
|
146
|
+
type: 'menu',
|
|
147
|
+
},
|
|
148
|
+
social_icons: {
|
|
149
|
+
value: '341',
|
|
150
|
+
type: 'menu',
|
|
151
|
+
},
|
|
152
|
+
copyright_disclaimer: {
|
|
153
|
+
value:
|
|
154
|
+
'<p ><br><a href="https://www.dmca.com/Protection/Status.aspx?ID=c33e0a2a-0b14-4cba-bb31-194e23738540&refurl=https://www.playcasino.co.za" target="_blank" title="DMCA Compliance information for playcasino.co.za"></a><a href="https://responsiblegambling.org.za/" target="_blank"></a>Advertising Disclosure: <a href="https://www.playcasino.co.za/">Playcasino.co.za</a> contains paid links to our partner affiliates. If a user visiting our site clicks on any of these paid links and makes a purchase from our partner, Playcasino.co.za will get paid a commission.</p><p>© PlayCasino All rights reserved</p><p>Marketing Performance Media Limited BVI Company number: 2028811 </p>',
|
|
155
|
+
type: 'html',
|
|
156
|
+
},
|
|
157
|
+
},
|
|
158
|
+
modules: [],
|
|
159
|
+
},
|
|
160
|
+
navigation: {
|
|
161
|
+
extra_fields: [],
|
|
162
|
+
modules: [
|
|
163
|
+
{
|
|
164
|
+
menu_id: 337,
|
|
165
|
+
menu_short_code: 'main_menu',
|
|
166
|
+
module_value_id: 213604,
|
|
167
|
+
name: 'menu',
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
value: '14076',
|
|
171
|
+
type: null,
|
|
172
|
+
module_value_id: 213608,
|
|
173
|
+
name: 'bonus',
|
|
174
|
+
anchored: 0,
|
|
175
|
+
anchor_label: null,
|
|
176
|
+
anchor_slug: null,
|
|
177
|
+
module_title: 'R500 Free No Deposit Bonus (Code: 500FM) + 500% up to R15,000',
|
|
178
|
+
module_title_tag: null,
|
|
179
|
+
background_color: null,
|
|
180
|
+
style: null,
|
|
181
|
+
style_id: null,
|
|
182
|
+
see_more_link: {
|
|
183
|
+
type: 'page',
|
|
184
|
+
value: null,
|
|
185
|
+
title: null,
|
|
186
|
+
},
|
|
187
|
+
},
|
|
188
|
+
],
|
|
189
|
+
},
|
|
190
|
+
},
|
|
191
|
+
},
|
|
192
|
+
};
|
|
@@ -11,11 +11,17 @@ export default function getHeaderSection() {
|
|
|
11
11
|
sections: {
|
|
12
12
|
header: {
|
|
13
13
|
extra_fields: {
|
|
14
|
-
header_background_image:
|
|
15
|
-
header_text:
|
|
14
|
+
header_background_image: '398f163bfd5a201716fb42aa72ae48b0.jpeg',
|
|
15
|
+
header_text: '<p><i>Hello</i> I am test text</p>',
|
|
16
16
|
},
|
|
17
17
|
},
|
|
18
18
|
},
|
|
19
|
+
author: {
|
|
20
|
+
name: 'Cameron Murphy',
|
|
21
|
+
image: 'cameron-murphy.jpeg',
|
|
22
|
+
image_alt: null,
|
|
23
|
+
image_asset_id: 37728,
|
|
24
|
+
},
|
|
19
25
|
},
|
|
20
26
|
};
|
|
21
27
|
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
import { prettyTracker, imagePrettyUrl } from '~helpers/getters';
|
|
4
|
-
import LazyImage from '~hooks/lazy-image';
|
|
5
|
-
|
|
6
|
-
import styles from './logo.module.scss';
|
|
7
|
-
|
|
8
|
-
const Logo = ({ item = {} }) => {
|
|
9
|
-
const prettyLink = prettyTracker(item);
|
|
10
|
-
|
|
11
|
-
return (
|
|
12
|
-
<div>
|
|
13
|
-
<a
|
|
14
|
-
className={`${styles.operatorLogo} logo-cta`}
|
|
15
|
-
href={prettyLink}
|
|
16
|
-
title={item.name}
|
|
17
|
-
target="_blank"
|
|
18
|
-
rel="noopener noreferrer"
|
|
19
|
-
aria-label={`${item.name} Link`}
|
|
20
|
-
>
|
|
21
|
-
<LazyImage alt={item.name} src={imagePrettyUrl(item.logo_url)} />
|
|
22
|
-
</a>
|
|
23
|
-
</div>
|
|
24
|
-
);
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
Logo.propTypes = {
|
|
28
|
-
item: PropTypes.shape({
|
|
29
|
-
name: PropTypes.string,
|
|
30
|
-
short_name: PropTypes.string,
|
|
31
|
-
status: PropTypes.string,
|
|
32
|
-
logo_url: PropTypes.string.isRequired,
|
|
33
|
-
}).isRequired,
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
export default Logo;
|