summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/content-src/aboutwelcome/components/MobileDownloads.jsx
blob: 8390d2fd68e20e93194612f2d41f68dd4d2ba6ca (plain)
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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

import React from "react";
import { Localized } from "./MSLocalized";

export const MarketplaceButtons = props => {
  return (
    <ul className="mobile-download-buttons">
      {props.buttons.includes("ios") ? (
        <li className="ios">
          <button
            data-l10n-id={"spotlight-ios-marketplace-button"}
            value="ios"
            onClick={props.handleAction}
          ></button>
        </li>
      ) : null}
      {props.buttons.includes("android") ? (
        <li className="android">
          <button
            data-l10n-id={"spotlight-android-marketplace-button"}
            value="android"
            onClick={props.handleAction}
          ></button>
        </li>
      ) : null}
    </ul>
  );
};

export const MobileDownloads = props => {
  const { QR_code: QRCode } = props.data;
  const showEmailLink =
    props.data.email && window.AWSendToDeviceEmailsSupported();

  return (
    <div className="mobile-downloads">
      {/* Avoid use of Localized element to set alt text here as a plain string value
      results in a React error due to "dangerouslySetInnerHTML" */}
      {QRCode ? (
        <img
          data-l10n-id={
            QRCode.alt_text.string_id ? QRCode.alt_text.string_id : null
          }
          className="qr-code-image"
          alt={typeof QRCode.alt_text === "string" ? QRCode.alt_text : ""}
          src={QRCode.image_url}
        />
      ) : null}
      {showEmailLink ? (
        <div>
          <Localized text={props.data.email.link_text}>
            <button
              className="email-link"
              value="email_link"
              onClick={props.handleAction}
            />
          </Localized>
        </div>
      ) : null}
      {props.data.marketplace_buttons ? (
        <MarketplaceButtons
          buttons={props.data.marketplace_buttons}
          handleAction={props.handleAction}
        />
      ) : null}
    </div>
  );
};