mirror of
https://github.com/yude-jp/yude.jp
synced 2024-11-02 00:18:00 +09:00
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
|
import React, { useState, useEffect } from 'react';
|
||
|
import axios from 'axios';
|
||
|
import useTranslation from 'next-translate/useTranslation'
|
||
|
import { useRouter } from 'next/router'
|
||
|
import LastPlayed from './LastPlayed'
|
||
|
|
||
|
function App (props) {
|
||
|
const uuid = props;
|
||
|
const router = useRouter()
|
||
|
const { locale, locales, defaultLocale, pathname } = router
|
||
|
const { t, lang } = useTranslation("common")
|
||
|
const [data, setData] = useState({ hits: [] });
|
||
|
|
||
|
useEffect(() => {
|
||
|
const fetchData = async () => {
|
||
|
const result = await axios(
|
||
|
'https://minecraft.yude.jp/online/' + uuid.uuid,
|
||
|
);
|
||
|
setData(result.data);
|
||
|
};
|
||
|
fetchData();
|
||
|
}, []);
|
||
|
if (data === undefined){
|
||
|
console.log("[Minecraft: オンライン状況] データの取得に失敗しました。 / Failed to retrieve data.")
|
||
|
return <p></p>
|
||
|
}else {
|
||
|
if (data.toString() == "false") {
|
||
|
return <LastPlayed uuid={uuid.uuid} />
|
||
|
} else {
|
||
|
if (data.toString() == "true") {
|
||
|
return <p>オンライン</p>
|
||
|
} else {
|
||
|
return <p>取得中...</p>
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export default App;
|