const React = require('react'); const bridge = require('@electron/remote').require('./bridge').default; const styleSelector = require('./style/ExtensionBadge'); const { _ } = require('@joplin/lib/locale'); function platformAssets(type) { if (type === 'firefox') { return { logoImage: `${bridge().buildDir()}/images/firefox-logo.svg`, locationLabel: _('Firefox Extension'), }; } if (type === 'chrome') { return { logoImage: `${bridge().buildDir()}/images/chrome-logo.svg`, locationLabel: _('Chrome Web Store'), }; } throw new Error(`Invalid type:${type}`); } function ExtensionBadge(props) { const style = styleSelector(null, props); const assets = platformAssets(props.type); const onClick = () => { bridge().openExternal(props.url); }; const rootStyle = props.style ? Object.assign({}, style.root, props.style) : style.root; return (
{_('Get it now:')}
{assets.locationLabel}
); } module.exports = ExtensionBadge;