| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 | 
							- // @flow
 - 
 - import React, { Component } from 'react';
 - import { Image, View } from 'react-native';
 - 
 - import { CachedImage, ImageCache } from '../../../mobile/image-cache';
 - import { Platform } from '../../react';
 - import { ColorPalette } from '../../styles';
 - 
 - import styles from './styles';
 - 
 - /**
 -  * The default image/source to be used in case none is specified or the
 -  * specified one fails to load.
 -  *
 -  * XXX The relative path to the default/stock (image) file is defined by the
 -  * {@code const} {@code DEFAULT_AVATAR_RELATIVE_PATH}. Unfortunately, the
 -  * packager of React Native cannot deal with it early enough for the following
 -  * {@code require} to succeed at runtime. Anyway, be sure to synchronize the
 -  * relative path on Web and mobile for the purposes of consistency.
 -  *
 -  * @private
 -  * @type {string}
 -  */
 - const _DEFAULT_SOURCE = require('../../../../../images/avatar.png');
 - 
 - /**
 -  * The type of the React {@link Component} props of {@link Avatar}.
 -  */
 - type Props = {
 - 
 -     /**
 -      * The size for the {@link Avatar}.
 -      */
 -     size: number,
 - 
 - 
 -     /**
 -      * The URI of the {@link Avatar}.
 -      */
 -     uri: string
 - };
 - 
 - /**
 -  * The type of the React {@link Component} state of {@link Avatar}.
 -  */
 - type State = {
 -     backgroundColor: string,
 -     source: number | { uri: string }
 - };
 - 
 - /**
 -  * Implements an avatar as a React Native/mobile {@link Component}.
 -  */
 - export default class Avatar extends Component<Props, State> {
 -     /**
 -      * The indicator which determines whether this {@code Avatar} has been
 -      * unmounted.
 -      */
 -     _unmounted: ?boolean;
 - 
 -     /**
 -      * Initializes a new Avatar instance.
 -      *
 -      * @param {Props} props - The read-only React Component props with which
 -      * the new instance is to be initialized.
 -      */
 -     constructor(props: Props) {
 -         super(props);
 - 
 -         // Fork (in Facebook/React speak) the prop uri because Image will
 -         // receive it through a source object. Additionally, other props may be
 -         // forked as well.
 -         this.componentWillReceiveProps(props);
 -     }
 - 
 -     /**
 -      * Notifies this mounted React Component that it will receive new props.
 -      * Forks (in Facebook/React speak) the prop {@code uri} because
 -      * {@link Image} will receive it through a {@code source} object.
 -      * Additionally, other props may be forked as well.
 -      *
 -      * @inheritdoc
 -      * @param {Props} nextProps - The read-only React Component props that this
 -      * instance will receive.
 -      * @returns {void}
 -      */
 -     componentWillReceiveProps(nextProps: Props) {
 -         // uri
 -         const prevURI = this.props && this.props.uri;
 -         const nextURI = nextProps && nextProps.uri;
 -         const assignState = !this.state;
 - 
 -         if (prevURI !== nextURI || assignState) {
 -             const nextState = {
 -                 backgroundColor: this._getBackgroundColor(nextProps),
 - 
 -                 /**
 -                  * The source of the {@link Image} which is the actual
 -                  * representation of this {@link Avatar}. The state
 -                  * {@code source} was explicitly introduced in order to reduce
 -                  * unnecessary renders.
 -                  *
 -                  * @type {{
 -                  *     uri: string
 -                  * }}
 -                  */
 -                 source: _DEFAULT_SOURCE
 -             };
 - 
 -             if (assignState) {
 -                 // eslint-disable-next-line react/no-direct-mutation-state
 -                 this.state = nextState;
 -             } else {
 -                 this.setState(nextState);
 -             }
 - 
 -             // XXX @lyubomir: My logic for the character # bellow is as follows:
 -             // - Technically, URI is supposed to start with a scheme and scheme
 -             //   cannot contain the character #.
 -             // - Technically, the character # in URI signals the start of the
 -             //   fragment/hash.
 -             // - Technically, the fragment/hash does not imply a retrieval
 -             //   action.
 -             // - Practically, the fragment/hash does not always mandate a
 -             //   retrieval action. For example, an HTML anchor with an href that
 -             //   starts with the character # does not cause a Web browser to
 -             //   initiate a retrieval action.
 -             // So I'll use the character # at the start of URI to not initiate
 -             // an image retrieval action.
 -             if (nextURI && !nextURI.startsWith('#')) {
 -                 const nextSource = { uri: nextURI };
 -                 const observer = () => {
 -                     this._unmounted || this.setState((prevState, props) => {
 -                         if (props.uri === nextURI
 -                                 && (!prevState.source
 -                                     || prevState.source.uri !== nextURI)) {
 -                             return { source: nextSource };
 -                         }
 - 
 -                         return {};
 -                     });
 -                 };
 - 
 -                 // Wait for the source/URI to load.
 -                 if (ImageCache) {
 -                     ImageCache.get().on(
 -                         nextSource,
 -                         observer,
 -                         /* immutable */ true);
 -                 } else if (assignState) {
 -                     // eslint-disable-next-line react/no-direct-mutation-state
 -                     this.state = {
 -                         ...this.state,
 -                         source: nextSource
 -                     };
 -                 } else {
 -                     observer();
 -                 }
 -             }
 -         }
 -     }
 - 
 -     /**
 -      * Notifies this {@code Component} that it will be unmounted and destroyed
 -      * and, most importantly, that it should no longer call
 -      * {@link #setState(Object)}. {@code Avatar} needs it because it downloads
 -      * images via {@link ImageCache} which will asynchronously notify about
 -      * success.
 -      *
 -      * @inheritdoc
 -      * @returns {void}
 -      */
 -     componentWillUnmount() {
 -         this._unmounted = true;
 -     }
 - 
 -     /**
 -      * Computes a hash over the URI and returns a HSL background color. We use
 -      * 75% as lightness, for nice pastel style colors.
 -      *
 -      * @param {Object} props - The read-only React {@code Component} props from
 -      * which the background color is to be generated.
 -      * @private
 -      * @returns {string} - The HSL CSS property.
 -      */
 -     _getBackgroundColor({ uri }) {
 -         if (!uri) {
 -             // @lyubomir: I'm leaving @saghul's implementation which picks up a
 -             // random color bellow so that we have it in the source code in
 -             // case we decide to use it in the future. However, I think at the
 -             // time of this writing that the randomness reduces the
 -             // predictability which React is supposed to bring to our app.
 -             return ColorPalette.white;
 -         }
 - 
 -         let hash = 0;
 - 
 -         if (typeof uri === 'string') {
 -             /* eslint-disable no-bitwise */
 - 
 -             for (let i = 0; i < uri.length; i++) {
 -                 hash = uri.charCodeAt(i) + ((hash << 5) - hash);
 -                 hash |= 0; // Convert to 32-bit integer
 -             }
 - 
 -             /* eslint-enable no-bitwise */
 -         } else {
 -             // @saghul: If we have no URI yet, we have no data to hash from. So
 -             // use a random value.
 -             hash = Math.floor(Math.random() * 360);
 -         }
 - 
 -         return `hsl(${hash % 360}, 100%, 75%)`;
 -     }
 - 
 -     /**
 -      * Implements React's {@link Component#render()}.
 -      *
 -      * @inheritdoc
 -      */
 -     render() {
 -         // Propagate all props of this Avatar but the ones consumed by this
 -         // Avatar to the Image it renders.
 -         const {
 -             /* eslint-disable no-unused-vars */
 - 
 -             // The following are forked in state:
 -             uri: forked0,
 - 
 -             /* eslint-enable no-unused-vars */
 - 
 -             size,
 -             ...props
 -         } = this.props;
 -         const {
 -             backgroundColor,
 -             source
 -         } = this.state;
 - 
 -         // Compute the base style
 -         const borderRadius = size / 2;
 -         const style = {
 -             ...styles.avatar,
 - 
 -             // XXX Workaround for Android: for radii < 80 the border radius
 -             // doesn't work properly, but applying a radius twice as big seems
 -             // to do the trick.
 -             borderRadius:
 -                 Platform.OS === 'android' && borderRadius < 80
 -                     ? size * 2
 -                     : borderRadius,
 -             height: size,
 -             width: size
 -         };
 - 
 -         // If we're rendering the _DEFAULT_SOURCE, then we want to do some
 -         // additional fu like having automagical colors generated per
 -         // participant, transparency to make the intermediate state while
 -         // downloading the remote image a little less "in your face", etc.
 -         let styleWithBackgroundColor;
 - 
 -         if (source === _DEFAULT_SOURCE && backgroundColor) {
 -             styleWithBackgroundColor = {
 -                 ...style,
 - 
 -                 backgroundColor,
 - 
 -                 // FIXME @lyubomir: Without the opacity bellow I feel like the
 -                 // avatar colors are too strong. Besides, we use opacity for the
 -                 // ToolbarButtons. That's where I copied the value from and we
 -                 // may want to think about "standardizing" the opacity in the
 -                 // app in a way similar to ColorPalette.
 -                 opacity: 0.1,
 -                 overflow: 'hidden'
 -             };
 -         }
 - 
 -         // If we're styling with backgroundColor, we need to wrap the Image in a
 -         // View because of a bug in React Native for Android:
 -         // https://github.com/facebook/react-native/issues/3198
 -         let imageStyle;
 -         let viewStyle;
 - 
 -         if (styleWithBackgroundColor) {
 -             if (Platform.OS === 'android') {
 -                 imageStyle = style;
 -                 viewStyle = styleWithBackgroundColor;
 -             } else {
 -                 imageStyle = styleWithBackgroundColor;
 -             }
 -         } else {
 -             imageStyle = style;
 -         }
 - 
 -         let element
 -             = React.createElement(
 - 
 -                 // XXX CachedImage removed support for images which clearly do
 -                 // not need caching.
 -                 typeof source === 'number' ? Image : CachedImage,
 -                 {
 -                     ...props,
 - 
 -                     resizeMode: 'contain',
 -                     source,
 -                     style: imageStyle
 -                 });
 - 
 -         if (viewStyle) {
 -             element = React.createElement(View, { style: viewStyle }, element);
 -         }
 - 
 -         return element;
 -     }
 - }
 
 
  |