import React from 'react'
import { withTranslation, Trans, Interpolate } from 'react-i18next'

// These will have namespace "react" even though it comes before withtranslation during parsing
const bar = () => (
  <div>
    <span><Trans i18nKey="bar"></Trans></span>
  </div>
);

const foo = () => (
  <div>
    <span><Trans i18nKey="foo" /></span>
  </div>
);

class Test extends React.Component {
  render () {
    const { t } = this.props
    return (
      <div>
        <h1>{t('first')}</h1>
        <Interpolate i18nKey="second" value="some thing" component={interpolateComponent} />
        <Trans i18nKey="third.first" count={count}>
          Hello <strong title={t('fourth')}>{{name}}</strong>, you have {{count}} unread message. <Link to="/msgs">Go to messages</Link>.
        </Trans>
        <span><Trans i18nKey="fifth" count={count} /></span>
        <Trans i18nKey="third.second"> <b>Hello,</b> this shouldn't be trimmed.</Trans>
        <Trans i18nKey="third.third">
         <b>Hello,</b>
         this should be trimmed.
         <i> and this shoudln't</i>
        </Trans>
        <Trans>
          This should be part of the value and the key
          {/* this shouldn't */}
        </Trans>
        <Trans>
          don't split {{ on: this }}
        </Trans>
        <Trans i18nKey="override-default" defaults="default override">ignore me</Trans>
      </div>
    )
  }
}

export default withTranslation('react')(Test)
