grafana/public/app/features/org/SelectOrgPage.tsx
Josh Hunt 3c6e0e8ef8
Chore: ESlint import order (#44959)
* Add and configure eslint-plugin-import

* Fix the lint:ts npm command

* Autofix + prettier all the files

* Manually fix remaining files

* Move jquery code in jest-setup to external file to safely reorder imports

* Resolve issue caused by circular dependencies within Prometheus

* Update .betterer.results

* Fix missing // @ts-ignore

* ignore iconBundle.ts

* Fix missing // @ts-ignore
2022-04-22 14:33:13 +01:00

71 lines
1.8 KiB
TypeScript

import React, { FC } from 'react';
import { connect, ConnectedProps } from 'react-redux';
import { useEffectOnce } from 'react-use';
import { config } from '@grafana/runtime';
import { Button, HorizontalGroup } from '@grafana/ui';
import Page from 'app/core/components/Page/Page';
import { StoreState, UserOrg } from 'app/types';
import { getUserOrganizations, setUserOrganization } from './state/actions';
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);