passbolt-styleguide
Version:
Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.
52 lines (48 loc) • 1.59 kB
JavaScript
/**
* Passbolt ~ Open source password manager for teams
* Copyright (c) 2023 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) 2023 Passbolt SA (https://www.passbolt.com)
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
* @link https://www.passbolt.com Passbolt(tm)
* @since 4.3.0
*/
import { plaintextSecretPasswordDescriptionTotpDto } from "../../models/entity/plaintextSecret/plaintextSecretEntity.test.data";
import { defaultActionFeedbackContext } from "../../../react-extension/contexts/ActionFeedbackContext.test.data";
/**
* Returns the default component props
* @param {object} props Props to override
* @returns {any}
*/
export function defaultProps(props = {}) {
return {
totp: plaintextSecretPasswordDescriptionTotpDto().totp,
canClick: true,
onClick: jest.fn(),
actionFeedbackContext: defaultActionFeedbackContext(),
...props,
};
}
/**
* Returns the error component props
* @param {object} props Props to override
* @returns {any}
*/
export function secretKeyInvalidProps(props = {}) {
return {
totp: {
algorithm: "SHA1",
digits: 6,
period: 30,
secret_key: "This is a secret_!!!",
},
canClick: true,
onClick: jest.fn(),
actionFeedbackContext: defaultActionFeedbackContext(),
...props,
};
}