0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-07-05 10:46:13 +09:00
yude.jp/pages/components/DiscordPlaying.js
2021-05-28 11:55:00 +09:00

42 lines
1.2 KiB
JavaScript

import React, { useState, useEffect } from 'react';
import axios from 'axios';
import useTranslation from 'next-translate/useTranslation'
import { useRouter } from 'next/router'
function App (){
const router = useRouter()
const { locale, locales, defaultLocale, pathname } = router
const { t, lang } = useTranslation("common")
const [dataPlaying, setDataPlaying] = useState({ hits: [] });
useEffect(async () => {
const result = await axios(
'https://discord.com/api/guilds/723409709306216498/widget.json',
);
setDataPlaying(result.dataPlaying);
}, []);
if (dataPlaying === undefined){
console.log("[Discord API] データの取得に失敗しました。 / Failed to retrieve data.")
return <p></p>
}else{
const str = JSON.stringify(dataPlaying)
if (str.indexOf("game") !== -1){
const yes_playing = t('yes_playing', {playing: dataPlaying.members[0].game.name})
return <p>{yes_playing}</p>
}else{
return <p></p>
}
}
};
export async function getServerSideProps() {
// Fetch data from external API
const res = await fetch(url)
const data = await res.json()
// Pass data to the page via props
return { props: { data } }
}
export default App;