mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-30 10:58:23 -05:00
Merge pull request #7764 from cwillisf/move-running-check-to-troubleshooting
fix: move the 'if Scratch Link is not running' advice into the Troubleshooting section
This commit is contained in:
commit
06af1a04a2
9 changed files with 40 additions and 18 deletions
|
@ -4,6 +4,9 @@ const React = require('react');
|
||||||
|
|
||||||
const ExtensionSection = require('./extension-section.jsx');
|
const ExtensionSection = require('./extension-section.jsx');
|
||||||
|
|
||||||
|
const OS_ENUM = require('../../lib/os-enum.js');
|
||||||
|
const {isDownloaded} = require('../install-scratch/install-util.js');
|
||||||
|
|
||||||
// TODO: after the Scratch Conference 2022, migrate from the individual extension landing pages all the
|
// TODO: after the Scratch Conference 2022, migrate from the individual extension landing pages all the
|
||||||
// troubleshooting steps which are common to all extensions.
|
// troubleshooting steps which are common to all extensions.
|
||||||
const ExtensionTroubleshooting = props => {
|
const ExtensionTroubleshooting = props => {
|
||||||
|
@ -17,6 +20,16 @@ const ExtensionTroubleshooting = props => {
|
||||||
id="extensions.troubleshootingTitle"
|
id="extensions.troubleshootingTitle"
|
||||||
values={sharedValues}
|
values={sharedValues}
|
||||||
/></h2>
|
/></h2>
|
||||||
|
{(isDownloaded(props.currentOS)) && (<React.Fragment>
|
||||||
|
<h3 className="faq-title"><FormattedMessage
|
||||||
|
id="extensions.scratchLinkRunning"
|
||||||
|
values={sharedValues}
|
||||||
|
/></h3>
|
||||||
|
<p><FormattedMessage
|
||||||
|
id={`extensions.startScratchLink.${
|
||||||
|
props.currentOS === OS_ENUM.WINDOWS ? 'Windows' : 'macOS'
|
||||||
|
}`}
|
||||||
|
/></p>
|
||||||
<h3 className="faq-title"><FormattedMessage
|
<h3 className="faq-title"><FormattedMessage
|
||||||
id="extensions.browserCompatibilityTitle"
|
id="extensions.browserCompatibilityTitle"
|
||||||
values={sharedValues}
|
values={sharedValues}
|
||||||
|
@ -24,7 +37,7 @@ const ExtensionTroubleshooting = props => {
|
||||||
<p><FormattedMessage
|
<p><FormattedMessage
|
||||||
id="extensions.browserCompatibilityText"
|
id="extensions.browserCompatibilityText"
|
||||||
values={sharedValues}
|
values={sharedValues}
|
||||||
/></p>
|
/></p></React.Fragment>)}
|
||||||
{props.children}
|
{props.children}
|
||||||
{!props.scratchLinkOnly && (
|
{!props.scratchLinkOnly && (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
|
@ -44,6 +57,7 @@ const ExtensionTroubleshooting = props => {
|
||||||
|
|
||||||
ExtensionTroubleshooting.propTypes = {
|
ExtensionTroubleshooting.propTypes = {
|
||||||
children: PropTypes.node,
|
children: PropTypes.node,
|
||||||
|
currentOS: PropTypes.string.isRequired,
|
||||||
deviceName: PropTypes.string.isRequired,
|
deviceName: PropTypes.string.isRequired,
|
||||||
deviceNameShort: PropTypes.string,
|
deviceNameShort: PropTypes.string,
|
||||||
scratchLinkOnly: PropTypes.bool
|
scratchLinkOnly: PropTypes.bool
|
||||||
|
|
|
@ -75,11 +75,6 @@ const InstallScratchLink = ({
|
||||||
}-toolbar.png`}
|
}-toolbar.png`}
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
<p className="step-description"><FormattedMessage
|
|
||||||
id={`installScratchLink.startScratchLink2.${
|
|
||||||
currentOS === OS_ENUM.WINDOWS ? 'Windows' : 'macOS'
|
|
||||||
}`}
|
|
||||||
/></p>
|
|
||||||
</Step>
|
</Step>
|
||||||
<Step
|
<Step
|
||||||
compact
|
compact
|
||||||
|
|
|
@ -169,8 +169,6 @@
|
||||||
"installScratchLink.downloadAndInstall": "Download and install Scratch Link.",
|
"installScratchLink.downloadAndInstall": "Download and install Scratch Link.",
|
||||||
"installScratchLink.startScratchLink.macOS": "Start Scratch Link and make sure it is running. It should appear in your menu bar.",
|
"installScratchLink.startScratchLink.macOS": "Start Scratch Link and make sure it is running. It should appear in your menu bar.",
|
||||||
"installScratchLink.startScratchLink.Windows": "Start Scratch Link and make sure it is running. It should appear in your notification area (system tray).",
|
"installScratchLink.startScratchLink.Windows": "Start Scratch Link and make sure it is running. It should appear in your notification area (system tray).",
|
||||||
"installScratchLink.startScratchLink2.macOS": "If it does not appear, run Scratch Link from your Applications folder.",
|
|
||||||
"installScratchLink.startScratchLink2.Windows": "If it does not appear, run Scratch Link from your Start menu.",
|
|
||||||
"installScratchLink.learnMore.bodyText": "To learn more about Scratch Link, click {linkText}.",
|
"installScratchLink.learnMore.bodyText": "To learn more about Scratch Link, click {linkText}.",
|
||||||
"installScratchLink.learnMore.linkText": "here",
|
"installScratchLink.learnMore.linkText": "here",
|
||||||
"installScratchLink.ifYouHaveTrouble.bodyText": "If you have trouble, see the {linkText} for tips.",
|
"installScratchLink.ifYouHaveTrouble.bodyText": "If you have trouble, see the {linkText} for tips.",
|
||||||
|
@ -446,6 +444,9 @@
|
||||||
"helpWidget.confirmation": "Thank you for your message.",
|
"helpWidget.confirmation": "Thank you for your message.",
|
||||||
|
|
||||||
"extensions.troubleshootingTitle": "Troubleshooting",
|
"extensions.troubleshootingTitle": "Troubleshooting",
|
||||||
|
"extensions.scratchLinkRunning": "Make sure Scratch Link is running",
|
||||||
|
"extensions.startScratchLink.macOS": "If Scratch Link does not appear in your menu bar, run Scratch Link from your Applications folder.",
|
||||||
|
"extensions.startScratchLink.Windows": "If Scratch Link does not appear in your notification area (system tray), run Scratch Link from your Start menu.",
|
||||||
"extensions.browserCompatibilityTitle": "Make sure your browser is compatible with Scratch Link",
|
"extensions.browserCompatibilityTitle": "Make sure your browser is compatible with Scratch Link",
|
||||||
"extensions.browserCompatibilityText": "Scratch Link is compatible with most browsers on macOS and Windows. For Safari, please update to Scratch Link 2.x, Safari 14 or newer, and macOS 10.15 or newer.",
|
"extensions.browserCompatibilityText": "Scratch Link is compatible with most browsers on macOS and Windows. For Safari, please update to Scratch Link 2.x, Safari 14 or newer, and macOS 10.15 or newer.",
|
||||||
"extensions.checkOSVersionTitle": "Make sure your operating system is compatible with Scratch Link",
|
"extensions.checkOSVersionTitle": "Make sure your operating system is compatible with Scratch Link",
|
||||||
|
|
|
@ -193,7 +193,10 @@ class Boost extends ExtensionLanding {
|
||||||
/>
|
/>
|
||||||
</Steps>
|
</Steps>
|
||||||
</ExtensionSection>
|
</ExtensionSection>
|
||||||
<ExtensionTroubleshooting deviceName="BOOST">
|
<ExtensionTroubleshooting
|
||||||
|
currentOS={this.state.OS}
|
||||||
|
deviceName="BOOST"
|
||||||
|
>
|
||||||
{isDownloaded(this.state.OS) && (
|
{isDownloaded(this.state.OS) && (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<h3 className="faq-title"><FormattedMessage id="boost.updateScratchLinkTitle" /></h3>
|
<h3 className="faq-title"><FormattedMessage id="boost.updateScratchLinkTitle" /></h3>
|
||||||
|
|
|
@ -103,6 +103,7 @@ const ScratchLink = ({intl}) => {
|
||||||
</div>
|
</div>
|
||||||
</ExtensionSection>
|
</ExtensionSection>
|
||||||
<ExtensionTroubleshooting
|
<ExtensionTroubleshooting
|
||||||
|
currentOS={os}
|
||||||
deviceName={intl.formatMessage({id: 'scratchLink.headerTitle'})}
|
deviceName={intl.formatMessage({id: 'scratchLink.headerTitle'})}
|
||||||
scratchLinkOnly
|
scratchLinkOnly
|
||||||
>
|
>
|
||||||
|
|
|
@ -283,6 +283,7 @@ class EV3 extends ExtensionLanding {
|
||||||
</Steps>
|
</Steps>
|
||||||
</ExtensionSection>
|
</ExtensionSection>
|
||||||
<ExtensionTroubleshooting
|
<ExtensionTroubleshooting
|
||||||
|
currentOS={this.state.OS}
|
||||||
deviceName="EV3"
|
deviceName="EV3"
|
||||||
scratchLinkOnly // EV3 is Bluetooth Classic so it's only available through Scratch Link
|
scratchLinkOnly // EV3 is Bluetooth Classic so it's only available through Scratch Link
|
||||||
>
|
>
|
||||||
|
|
|
@ -207,6 +207,7 @@ class GdxFor extends ExtensionLanding {
|
||||||
</Steps>
|
</Steps>
|
||||||
</ExtensionSection>
|
</ExtensionSection>
|
||||||
<ExtensionTroubleshooting
|
<ExtensionTroubleshooting
|
||||||
|
currentOS={this.state.OS}
|
||||||
deviceName={this.props.intl.formatMessage({id: 'gdxfor.deviceName'})}
|
deviceName={this.props.intl.formatMessage({id: 'gdxfor.deviceName'})}
|
||||||
deviceNameShort={this.props.intl.formatMessage({id: 'gdxfor.deviceNameShort'})}
|
deviceNameShort={this.props.intl.formatMessage({id: 'gdxfor.deviceNameShort'})}
|
||||||
>
|
>
|
||||||
|
|
|
@ -319,7 +319,10 @@ class MicroBit extends ExtensionLanding {
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
<hr />
|
<hr />
|
||||||
</ExtensionSection>
|
</ExtensionSection>
|
||||||
<ExtensionTroubleshooting deviceName="micro:bit">
|
<ExtensionTroubleshooting
|
||||||
|
currentOS={this.state.OS}
|
||||||
|
deviceName="micro:bit"
|
||||||
|
>
|
||||||
{isDownloaded(this.state.OS) && (
|
{isDownloaded(this.state.OS) && (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<h3 className="faq-title"><FormattedMessage id="microbit.checkOSVersionTitle" /></h3>
|
<h3 className="faq-title"><FormattedMessage id="microbit.checkOSVersionTitle" /></h3>
|
||||||
|
|
|
@ -192,7 +192,10 @@ class Wedo2 extends ExtensionLanding {
|
||||||
/>
|
/>
|
||||||
</Steps>
|
</Steps>
|
||||||
</ExtensionSection>
|
</ExtensionSection>
|
||||||
<ExtensionTroubleshooting deviceName="WeDo 2.0">
|
<ExtensionTroubleshooting
|
||||||
|
currentOS={this.state.OS}
|
||||||
|
deviceName="WeDo 2.0"
|
||||||
|
>
|
||||||
{isDownloaded(this.state.OS) && (
|
{isDownloaded(this.state.OS) && (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<h3 className="faq-title"><FormattedMessage id="wedo2.checkOSVersionTitle" /></h3>
|
<h3 className="faq-title"><FormattedMessage id="wedo2.checkOSVersionTitle" /></h3>
|
||||||
|
|
Loading…
Reference in a new issue