import React, {PureComponent} from 'react'; import PropTypes from 'prop-types'; import autobind from 'autobind-decorator'; import Button from '../base/button'; import Link from '../base/link'; import imgLight from '../../images/light.png'; import imgDark from '../../images/dark.png'; import imgDefault from '../../images/default.png'; import imgSolarizedLight from '../../images/solarized-light.png'; import imgSolarizedDark from '../../images/solarized-dark.png'; import imgSolarized from '../../images/solarized.png'; import imgRailscasts from '../../images/railscasts.png'; import imgPurple from '../../images/purple.png'; import imgMaterial from '../../images/material.png'; import * as session from '../../../sync/session'; const THEMES_PER_ROW = 3; const THEMES = [ {key: 'default', name: 'Insomnia', img: imgDefault}, {key: 'light', name: 'Simple Light', img: imgLight}, {key: 'dark', name: 'Simple Dark', img: imgDark}, {key: 'purple', name: 'Purple', img: imgPurple, paid: true}, {key: 'material', name: 'Material', img: imgMaterial, paid: true}, {key: 'solarized', name: 'Solarized', img: imgSolarized, paid: true}, {key: 'solarized-light', name: 'Solarized Light', img: imgSolarizedLight, paid: true}, {key: 'solarized-dark', name: 'Solarized Dark', img: imgSolarizedDark, paid: true}, {key: 'railscasts', name: 'Railscasts', img: imgRailscasts, paid: true} ]; @autobind class Theme extends PureComponent { constructor (props) { super(props); this.state = { isPremium: window.localStorage.getItem('settings.theme.isPremium') || false }; } async componentDidMount () { // NOTE: This is kind of sketchy because we're relying on our parent (tab view) // to remove->add us every time our tab is shown. If it didn't, we would need to // also hook into componentWillUpdate somehow to refresh more often. if (!session.isLoggedIn()) { this.setState({isPremium: false}); return; } const {isPremium} = await session.whoami(); if (this.state.isPremium !== isPremium) { this.setState({isPremium}); window.localStorage.setItem('settings.theme.isPremium', isPremium); } } renderTheme (theme) { const {handleChangeTheme, activeTheme} = this.props; const {isPremium} = this.state; const isActive = activeTheme === theme.key; const disabled = theme.paid && !isPremium; return (