mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-19 15:25:50 -04:00
61 lines
1.6 KiB
JavaScript
61 lines
1.6 KiB
JavaScript
/* 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/. */
|
|
|
|
/* eslint-env browser */
|
|
"use strict";
|
|
|
|
const { Component } = require("devtools/client/shared/vendor/react");
|
|
const PropTypes = require("devtools/client/shared/vendor/react-prop-types");
|
|
const dom = require("devtools/client/shared/vendor/react-dom-factories");
|
|
|
|
const Services = require("Services");
|
|
|
|
const Strings = Services.strings.createBundle(
|
|
"chrome://devtools/locale/aboutdebugging.properties"
|
|
);
|
|
|
|
class AddonsInstallError extends Component {
|
|
static get propTypes() {
|
|
return {
|
|
error: PropTypes.object,
|
|
retryInstall: PropTypes.func,
|
|
};
|
|
}
|
|
|
|
render() {
|
|
const { error } = this.props;
|
|
if (!this.props.error) {
|
|
return null;
|
|
}
|
|
const text = Strings.formatStringFromName(
|
|
"addonInstallError",
|
|
[error.message],
|
|
1
|
|
);
|
|
|
|
const additionalErrors = Array.isArray(error.additionalErrors)
|
|
? dom.div(
|
|
{ className: "addons-install-error__additional-errors" },
|
|
error.additionalErrors.join(" ")
|
|
)
|
|
: null;
|
|
|
|
return dom.div(
|
|
{ className: "addons-install-error" },
|
|
dom.span(
|
|
{},
|
|
dom.div({ className: "warning" }),
|
|
dom.span({}, text),
|
|
additionalErrors
|
|
),
|
|
dom.button(
|
|
{ className: "addons-install-retry", onClick: this.props.retryInstall },
|
|
Strings.GetStringFromName("retryTemporaryInstall")
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = AddonsInstallError;
|