mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
* SelectOrgPage: migrate API function calls to Redux * used a much better approach * writes test for getUserOrganizations action * writes test for userOrganizationsLoaded reducer * change userOrg to plural
69 lines
1.8 KiB
TypeScript
69 lines
1.8 KiB
TypeScript
import React, { FC } from 'react';
|
|
import Page from 'app/core/components/Page/Page';
|
|
import { config } from '@grafana/runtime';
|
|
import { StoreState, UserOrg } from 'app/types';
|
|
import { useEffectOnce } from 'react-use';
|
|
import { Button, HorizontalGroup } from '@grafana/ui';
|
|
import { getUserOrganizations, setUserOrganization } from './state/actions';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
|
|
const navModel = {
|
|
main: {
|
|
icon: 'grafana',
|
|
subTitle: 'Preferences',
|
|
text: 'Select active organization',
|
|
},
|
|
node: {
|
|
text: 'Select active organization',
|
|
},
|
|
};
|
|
|
|
const mapStateToProps = (state: StoreState) => {
|
|
return {
|
|
userOrgs: state.organization.userOrgs,
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = {
|
|
setUserOrganization,
|
|
getUserOrganizations,
|
|
};
|
|
|
|
const connector = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
type Props = ConnectedProps<typeof connector>;
|
|
|
|
export const SelectOrgPage: FC<Props> = ({ setUserOrganization, getUserOrganizations, userOrgs }) => {
|
|
const setUserOrg = async (org: UserOrg) => {
|
|
await setUserOrganization(org.orgId);
|
|
window.location.href = config.appSubUrl + '/';
|
|
};
|
|
|
|
useEffectOnce(() => {
|
|
getUserOrganizations();
|
|
});
|
|
|
|
return (
|
|
<Page navModel={navModel}>
|
|
<Page.Contents>
|
|
<div>
|
|
<p>
|
|
You have been invited to another organization! Please select which organization that you want to use right
|
|
now. You can change this later at any time.
|
|
</p>
|
|
<HorizontalGroup wrap>
|
|
{userOrgs &&
|
|
userOrgs.map((org) => (
|
|
<Button key={org.orgId} icon="signin" onClick={() => setUserOrg(org)}>
|
|
{org.name}
|
|
</Button>
|
|
))}
|
|
</HorizontalGroup>
|
|
</div>
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
};
|
|
|
|
export default connector(SelectOrgPage);
|