passbolt-styleguide
Version:
Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.
64 lines (58 loc) • 2.11 kB
JavaScript
/**
* Passbolt ~ Open source password manager for teams
* Copyright (c) 2022 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) 2022 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.8.0
*/
import React from "react";
import { mockApiResponse } from "../../../../../test/mocks/mockApiResponse";
import MockFetch from "../../../test/mock/MockFetch";
import SendTestMailDialog from "./SendTestMailDialog";
import { defaultProps, defaultDebugResponse } from "./SendTestMailDialog.test.data";
import AdminSmtpSettingsContextProvider from "../../../contexts/AdminSmtpSettingsContext";
let currentStory = null;
const mockFetch = new MockFetch();
mockFetch.addPostFetchRequest(/smtp\/email\.json/, async () => {
switch (currentStory) {
case "components-administration-sendtestmaildialog--email-send-success": {
return mockApiResponse(defaultDebugResponse());
}
case "components-administration-sendtestmaildialog--email-send-error": {
const response = {
header: {
message: "Something went wrong!",
},
body: defaultDebugResponse(),
};
return new Response(JSON.stringify(response), { status: 400 });
}
}
throw new Error("Unsupported story");
});
export default {
title: "Components/Administration/SendTestMailDialog",
component: SendTestMailDialog,
decorators: [
(Story, storyArgs) => {
currentStory = storyArgs.id;
return (
<AdminSmtpSettingsContextProvider {...storyArgs.args}>
<Story {...storyArgs.args} />;
</AdminSmtpSettingsContextProvider>
);
},
],
};
export const EmailSendSuccess = {
args: defaultProps(),
};
export const EmailSendError = {
args: defaultProps(),
};