| 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273 |
1x
14x
14x
14x
14x
14x
14x
1x
1x
15x
15x
15x
8x
7x
1x
6x
1x
5x
1x
4x
1x
15x
15x
12x
12x
4x
6x
2x
2x
12x
12x
12x
12x
12x
12x
12x
12x
2x
10x
12x
12x
2x
2x
14x
14x
1x
1x
1x
1x
14x
14x
14x
14x
38x
38x
14x
39x
39x
3x
36x
22x
14x
14x
14x
14x
14x
| import React, { Component } from 'react';
import PropTypes from 'prop-types';
import '../styles/style.scss';
const isClient = typeof window !== 'undefined';
let ua;
let cookie;
class SmartBanner extends Component {
static propTypes = {
daysHidden: PropTypes.number,
daysReminder: PropTypes.number,
appStoreLanguage: PropTypes.string,
button: PropTypes.string,
storeText: PropTypes.objectOf(PropTypes.string),
price: PropTypes.objectOf(PropTypes.string),
force: PropTypes.string,
title: PropTypes.string,
author: PropTypes.string,
url: PropTypes.string,
ignoreIosVersion: PropTypes.bool,
};
static defaultProps = {
daysHidden: 15,
daysReminder: 90,
appStoreLanguage: isClient ? (window.navigator.language.slice(-2) ||
window.navigator.userLanguage.slice(-2) || 'us') : 'us',
button: 'View',
storeText: {
ios: 'On the App Store',
android: 'In Google Play',
windows: 'In Windows Store',
kindle: 'In the Amazon Appstore',
},
price: {
ios: 'Free',
android: 'Free',
windows: 'Free',
kindle: 'Free',
},
force: '',
title: '',
author: '',
};
constructor(props) {
super(props);
Eif (!__SERVER__) {
ua = require('ua-parser-js'); // eslint-disable-line global-require
cookie = require('cookie-cutter'); // eslint-disable-line global-require
}
this.state = {
type: '',
appId: '',
settings: {},
};
}
componentWillMount() {
this.setType(this.props.force);
}
componentWillReceiveProps(nextProps) {
Eif (nextProps.force !== this.props.force) {
this.setType(nextProps.force);
}
}
setType(deviceType) {
let type;
Eif (isClient) {
const agent = ua(window.navigator.userAgent);
if (deviceType) { // force set case
type = deviceType;
} else if (agent.os.name === 'Windows Phone' || agent.os.name === 'Windows Mobile') {
type = 'windows';
// iOS >= 6 has native support for Smart Banner
} else if (agent.os.name === 'iOS'
&& (this.props.ignoreIosVersion
|| parseInt(agent.os.version, 10) < 6
|| agent.browser.name !== 'Mobile Safari')
) {
type = 'ios';
} else if (agent.device.vender === 'Amazon' || agent.browser.name === 'Silk') {
type = 'kindle';
} else if (agent.os.name === 'Android') {
type = 'android';
}
}
this.setState({
type,
}, () => {
if (type) {
this.setSettingsByType();
}
});
}
setSettingsByType() {
const mixins = {
ios: {
appMeta: 'apple-itunes-app',
iconRels: ['apple-touch-icon-precomposed', 'apple-touch-icon'],
getStoreLink: () =>
`https://itunes.apple.com/${this.props.appStoreLanguage}/app/id`,
},
android: {
appMeta: 'google-play-app',
iconRels: ['android-touch-icon', 'apple-touch-icon-precomposed', 'apple-touch-icon'],
getStoreLink: () =>
'http://play.google.com/store/apps/details?id=',
},
windows: {
appMeta: 'msApplication-ID',
iconRels: ['windows-touch-icon', 'apple-touch-icon-precomposed', 'apple-touch-icon'],
getStoreLink: () =>
'http://www.windowsphone.com/s?appid=',
},
kindle: {
appMeta: 'kindle-fire-app',
iconRels: ['windows-touch-icon', 'apple-touch-icon-precomposed', 'apple-touch-icon'],
getStoreLink: () =>
'amzn://apps/android?asin=',
},
};
this.setState({
settings: mixins[this.state.type],
}, () => {
Eif (this.state.type) {
this.parseAppId();
}
});
}
parseAppId() {
Iif (!isClient) {
return '';
}
const meta = window.document.querySelector(
`meta[name="${this.state.settings.appMeta}"]`);
Iif (!meta) {
return '';
}
let appId = '';
if (this.state.type === 'windows') {
appId = meta.getAttribute('content');
} else {
appId = /app-id=([^\s,]+)/.exec(meta.getAttribute('content'))[1];
}
this.setState({
appId,
});
return appId;
}
hide = () => {
Eif (isClient) {
window.document.querySelector('html').classList.remove('smartbanner-show');
}
}
show = () => {
Eif (isClient) {
window.document.querySelector('html').classList.add('smartbanner-show');
}
}
close = () => {
this.hide();
cookie.set('smartbanner-closed', 'true', {
path: '/',
expires: +new Date() + this.props.daysHidden * 1000 * 60 * 60 * 24,
});
}
install = () => {
this.hide();
cookie.set('smartbanner-installed', 'true', {
path: '/',
expires: +new Date() + this.props.daysReminder * 1000 * 60 * 60 * 24,
});
}
retrieveInfo() {
const link = this.props.url || this.state.settings.getStoreLink() + this.state.appId;
const inStore = `
${this.props.price[this.state.type]} - ${this.props.storeText[this.state.type]}`;
let icon;
Eif (isClient) {
for (let i = 0, max = this.state.settings.iconRels.length; i < max; i++) {
const rel = window.document.querySelector(
`link[rel="${this.state.settings.iconRels[i]}"]`);
Iif (rel) {
icon = rel.getAttribute('href');
break;
}
}
}
return {
icon,
link,
inStore,
};
}
render() {
Iif (!isClient) {
return <div />;
}
// Don't show banner when:
// 1) if device isn't iOS or Android
// 2) website is loaded in app,
// 3) user dismissed banner,
// 4) or we have no app id in meta
if (!this.state.type
|| window.navigator.standalone
|| cookie.get('smartbanner-closed')
|| cookie.get('smartbanner-installed')) {
return <div />;
}
if (!this.state.appId) {
return <div />;
}
this.show();
const { icon, link, inStore } = this.retrieveInfo();
const wrapperClassName = `smartbanner smartbanner-${this.state.type}`;
const iconStyle = {
backgroundImage: `url(${icon})`,
};
return (
<div className={ wrapperClassName }>
<div className="smartbanner-container">
<a className="smartbanner-close" onClick={ this.close }>×</a>
<span className="smartbanner-icon" style={ iconStyle } />
<div className="smartbanner-info">
<div className="smartbanner-title">{this.props.title}</div>
<div className="smartbanner-author">{this.props.author}</div>
<div className="smartbanner-description" >{inStore}</div>
</div>
<div className="smartbanner-wrapper">
<a href={ link } onClick={ this.install } className="smartbanner-button">
<span className="smartbanner-button-text">{this.props.button}</span>
</a>
</div>
</div>
</div>
);
}
}
export default SmartBanner;
|