mirror of
https://github.com/yude-jp/yude.jp
synced 2024-11-02 00:18:00 +09:00
39 lines
866 B
JavaScript
39 lines
866 B
JavaScript
// Component
|
|
import Group from './Group';
|
|
|
|
// Data fetching
|
|
import useSwr from 'swr'
|
|
|
|
const fetcher = (url) => fetch(url).then((res) => res.json())
|
|
|
|
function App (props) {
|
|
const uuid = props;
|
|
const { data, error } = useSwr(
|
|
uuid.uuid ? `/api/PlayerName/${uuid.uuid}` : null,
|
|
fetcher
|
|
)
|
|
|
|
if (error) {
|
|
return (
|
|
<>エラーが発生しました。</>
|
|
)
|
|
} else {
|
|
if (!data) {
|
|
return (
|
|
<>読み込み中...</>
|
|
)
|
|
} else {
|
|
return (
|
|
<>
|
|
<div className='has-tooltip'>
|
|
<span className='tooltip rounded shadow-lg p-1 bg-gray-100 text-red-500 -mt-8 font-mono text-sm'>UUID: {uuid.uuid}</span>
|
|
<p className="text-2xl inline">{data.username}</p>
|
|
<Group uuid={uuid.uuid} />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
export default App; |