]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/techniques/Detail.js
tech title icons
[alttp.git] / resources / js / components / techniques / Detail.js
index d586a9a159375e544d8b4f4bb0b04d8b3eb2299b..9d9534ed31f2d6831f883fa2ce043975e90958e7 100644 (file)
@@ -1,21 +1,52 @@
 import PropTypes from 'prop-types';
 import React from 'react';
-import { Container } from 'react-bootstrap';
+import { Alert, Container } from 'react-bootstrap';
+import { withTranslation } from 'react-i18next';
 
+import List from './List';
 import Outline from './Outline';
+import Requirements from './Requirements';
+import Rulesets from './Rulesets';
+import RawHTML from '../common/RawHTML';
+import {
+       getRelations,
+       getTranslation,
+       hasRelations,
+       sorted,
+} from '../../helpers/Technique';
+import i18n from '../../i18n';
 
 const Detail = ({ technique }) => <Container as="article">
-       <h1>{technique.title}</h1>
+       <div className="d-flex align-items-center justify-content-between">
+               <h1>{getTranslation(technique, 'title', i18n.language)}</h1>
+               {technique && technique.rulesets ?
+                       <Rulesets technique={technique} />
+               : null}
+       </div>
        <Outline technique={technique} />
-       <div dangerouslySetInnerHTML={{ __html: technique.description }} />
+       <Requirements technique={technique} />
+       <RawHTML html={getTranslation(technique, 'description', i18n.language)} />
        {technique.chapters ? technique.chapters.map(chapter =>
                <section id={`c${chapter.id}`} key={`c${chapter.id}`}>
                        {chapter.pivot.level ?
-                               React.createElement(`h${chapter.pivot.level}`, {}, chapter.title)
+                               React.createElement(
+                                       `h${chapter.pivot.level}`,
+                                       {},
+                                       getTranslation(chapter, 'title', i18n.language),
+                               )
                        : null}
-                       <div dangerouslySetInnerHTML={{ __html: chapter.description }} />
+                       <RawHTML html={getTranslation(chapter, 'description', i18n.language)} />
                </section>
        ) : null}
+       {hasRelations(technique, 'related') ? <>
+               <h2 className="mt-5">{i18n.t('techniques.seeAlso')}</h2>
+               <List techniques={sorted(getRelations(technique, 'related'))} />
+       </> : null}
+       {getTranslation(technique, 'attribution', i18n.language) ?
+               <Alert variant="dark">
+                       <RawHTML html={getTranslation(technique, 'attribution', i18n.language)} />
+               </Alert>
+       : null}
 </Container>;
 
 Detail.propTypes = {
@@ -23,8 +54,10 @@ Detail.propTypes = {
                chapters: PropTypes.arrayOf(PropTypes.shape({
                })),
                description: PropTypes.string,
+               rulesets: PropTypes.shape({
+               }),
                title: PropTypes.string,
        }),
 };
 
-export default Detail;
+export default withTranslation()(Detail);