123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- /* @flow */
-
- import React, { Component } from 'react';
-
- import { isVpaasMeeting } from '../../../../jaas/functions';
- import { translate } from '../../../i18n';
- import { connect } from '../../../redux';
-
-
- declare var interfaceConfig: Object;
-
- /**
- * The CSS style of the element with CSS class {@code rightwatermark}.
- *
- * @private
- */
- const _RIGHT_WATERMARK_STYLE = {
- backgroundImage: 'url(images/rightwatermark.png)'
- };
-
- /**
- * The type of the React {@code Component} props of {@link Watermarks}.
- */
- type Props = {
-
- /**
- * The link used to navigate to on logo click.
- */
- _logoLink: string,
-
- /**
- * The url for the logo.
- */
- _logoUrl: string,
-
- /**
- * If the Jitsi watermark should be displayed or not.
- */
- _showJitsiWatermark: boolean,
-
- /**
- * The default value for the Jitsi logo URL.
- */
- defaultJitsiLogoURL: ?string,
-
- /**
- * Invoked to obtain translated strings.
- */
- t: Function
- };
-
- /**
- * The type of the React {@code Component} state of {@link Watermarks}.
- */
- type State = {
-
- /**
- * The url to open when clicking the brand watermark.
- */
- brandWatermarkLink: string,
-
- /**
- * Whether or not the brand watermark should be displayed.
- */
- showBrandWatermark: boolean,
-
- /**
- * Whether or not the show the "powered by Jitsi.org" link.
- */
- showPoweredBy: boolean
- };
-
- /**
- * A Web Component which renders watermarks such as Jits, brand, powered by,
- * etc.
- */
- class Watermarks extends Component<Props, State> {
- /**
- * Initializes a new Watermarks instance.
- *
- * @param {Object} props - The read-only properties with which the new
- * instance is to be initialized.
- */
- constructor(props: Props) {
- super(props);
-
- const showBrandWatermark = interfaceConfig.SHOW_BRAND_WATERMARK;
-
- this.state = {
- brandWatermarkLink:
- showBrandWatermark ? interfaceConfig.BRAND_WATERMARK_LINK : '',
- showBrandWatermark,
- showPoweredBy: interfaceConfig.SHOW_POWERED_BY
- };
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- return (
- <div>
- {
- this._renderJitsiWatermark()
- }
- {
- this._renderBrandWatermark()
- }
- {
- this._renderPoweredBy()
- }
- </div>
- );
- }
-
- /**
- * Renders a brand watermark if it is enabled.
- *
- * @private
- * @returns {ReactElement|null} Watermark element or null.
- */
- _renderBrandWatermark() {
- let reactElement = null;
-
- if (this.state.showBrandWatermark) {
- reactElement = (
- <div
- className = 'watermark rightwatermark'
- style = { _RIGHT_WATERMARK_STYLE } />
- );
-
- const { brandWatermarkLink } = this.state;
-
- if (brandWatermarkLink) {
- reactElement = (
- <a
- href = { brandWatermarkLink }
- target = '_new'>
- { reactElement }
- </a>
- );
- }
- }
-
- return reactElement;
- }
-
- /**
- * Renders a Jitsi watermark if it is enabled.
- *
- * @private
- * @returns {ReactElement|null}
- */
- _renderJitsiWatermark() {
- const {
- _logoLink,
- _logoUrl,
- _showJitsiWatermark
- } = this.props;
- const { t } = this.props;
- let reactElement = null;
-
- if (_showJitsiWatermark) {
- const style = {
- backgroundImage: `url(${_logoUrl})`,
- maxWidth: 140,
- maxHeight: 70,
- position: _logoLink ? 'static' : 'absolute'
- };
-
- reactElement = (<div
- className = 'watermark leftwatermark'
- style = { style } />);
-
- if (_logoLink) {
- reactElement = (
- <a
- aria-label = { t('jitsiHome', { logo: interfaceConfig.APP_NAME }) }
- className = 'watermark leftwatermark'
- href = { _logoLink }
- target = '_new'>
- { reactElement }
- </a>
- );
- }
- }
-
- return reactElement;
- }
-
- /**
- * Renders a powered by block if it is enabled.
- *
- * @private
- * @returns {ReactElement|null}
- */
- _renderPoweredBy() {
- if (this.state.showPoweredBy) {
- const { t } = this.props;
-
- return (
- <a
- className = 'poweredby'
- href = 'http://jitsi.org'
- target = '_new'>
- <span>{ t('poweredby') } jitsi.org</span>
- </a>
- );
- }
-
- return null;
- }
- }
-
- /**
- * Maps parts of Redux store to component prop types.
- *
- * @param {Object} state - Snapshot of Redux store.
- * @param {Object} ownProps - Component's own props.
- * @returns {Props}
- */
- function _mapStateToProps(state, ownProps) {
- const {
- customizationReady,
- customizationFailed,
- defaultBranding,
- useDynamicBrandingData,
- logoClickUrl,
- logoImageUrl
- } = state['features/dynamic-branding'];
- const isValidRoom = state['features/base/conference'].room;
- const {
- DEFAULT_LOGO_URL,
- JITSI_WATERMARK_LINK,
- SHOW_JITSI_WATERMARK
- } = interfaceConfig;
- let _showJitsiWatermark = (
- customizationReady && !customizationFailed
- && SHOW_JITSI_WATERMARK)
- || !isValidRoom;
- let _logoUrl = logoImageUrl;
- let _logoLink = logoClickUrl;
-
- if (useDynamicBrandingData) {
- if (isVpaasMeeting(state)) {
- // don't show logo if request fails or no logo set for vpaas meetings
- _showJitsiWatermark = !customizationFailed && Boolean(logoImageUrl);
- } else if (defaultBranding) {
- _logoUrl = DEFAULT_LOGO_URL;
- _logoLink = JITSI_WATERMARK_LINK;
- }
- } else {
- // When there is no custom branding data use defaults
- _logoUrl = ownProps.defaultJitsiLogoURL || DEFAULT_LOGO_URL;
- _logoLink = JITSI_WATERMARK_LINK;
- }
-
- return {
- _logoLink,
- _logoUrl,
- _showJitsiWatermark
- };
- }
-
- export default connect(_mapStateToProps)(translate(Watermarks));
|