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 [data, setData] = useState({ hits: [] }); useEffect(async () => { const result = await axios( 'https://discord.com/api/guilds/723409709306216498/widget.json', ); setData(result.data); }, []); if (data === undefined){ console.log("[Discord API] データの取得に失敗しました。 / Failed to retrieve data.") return

}else{ const str = JSON.stringify(data) if (str.indexOf("game") !== -1){ const yes_playing = t('yes_playing', {playing: data.members[0].game.name}) return

{yes_playing}

console.log("[Discord API] Playing: " + data.members[0].game.name) }else{ return

console.log("[Discord API] Nothing playing") } } }; 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;