UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

105 lines 6.53 kB
import * as tslib_1 from "tslib"; import * as React from 'react'; import { BaseComponent, classNamesFunction, divProperties, getInitials, getNativeProps, getRTL } from '../../../Utilities'; import { mergeStyles } from '../../../Styling'; import { PersonaPresence } from '../PersonaPresence/index'; import { Icon } from '../../../Icon'; import { Image, ImageFit, ImageLoadState } from '../../../Image'; import { PersonaPresence as PersonaPresenceEnum, PersonaSize } from '../Persona.types'; import { initialsColorPropToColorCode } from '../PersonaInitialsColor'; import { sizeToPixels } from '../PersonaConsts'; var getClassNames = classNamesFunction(); /** * PersonaCoin with no default styles. * [Use the `getStyles` API to add your own styles.](https://github.com/OfficeDev/office-ui-fabric-react/wiki/Styling) */ var PersonaCoinBase = /** @class */ (function (_super) { tslib_1.__extends(PersonaCoinBase, _super); function PersonaCoinBase(props) { var _this = _super.call(this, props) || this; _this._onRenderCoin = function (props) { var _a = _this.props, coinSize = _a.coinSize, styles = _a.styles, imageUrl = _a.imageUrl, imageAlt = _a.imageAlt, imageShouldFadeIn = _a.imageShouldFadeIn, imageShouldStartVisible = _a.imageShouldStartVisible, theme = _a.theme, showUnknownPersonaCoin = _a.showUnknownPersonaCoin; // Render the Image component only if an image URL is provided if (!imageUrl) { return null; } var size = _this.props.size; var classNames = getClassNames(styles, { theme: theme, size: size, showUnknownPersonaCoin: showUnknownPersonaCoin }); var dimension = coinSize || sizeToPixels[size]; return (React.createElement(Image, { className: classNames.image, imageFit: ImageFit.cover, src: imageUrl, width: dimension, height: dimension, alt: imageAlt, shouldFadeIn: imageShouldFadeIn, shouldStartVisible: imageShouldStartVisible, onLoadingStateChange: _this._onPhotoLoadingStateChange })); }; _this._onRenderInitials = function (props) { var imageInitials = props.imageInitials; var allowPhoneInitials = props.allowPhoneInitials, showUnknownPersonaCoin = props.showUnknownPersonaCoin; if (showUnknownPersonaCoin) { return React.createElement(Icon, { iconName: "Help" }); } var isRTL = getRTL(); imageInitials = imageInitials || getInitials(_this._getText(), isRTL, allowPhoneInitials); return imageInitials !== '' ? React.createElement("span", null, imageInitials) : React.createElement(Icon, { iconName: "Contact" }); }; _this._onPhotoLoadingStateChange = function (loadState) { _this.setState({ isImageLoaded: loadState === ImageLoadState.loaded, isImageError: loadState === ImageLoadState.error }); _this.props.onPhotoLoadingStateChange && _this.props.onPhotoLoadingStateChange(loadState); }; _this._warnDeprecations({ primaryText: 'text' }); _this.state = { isImageLoaded: false, isImageError: false }; return _this; } PersonaCoinBase.prototype.render = function () { var _a = this.props, className = _a.className, coinProps = _a.coinProps, showUnknownPersonaCoin = _a.showUnknownPersonaCoin, coinSize = _a.coinSize, styles = _a.styles, imageUrl = _a.imageUrl, _b = _a.onRenderCoin, onRenderCoin = _b === void 0 ? this._onRenderCoin : _b, _c = _a.onRenderInitials, onRenderInitials = _c === void 0 ? this._onRenderInitials : _c, presence = _a.presence, showInitialsUntilImageLoads = _a.showInitialsUntilImageLoads, theme = _a.theme; var size = this.props.size; var divProps = getNativeProps(this.props, divProperties); var coinSizeStyle = coinSize ? { width: coinSize, height: coinSize } : undefined; var hideImage = showUnknownPersonaCoin; var personaPresenceProps = { coinSize: coinSize, presence: presence, size: size, theme: theme }; // Use getStyles from props, or fall back to getStyles from styles file. var classNames = getClassNames(styles, { theme: theme, className: coinProps && coinProps.className ? coinProps.className : className, size: size, coinSize: coinSize, showUnknownPersonaCoin: showUnknownPersonaCoin }); var shouldRenderInitials = Boolean(!this.state.isImageLoaded && ((showInitialsUntilImageLoads && imageUrl) || !imageUrl || this.state.isImageError || hideImage)); return (React.createElement("div", tslib_1.__assign({}, divProps, { className: classNames.coin }), size !== PersonaSize.size10 && size !== PersonaSize.tiny ? (React.createElement("div", tslib_1.__assign({}, coinProps, { className: classNames.imageArea, style: coinSizeStyle }), shouldRenderInitials && (React.createElement("div", { className: mergeStyles(classNames.initials, !showUnknownPersonaCoin && { backgroundColor: initialsColorPropToColorCode(this.props) }), style: coinSizeStyle, "aria-hidden": "true" }, onRenderInitials(this.props, this._onRenderInitials))), !hideImage && onRenderCoin(this.props, this._onRenderCoin), React.createElement(PersonaPresence, tslib_1.__assign({}, personaPresenceProps)))) : // Otherwise, render just PersonaPresence. this.props.presence ? (React.createElement(PersonaPresence, tslib_1.__assign({}, personaPresenceProps))) : ( // Just render Contact Icon if there isn't a Presence prop. React.createElement(Icon, { iconName: "Contact", className: classNames.size10WithoutPresenceIcon })), this.props.children)); }; /** * Deprecation helper for getting text. */ PersonaCoinBase.prototype._getText = function () { return this.props.text || this.props.primaryText || ''; }; PersonaCoinBase.defaultProps = { size: PersonaSize.size48, presence: PersonaPresenceEnum.none, imageAlt: '' }; return PersonaCoinBase; }(BaseComponent)); export { PersonaCoinBase }; //# sourceMappingURL=PersonaCoin.base.js.map