passbolt-styleguide
Version:
Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.
70 lines (64 loc) • 2.9 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.9.0
*/
import DialogContextProvider from "../../../contexts/DialogContext";
import ManageDialogs from "../../Common/Dialog/ManageDialogs/ManageDialogs";
import React from "react";
import ManageSsoSettings from "./ManageSsoSettings";
import AdminSsoSettingsContextProvider from "../../../contexts/AdminSsoContext";
import { defaultProps, disabledSso, azureConfiguredSso } from "./ManageSsoSettings.test.data";
import DisplayActionFeedbacks from "../../Common/ActionFeedback/DisplayActionFeedbacks";
import ActionFeedbackContextProvider from "../../../contexts/ActionFeedbackContext";
import AppContext from "../../../../shared/context/AppContext/AppContext";
export default {
title: "Components/Administration/ManageSsoSettings",
component: ManageSsoSettings,
};
const Template = (args) => (
<AppContext.Provider value={args.context}>
<DialogContextProvider>
<ManageDialogs />
<ActionFeedbackContextProvider>
<DisplayActionFeedbacks />
<AdminSsoSettingsContextProvider {...args}>
<div className="page administration">
<div className="app">
<div className="panel main">
<div className="panel middle">
<div className="middle-right">
<div className="main-page">
<ManageSsoSettings {...args} />
</div>
</div>
</div>
</div>
</div>
</div>
</AdminSsoSettingsContextProvider>
</ActionFeedbackContextProvider>
</DialogContextProvider>
</AppContext.Provider>
);
export const Default = Template.bind({});
Default.args = defaultProps();
Default.args.context.port.addRequestListener("passbolt.sso.get-current", disabledSso);
export const Azure = Template.bind({});
Azure.args = defaultProps();
Azure.args.context.port.addRequestListener("passbolt.sso.get-current", azureConfiguredSso);
export const ErrorFromTheServer = Template.bind({});
const props = defaultProps();
delete props.dialogContext; //making sure that this prop is not overriden and avoid a bug where the dialog doesn't display
ErrorFromTheServer.args = props;
ErrorFromTheServer.args.context.port.addRequestListener("passbolt.sso.get-current", () => {
throw new Error("Something went wrong");
});