mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
42 lines
1020 B
JavaScript
42 lines
1020 B
JavaScript
import React from 'react';
|
|
import { useHistory } from 'react-router-dom';
|
|
|
|
import { Button, Intent } from '@blueprintjs/core';
|
|
import { FormattedMessage as T } from 'components';
|
|
|
|
import Icon from 'components/Icon';
|
|
import withDialogActions from 'containers/Dialog/withDialogActions';
|
|
import { compose } from 'utils';
|
|
|
|
function UsersActions({ openDialog, closeDialog }) {
|
|
const history = useHistory();
|
|
const onClickNewUser = () => {
|
|
openDialog('invite-user');
|
|
};
|
|
|
|
const onClickNewRole = () => {
|
|
history.push('/preferences/roles');
|
|
};
|
|
|
|
return (
|
|
<div className="preferences-actions">
|
|
<Button
|
|
icon={<Icon icon="plus" iconSize={12} />}
|
|
onClick={onClickNewUser}
|
|
intent={Intent.PRIMARY}
|
|
>
|
|
<T id={'invite_user'} />
|
|
</Button>
|
|
|
|
<Button
|
|
icon={<Icon icon="plus" iconSize={12} />}
|
|
onClick={onClickNewRole}
|
|
>
|
|
<T id={'new_role'} />
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default compose(withDialogActions)(UsersActions);
|