You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			34 lines
		
	
	
		
			950 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			34 lines
		
	
	
		
			950 B
		
	
	
	
		
			TypeScript
		
	
import React from 'react';
 | 
						|
import classNames from 'classnames';
 | 
						|
 | 
						|
interface Props {
 | 
						|
  /**
 | 
						|
   * Corresponds to the theme setting in the app, and the class added to the root element.
 | 
						|
   */
 | 
						|
  ios: boolean;
 | 
						|
  theme: 'light-theme' | 'dark-theme';
 | 
						|
  type: 'private' | 'group';
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * Provides the parent elements necessary to allow the main Signal Desktop stylesheet to
 | 
						|
 * apply (with no changes) to messages in the Style Guide.
 | 
						|
 */
 | 
						|
export class ConversationContext extends React.Component<Props> {
 | 
						|
  public render() {
 | 
						|
    const { ios, theme, type } = this.props;
 | 
						|
 | 
						|
    return (
 | 
						|
      <div
 | 
						|
        className={classNames(theme || 'light-theme', ios ? 'ios-theme' : null)}
 | 
						|
      >
 | 
						|
        <div className={classNames('conversation', type || 'private')}>
 | 
						|
          <div className="discussion-container" style={{ padding: '0.5em' }}>
 | 
						|
            <ul className="message-list">{this.props.children}</ul>
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |