box-ui-elements-mlh
Version:
431 lines (381 loc) • 16 kB
JavaScript
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage } from 'react-intl';
import Button from '../../components/button';
import PrimaryButton from '../../components/primary-button';
import { Modal, ModalActions } from '../../components/modal';
import InlineNotice from '../../components/inline-notice';
import Link from '../../components/link/LinkBase';
import commonMessages from '../../common/messages';
import Classification from '../classification';
import VanityNameSection from './VanityNameSection';
import PasswordSection from './PasswordSection';
import ExpirationSection from './ExpirationSection';
import AllowDownloadSection from './AllowDownloadSection';
import messages from './messages';
import { PEOPLE_WITH_LINK, PEOPLE_IN_COMPANY, PEOPLE_IN_ITEM } from '../shared-link-modal/constants';
import './SharedLinkSettingsModal.scss';
/**
* Return the translation message based on the access level and whether the user can download or not
* @param {string} accessLevel one of 'peopleWithTheLink', 'peopleInYourCompany', or 'peopleInThisItem'
* @param {boolean} canDownload prop value for whether the user can currently download
*
* @return {object|undefined} message for the proper translation (or undefined if nothing matches)
*/
function getAccessNoticeMessageId(accessLevel, canDownload) {
let message;
switch (accessLevel) {
case PEOPLE_WITH_LINK:
message = canDownload ? messages.withLinkViewDownload : messages.withLinkView;
break;
case PEOPLE_IN_COMPANY:
message = canDownload ? messages.inCompanyViewDownload : messages.inCompanyView;
break;
case PEOPLE_IN_ITEM:
message = messages.inItem;
break;
default:
break;
}
return message;
}
class SharedLinkSettingsModal extends Component {
static propTypes = {
hideVanityNameSection: PropTypes.bool,
isOpen: PropTypes.bool,
onRequestClose: PropTypes.func,
submitting: PropTypes.bool,
warnOnPublic: PropTypes.bool,
/** Function called on form submission. Format is:
* ({
* expirationTimestamp: number (in milliseconds),
* isDownloadEnabled: true,
* isExpirationEnabled: true,
* isPasswordEnabled: true,
* password: string,
* vanityName: string,
* }) => void
*/
onSubmit: PropTypes.func.isRequired,
// access level props
/** the access level used for the item being shared */
accessLevel: PropTypes.string,
// Custom URL props
/** Whether or not user has permission to change/set vanity URL for this item */
canChangeVanityName: PropTypes.bool.isRequired,
/** Current vanity name for the item */
vanityName: PropTypes.string.isRequired,
/** Server URL prefix for vanity URL preview; should be something like http://company.box.com/v/ */
serverURL: PropTypes.string.isRequired,
vanityNameError: PropTypes.string,
// Password props
/** Whether or not user has permission to enable/disable/change password */
canChangePassword: PropTypes.bool.isRequired,
/** Whether or not the password section is visible to user */
isPasswordAvailable: PropTypes.bool.isRequired,
/** Whether or not password is currently enabled */
isPasswordEnabled: PropTypes.bool.isRequired,
passwordError: PropTypes.string,
// Expiration props
/** Whether or not user has permission to enable/disable/change expiration */
canChangeExpiration: PropTypes.bool.isRequired,
/** Current expiration timestamp, in milliseconds */
expirationTimestamp: PropTypes.number,
expirationError: PropTypes.string,
// Allow download props
/** Whether or not the download section is visible to user */
isDownloadAvailable: PropTypes.bool.isRequired,
/** Whether or not user has permission to enable/disable download */
canChangeDownload: PropTypes.bool.isRequired,
/** Whether or not download is currently enabled */
isDownloadEnabled: PropTypes.bool.isRequired,
// Direct link props
/** URL for direct link */
directLink: PropTypes.string.isRequired,
/** Whether or not direct link is available */
isDirectLinkAvailable: PropTypes.bool.isRequired,
/** Whether or not direct link is unavailable only due to download setting */
isDirectLinkUnavailableDueToDownloadSettings: PropTypes.bool.isRequired,
/** Whether or not direct link is unavailable only due to access policy setting */
isDirectLinkUnavailableDueToAccessPolicy: PropTypes.bool.isRequired,
/** Whether or not direct link is unavailable only due to malicious content policy */
isDirectLinkUnavailableDueToMaliciousContent: PropTypes.bool.isRequired,
// Classification props
item: PropTypes.object,
// Hooks for resin
cancelButtonProps: PropTypes.object,
directLinkInputProps: PropTypes.object,
downloadCheckboxProps: PropTypes.object,
expirationCheckboxProps: PropTypes.object,
expirationInputProps: PropTypes.object,
modalProps: PropTypes.object,
passwordCheckboxProps: PropTypes.object,
passwordInputProps: PropTypes.object,
saveButtonProps: PropTypes.object,
vanityNameInputProps: PropTypes.object,
};
static defaultProps = {
cancelButtonProps: {},
modalProps: {},
saveButtonProps: {},
};
constructor(props) {
super(props);
this.state = {
expirationDate: props.expirationTimestamp ? new Date(props.expirationTimestamp) : null,
expirationError: props.expirationError,
isVanityEnabled: !!props.vanityName,
isDownloadEnabled: props.isDownloadEnabled,
isExpirationEnabled: !!props.expirationTimestamp,
isPasswordEnabled: props.isPasswordEnabled,
password: '',
passwordError: props.passwordError,
vanityName: props.vanityName,
vanityNameError: props.vanityNameError,
};
}
componentDidUpdate(prevProps) {
const { expirationError, passwordError, vanityNameError } = this.props;
if (
prevProps.expirationError !== expirationError ||
prevProps.passwordError !== passwordError ||
prevProps.vanityNameError !== vanityNameError
) {
this.setState({
expirationError,
passwordError,
vanityNameError,
});
}
}
onSubmit = event => {
event.preventDefault();
const {
expirationDate,
isDownloadEnabled,
isExpirationEnabled,
isPasswordEnabled,
password,
vanityName,
} = this.state;
this.props.onSubmit({
expirationTimestamp: expirationDate ? expirationDate.getTime() : undefined,
isDownloadEnabled,
isExpirationEnabled,
isPasswordEnabled,
password,
vanityName,
});
};
onVanityNameChange = event => {
this.setState({
vanityName: event.target.value,
vanityNameError: undefined,
});
};
onPasswordChange = event => {
this.setState({
password: event.target.value,
passwordError: undefined,
});
};
onPasswordCheckboxChange = event => {
this.setState({ isPasswordEnabled: event.target.checked });
};
onExpirationDateChange = date => {
this.setState({ expirationDate: date, expirationError: undefined });
};
onExpirationCheckboxChange = event => {
this.setState({ isExpirationEnabled: event.target.checked });
};
onAllowDownloadChange = event => {
this.setState({ isDownloadEnabled: event.target.checked });
};
onVanityCheckboxChange = event => {
this.setState({
isVanityEnabled: event.target.checked,
vanityName: !event.target.checked ? '' : this.props.vanityName,
});
};
renderVanityNameSection() {
const {
canChangeVanityName,
hideVanityNameSection,
serverURL,
vanityNameInputProps,
warnOnPublic = false,
} = this.props;
const { vanityNameError, isVanityEnabled } = this.state;
if (hideVanityNameSection) {
return null;
}
return (
<VanityNameSection
canChangeVanityName={canChangeVanityName}
isVanityEnabled={isVanityEnabled}
error={vanityNameError}
onChange={this.onVanityNameChange}
onCheckboxChange={this.onVanityCheckboxChange}
serverURL={serverURL}
vanityName={this.state.vanityName}
vanityNameInputProps={vanityNameInputProps}
warnOnPublic={warnOnPublic}
/>
);
}
renderPasswordSection() {
const { canChangePassword, isPasswordAvailable, passwordCheckboxProps, passwordInputProps } = this.props;
const { isPasswordEnabled, password, passwordError } = this.state;
return (
<PasswordSection
canChangePassword={canChangePassword}
error={passwordError}
isPasswordAvailable={isPasswordAvailable}
isPasswordEnabled={isPasswordEnabled}
isPasswordInitiallyEnabled={this.props.isPasswordEnabled}
onCheckboxChange={this.onPasswordCheckboxChange}
onPasswordChange={this.onPasswordChange}
password={password}
passwordCheckboxProps={passwordCheckboxProps}
passwordInputProps={passwordInputProps}
/>
);
}
renderExpirationSection() {
const { canChangeExpiration, expirationCheckboxProps, expirationInputProps } = this.props;
const { expirationDate, isExpirationEnabled, expirationError } = this.state;
return (
<ExpirationSection
canChangeExpiration={canChangeExpiration}
error={expirationError}
expirationCheckboxProps={expirationCheckboxProps}
expirationDate={expirationDate}
expirationInputProps={expirationInputProps}
isExpirationEnabled={isExpirationEnabled}
onCheckboxChange={this.onExpirationCheckboxChange}
onExpirationDateChange={this.onExpirationDateChange}
/>
);
}
renderAccessLevelNotice() {
const { accessLevel } = this.props;
const { isDownloadEnabled } = this.state;
const message = getAccessNoticeMessageId(accessLevel, isDownloadEnabled);
return (
message && (
<div className="link-settings-modal-notice">
<FormattedMessage {...message} />{' '}
<Link
href="https://community.box.com/t5/Using-Shared-Links/Shared-Link-Settings/ta-p/50250"
target="_blank"
>
<FormattedMessage {...messages.sharedLinkSettingWarningLinkText} />
</Link>
</div>
)
);
}
renderAllowDownloadSection() {
const {
canChangeDownload,
directLink,
directLinkInputProps,
downloadCheckboxProps,
isDirectLinkAvailable,
isDirectLinkUnavailableDueToDownloadSettings,
isDirectLinkUnavailableDueToAccessPolicy,
isDirectLinkUnavailableDueToMaliciousContent,
isDownloadAvailable,
item,
} = this.props;
const { isDownloadEnabled } = this.state;
const { classification } = item;
return (
<AllowDownloadSection
canChangeDownload={canChangeDownload}
classification={classification}
directLink={directLink}
directLinkInputProps={directLinkInputProps}
downloadCheckboxProps={downloadCheckboxProps}
isDirectLinkAvailable={isDirectLinkAvailable}
isDirectLinkUnavailableDueToDownloadSettings={isDirectLinkUnavailableDueToDownloadSettings}
isDirectLinkUnavailableDueToAccessPolicy={isDirectLinkUnavailableDueToAccessPolicy}
isDirectLinkUnavailableDueToMaliciousContent={isDirectLinkUnavailableDueToMaliciousContent}
isDownloadAvailable={isDownloadAvailable}
isDownloadEnabled={isDownloadEnabled}
onChange={this.onAllowDownloadChange}
/>
);
}
renderModalTitle() {
const { item } = this.props;
const { bannerPolicy, classification } = item;
return (
<span className="bdl-SharedLinkSettingsModal-title">
<FormattedMessage {...messages.modalTitle} />
<Classification
definition={bannerPolicy ? bannerPolicy.body : undefined}
messageStyle="tooltip"
name={classification}
className="bdl-SharedLinkSettingsModal-classification"
/>
</span>
);
}
render() {
const {
canChangeDownload,
canChangeExpiration,
canChangePassword,
canChangeVanityName,
cancelButtonProps,
isOpen,
modalProps,
onRequestClose,
saveButtonProps,
submitting,
} = this.props;
const showInaccessibleSettingsNotice = !(
canChangeDownload &&
canChangeExpiration &&
canChangePassword &&
canChangeVanityName
);
const disableSaveBtn = !(canChangeDownload || canChangeExpiration || canChangePassword || canChangeVanityName);
return (
<Modal
className="be-modal shared-link-settings-modal"
isOpen={isOpen}
onRequestClose={submitting ? undefined : onRequestClose}
title={this.renderModalTitle()}
{...modalProps}
>
<form onSubmit={this.onSubmit}>
{showInaccessibleSettingsNotice && (
<InlineNotice type="warning">
<FormattedMessage {...messages.inaccessibleSettingsNotice} />
</InlineNotice>
)}
{this.renderAccessLevelNotice()}
{this.renderExpirationSection()}
{this.renderPasswordSection()}
{this.renderVanityNameSection()}
{this.renderAllowDownloadSection()}
<ModalActions>
<Button isDisabled={submitting} onClick={onRequestClose} type="button" {...cancelButtonProps}>
<FormattedMessage {...commonMessages.cancel} />
</Button>
<PrimaryButton
isDisabled={submitting || disableSaveBtn}
isLoading={submitting}
{...saveButtonProps}
>
<FormattedMessage {...commonMessages.save} />
</PrimaryButton>
</ModalActions>
</form>
</Modal>
);
}
}
export default SharedLinkSettingsModal;