]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/pages/Technique.js
crystal switches in door tracker
[alttp.git] / resources / js / components / pages / Technique.js
index 19b56b72829e3c0427505b3a2327483516c2fc54..4004707895ad23dc18607e1af5a1758c2b01e3fa 100644 (file)
@@ -1,14 +1,20 @@
 import axios from 'axios';
+import PropTypes from 'prop-types';
 import React, { useEffect, useState } from 'react';
+import { Helmet } from 'react-helmet';
+import { withTranslation } from 'react-i18next';
 import { useParams } from 'react-router-dom';
 
+import CanonicalLinks from '../common/CanonicalLinks';
 import ErrorBoundary from '../common/ErrorBoundary';
 import ErrorMessage from '../common/ErrorMessage';
 import Loading from '../common/Loading';
 import NotFound from '../pages/NotFound';
 import Detail from '../techniques/Detail';
+import { getLanguages, getMatchedLocale, getTranslation } from '../../helpers/Technique';
+import i18n from '../../i18n';
 
-const Technique = () => {
+const Technique = ({ type }) => {
        const params = useParams();
        const { name } = params;
 
@@ -20,12 +26,11 @@ const Technique = () => {
                const ctrl = new AbortController();
                setLoading(true);
                axios
-                       .get(`/api/tech/${name}`, { signal: ctrl.signal })
+                       .get(`/api/pages/${type}/${name}`, { signal: ctrl.signal })
                        .then(response => {
                                setError(null);
                                setLoading(false);
                                setTechnique(response.data);
-                               window.document.title = response.data.title;
                        })
                        .catch(error => {
                                setError(error);
@@ -35,7 +40,7 @@ const Technique = () => {
                return () => {
                        ctrl.abort();
                };
-       }, [name]);
+       }, [name, type]);
 
        if (loading) {
                return <Loading />;
@@ -50,8 +55,21 @@ const Technique = () => {
        }
 
        return <ErrorBoundary>
+               <Helmet>
+                       <title>{getTranslation(technique, 'title', i18n.language)}</title>
+                       <meta name="description" content={getTranslation(technique, 'short', i18n.language)} />
+               </Helmet>
+               <CanonicalLinks
+                       base={`/tech/${technique.name}`}
+                       lang={getMatchedLocale(technique, i18n.language)}
+                       langs={getLanguages(technique)}
+               />
                <Detail technique={technique} />
        </ErrorBoundary>;
 };
 
-export default Technique;
+Technique.propTypes = {
+       type: PropTypes.string,
+};
+
+export default withTranslation()(Technique);