| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import {
- UncontrolledDropdown,
- DropdownToggle, DropdownMenu, DropdownItem,
- Modal, ModalHeader, ModalBody,
- } from 'reactstrap';
- import AppContainer from '../../services/AppContainer';
- import { createSubscribedElement } from '../UnstatedUtils';
- /**
- * Page grant select component
- *
- * @export
- * @class GrantSelector
- * @extends {React.Component}
- */
- class GrantSelector extends React.Component {
- constructor(props) {
- super(props);
- this.availableGrants = [
- {
- grant: 1, iconClass: 'icon-people', styleClass: '', label: 'Public',
- },
- {
- grant: 2, iconClass: 'icon-link', styleClass: 'text-info', label: 'Anyone with the link',
- },
- // { grant: 3, iconClass: '', label: 'Specified users only' },
- {
- grant: 4, iconClass: 'icon-lock', styleClass: 'text-danger', label: 'Just me',
- },
- {
- grant: 5, iconClass: 'icon-options', styleClass: '', label: 'Only inside the group', reselectLabel: 'Reselect the group',
- },
- ];
- this.state = {
- userRelatedGroups: [],
- isSelectGroupModalShown: false,
- grant: this.props.grant,
- grantGroup: null,
- };
- if (this.props.grantGroupId != null) {
- this.state.grantGroup = {
- _id: this.props.grantGroupId,
- name: this.props.grantGroupName,
- };
- }
- // retrieve xss library from window
- this.xss = window.xss;
- this.showSelectGroupModal = this.showSelectGroupModal.bind(this);
- this.hideSelectGroupModal = this.hideSelectGroupModal.bind(this);
- this.getGroupName = this.getGroupName.bind(this);
- this.changeGrantHandler = this.changeGrantHandler.bind(this);
- this.groupListItemClickHandler = this.groupListItemClickHandler.bind(this);
- }
- showSelectGroupModal() {
- this.retrieveUserGroupRelations();
- this.setState({ isSelectGroupModalShown: true });
- }
- hideSelectGroupModal() {
- this.setState({ isSelectGroupModalShown: false });
- }
- getGroupName() {
- const grantGroup = this.state.grantGroup;
- return grantGroup ? this.xss.process(grantGroup.name) : '';
- }
- /**
- * Retrieve user-group-relations data from backend
- */
- retrieveUserGroupRelations() {
- this.props.appContainer.apiGet('/me/user-group-relations')
- .then((res) => {
- return res.userGroupRelations;
- })
- .then((userGroupRelations) => {
- const userRelatedGroups = userGroupRelations.map((relation) => {
- return relation.relatedGroup;
- });
- this.setState({ userRelatedGroups });
- });
- }
- /**
- * change event handler for grant selector
- */
- changeGrantHandler(grant) {
- // select group
- if (grant === 5) {
- this.showSelectGroupModal();
- return;
- }
- this.setState({ grant, grantGroup: null });
- if (this.props.onUpdateGrant != null) {
- this.props.onUpdateGrant({ grant, grantGroupId: null, grantGroupName: null });
- }
- }
- groupListItemClickHandler(grantGroup) {
- this.setState({ grant: 5, grantGroup });
- if (this.props.onUpdateGrant != null) {
- this.props.onUpdateGrant({ grant: 5, grantGroupId: grantGroup._id, grantGroupName: grantGroup.name });
- }
- // hide modal
- this.hideSelectGroupModal();
- }
- /**
- * Render grant selector DOM.
- * @returns
- * @memberof GrantSelector
- */
- renderGrantSelector() {
- const { t } = this.props;
- const { grant: currentGrant, grantGroup } = this.state;
- let dropdownToggleLabelElm = null;
- const dropdownMenuElems = this.availableGrants.map((opt) => {
- const label = (opt.grant === 5 && grantGroup != null)
- ? opt.reselectLabel // when grantGroup is selected
- : opt.label;
- const labelElm = <span><i className={`icon icon-fw ${opt.iconClass} ${opt.styleClass}`}></i> <span className={opt.styleClass}>{t(label)}</span></span>;
- // set dropdownToggleLabelElm
- if (opt.grant === 1 || opt.grant === currentGrant) {
- dropdownToggleLabelElm = labelElm;
- }
- return <DropdownItem key={opt.grant} onClick={() => this.changeGrantHandler(opt.grant)}>{labelElm}</DropdownItem>;
- });
- // add specified group option
- if (grantGroup != null) {
- const labelElm = <span><i className="icon icon-fw icon-organization text-success"></i> <span className="text-success">{this.getGroupName()}</span></span>;
- // set dropdownToggleLabelElm
- dropdownToggleLabelElm = labelElm;
- dropdownMenuElems.push(<DropdownItem key="groupSelected">{labelElm}</DropdownItem>);
- }
- return (
- <div className="form-group grw-grant-selector mb-0">
- <UncontrolledDropdown direction="up" size="sm">
- <DropdownToggle color="light" caret className="d-flex justify-content-between align-items-center" disabled={this.props.disabled}>
- {dropdownToggleLabelElm}
- </DropdownToggle>
- <DropdownMenu>
- {dropdownMenuElems}
- </DropdownMenu>
- </UncontrolledDropdown>
- </div>
- );
- }
- /**
- * Render select grantgroup modal.
- *
- * @returns
- * @memberof GrantSelector
- */
- renderSelectGroupModal() {
- const generateGroupListItems = () => {
- return this.state.userRelatedGroups.map((group) => {
- return (
- <button key={group._id} type="button" className="list-group-item list-group-item-action" onClick={() => { this.groupListItemClickHandler(group) }}>
- <h5>{group.name}</h5>
- <div className="small">(TBD) List group members</div>
- </button>
- );
- });
- };
- const content = this.state.userRelatedGroups.length === 0
- ? (
- <div>
- <h4>There is no group to which you belong.</h4>
- { this.props.appContainer.isAdmin
- && <p><a href="/admin/user-groups"><i className="icon icon-fw icon-login"></i> Manage Groups</a></p>
- }
- </div>
- )
- : (
- <div className="list-group">
- {generateGroupListItems()}
- </div>
- );
- return (
- <Modal
- className="select-grant-group"
- container={this}
- isOpen={this.state.isSelectGroupModalShown}
- toggle={this.hideSelectGroupModal}
- >
- <ModalHeader tag="h4" toggle={this.hideSelectGroupModal}>
- Select a Group
- </ModalHeader>
- <ModalBody>
- {content}
- </ModalBody>
- </Modal>
- );
- }
- render() {
- return (
- <React.Fragment>
- { this.renderGrantSelector() }
- { !this.props.disabled && this.renderSelectGroupModal() }
- </React.Fragment>
- );
- }
- }
- /**
- * Wrapper component for using unstated
- */
- const GrantSelectorWrapper = (props) => {
- return createSubscribedElement(GrantSelector, props, [AppContainer]);
- };
- GrantSelector.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- disabled: PropTypes.bool,
- grant: PropTypes.number.isRequired,
- grantGroupId: PropTypes.string,
- grantGroupName: PropTypes.string,
- onUpdateGrant: PropTypes.func,
- };
- export default withTranslation()(GrantSelectorWrapper);
|