-
Notifications
You must be signed in to change notification settings - Fork 293
/
AdBlockerWarning.js
85 lines (75 loc) · 2.18 KB
/
AdBlockerWarning.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/**
* AdSense AdBlockerWarning component.
*
* Site Kit by Google, Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* External dependencies
*/
import PropTypes from 'prop-types';
import classnames from 'classnames';
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
/**
* Internal dependencies
*/
import Data from 'googlesitekit-data';
import ErrorIcon from '../../../../../svg/error.svg';
import { MODULES_ADSENSE } from '../../datastore/constants';
const { useSelect } = Data;
export default function AdBlockerWarning( { context } ) {
const isAdBlockerActive = useSelect( ( select ) =>
select( MODULES_ADSENSE ).isAdBlockerActive()
);
const isAccountSetupComplete = useSelect( ( select ) =>
select( MODULES_ADSENSE ).getAccountSetupComplete()
);
const isSiteSetupComplete = useSelect( ( select ) =>
select( MODULES_ADSENSE ).getSiteSetupComplete()
);
// Return nothing if loading or if everything is fine.
if ( ! isAdBlockerActive ) {
return null;
}
let message;
if ( isAccountSetupComplete && isSiteSetupComplete ) {
message = __(
'Ad blocker detected, you need to disable it to get the AdSense latest data.',
'google-site-kit'
);
} else {
message = __(
'Ad blocker detected, you need to disable it in order to set up AdSense.',
'google-site-kit'
);
}
return (
<div
className={ classnames( 'googlesitekit-settings-module-warning', {
[ `googlesitekit-settings-module-warning--${ context }` ]: context,
} ) }
>
<ErrorIcon height="20" width="23" /> { message }
</div>
);
}
AdBlockerWarning.propTypes = {
context: PropTypes.string,
};
AdBlockerWarning.defaultProps = {
context: '',
};