passbolt-styleguide
Version:
Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.
119 lines (108 loc) • 3.31 kB
JavaScript
/**
* Passbolt ~ Open source password manager for teams
* Copyright (c) 2021 Passbolt SA (https://www.passbolt.com)
*
* Licensed under GNU Affero General Public License version 3 of the or any later version.
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) 2021 Passbolt SA (https://www.passbolt.com)
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
* @link https://www.passbolt.com Passbolt(tm)
* @since 3.3.0
*/
import React from "react";
import PropTypes from "prop-types";
import SpinnerSVG from "../../../img/svg/spinner.svg";
import TimerSVG from "../../../img/svg/timer.svg";
import { DEFAULT_TOTP_PERIOD } from "../../../shared/components/Totp/Totp";
class DisplayInFormMenuItem extends React.Component {
/**
* Default constructor
* @param props Component props
*/
constructor(props) {
super(props);
this.bindCallbacks();
}
/**
* Binds methods callbacks
*/
bindCallbacks() {
this.handleClick = this.handleClick.bind(this);
}
/**
* Get the input button classname
* @returns {string}
*/
getClassName() {
let name = "in-form-menu-item";
if (this.props.disabled) {
name += " disabled";
}
if (this.props.processing) {
name += " processing";
}
return name;
}
/**
* Handle cancel click
* @return {void}
*/
handleClick() {
this.props.onClick();
}
/**
* Return the initial delay for the TOTP timer.
* We only rely on default TOTP period for now.
* @return {number}
*/
calculateDelayFromNow() {
const now = new Date(Date.now());
const todaySeconds = now.getUTCHours() * 3600 + now.getUTCMinutes() * 60 + now.getUTCSeconds();
return todaySeconds % DEFAULT_TOTP_PERIOD;
}
/**
* Render the component
*/
render() {
return (
<a className={this.getClassName()} onClick={this.handleClick} disabled={this.props.disabled}>
<div className="in-form-menu-item-icon">
{this.props.processing ? <SpinnerSVG className="svg-icon icon-only dim" /> : this.props.icon}
</div>
<div className="in-form-menu-item-content">
<div className="in-form-menu-item-content-header">
<strong>{this.props.title}</strong>
</div>
<div className="in-form-menu-item-content-subheader">{this.props.subtitle}</div>
<div className="in-form-menu-item-content-description">{this.props.description}</div>
</div>
{this.props.showTimer && (
<div className="in-form-menu-item-timer">
<TimerSVG
style={{
"--timer-duration": `${DEFAULT_TOTP_PERIOD}s`,
"--timer-delay": `-${this.calculateDelayFromNow()}s`,
}}
/>
</div>
)}
</a>
);
}
}
DisplayInFormMenuItem.defaultProps = {
disabled: false,
};
DisplayInFormMenuItem.propTypes = {
title: PropTypes.string,
subtitle: PropTypes.any,
description: PropTypes.string,
icon: PropTypes.any,
processing: PropTypes.bool,
disabled: PropTypes.bool,
onClick: PropTypes.func,
showTimer: PropTypes.bool,
};
export default DisplayInFormMenuItem;