fix(unsupported): stop recommending safari
This commit is contained in:
parent
d65a068fdb
commit
6d8ec4d147
|
@ -3,9 +3,8 @@
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
|
|
||||||
import { translate } from '../../base/i18n';
|
import { translate } from '../../base/i18n';
|
||||||
import { Platform } from '../../base/react';
|
|
||||||
|
|
||||||
import { CHROME, /* EDGE, */ FIREFOX, SAFARI } from './browserLinks';
|
import { CHROME, FIREFOX } from './browserLinks';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The namespace of the CSS styles of UnsupportedDesktopBrowser.
|
* The namespace of the CSS styles of UnsupportedDesktopBrowser.
|
||||||
|
@ -51,55 +50,11 @@ class UnsupportedDesktopBrowser extends Component<Props> {
|
||||||
href = { CHROME } >Chrome</a> and
|
href = { CHROME } >Chrome</a> and
|
||||||
<a
|
<a
|
||||||
className = { `${_SNS}__link` }
|
className = { `${_SNS}__link` }
|
||||||
href = { FIREFOX }>Firefox</a>
|
href = { FIREFOX }>Firefox</a>
|
||||||
{
|
|
||||||
this._renderOSSpecificBrowserDownloadLink()
|
|
||||||
}
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Depending on the platform returns the link to Safari browser.
|
|
||||||
*
|
|
||||||
* @returns {ReactElement|null}
|
|
||||||
* @private
|
|
||||||
*/
|
|
||||||
_renderOSSpecificBrowserDownloadLink() {
|
|
||||||
let link;
|
|
||||||
let text;
|
|
||||||
|
|
||||||
switch (Platform.OS) {
|
|
||||||
case 'macos':
|
|
||||||
link = SAFARI;
|
|
||||||
text = 'Safari';
|
|
||||||
break;
|
|
||||||
|
|
||||||
/*
|
|
||||||
case 'windows':
|
|
||||||
link = EDGE;
|
|
||||||
text = 'Edge';
|
|
||||||
break;
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
if (typeof link !== 'undefined') {
|
|
||||||
return (
|
|
||||||
<span>
|
|
||||||
or
|
|
||||||
<a
|
|
||||||
className = { `${_SNS}__link` }
|
|
||||||
href = { link }>
|
|
||||||
{
|
|
||||||
text
|
|
||||||
}
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default translate(UnsupportedDesktopBrowser);
|
export default translate(UnsupportedDesktopBrowser);
|
||||||
|
|
Loading…
Reference in New Issue