mirror of
https://github.com/yude-jp/yude.jp
synced 2024-12-22 20:20:09 +09:00
Compare commits
No commits in common. "979bbe2a7f9cb388968f9e67fc4cc461246be4c9" and "aaa92c3a73a60e62f8690132eae523b70e3624e6" have entirely different histories.
979bbe2a7f
...
aaa92c3a73
@ -30,7 +30,6 @@
|
|||||||
"@tailwindcss/typography": "^0.4.0",
|
"@tailwindcss/typography": "^0.4.0",
|
||||||
"autoprefixer": "^10.3.4",
|
"autoprefixer": "^10.3.4",
|
||||||
"axios": "^0.21.4",
|
"axios": "^0.21.4",
|
||||||
"date-fns": "^2.24.0",
|
|
||||||
"microcms-js-sdk": "^1.2.0",
|
"microcms-js-sdk": "^1.2.0",
|
||||||
"moment": "^2.29.1",
|
"moment": "^2.29.1",
|
||||||
"next": "^11.1.2",
|
"next": "^11.1.2",
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
// React
|
|
||||||
import { format } from 'date-fns'
|
|
||||||
|
|
||||||
const {
|
|
||||||
FITBIT_TOKEN: bearer
|
|
||||||
} = process.env;
|
|
||||||
|
|
||||||
const today = format(new Date(), 'yyyy-MM-dd')
|
|
||||||
|
|
||||||
export const getName = async (props) => {
|
|
||||||
const uuid = props;
|
|
||||||
return fetch(
|
|
||||||
'https://api.fitbit.com/1/user/-/activities/heart/date/today/1d/1sec/time/00:00/23:59.json',
|
|
||||||
{
|
|
||||||
headers: {
|
|
||||||
Authorization: `Bearer ${bearer}`,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const FitbitHeartrate = async (req, res) => {
|
|
||||||
const { uuid } = req.query
|
|
||||||
const response = await getName(uuid);
|
|
||||||
const data = await response.json();
|
|
||||||
if (response.status === 204 || response.status > 400) {
|
|
||||||
return res.status(200).send("404");
|
|
||||||
}
|
|
||||||
// const heartrate = data.map((item, i) => {
|
|
||||||
// if (item.dateTime = today) {
|
|
||||||
// return item
|
|
||||||
// } else {
|
|
||||||
// return "Failed to retrieve data."
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// )
|
|
||||||
const array = data["activities-heart-intraday"].dataset
|
|
||||||
const heartrate = array[array.length - 1]
|
|
||||||
return res.status(200).json({
|
|
||||||
heartrate,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
export default FitbitHeartrate
|
|
@ -1,35 +0,0 @@
|
|||||||
// React
|
|
||||||
import { format } from 'date-fns'
|
|
||||||
|
|
||||||
const {
|
|
||||||
FITBIT_TOKEN: bearer
|
|
||||||
} = process.env;
|
|
||||||
|
|
||||||
const today = format(new Date(), 'yyyy-MM-dd')
|
|
||||||
|
|
||||||
export const getName = async (props) => {
|
|
||||||
const uuid = props;
|
|
||||||
return fetch(
|
|
||||||
'https://api.fitbit.com/1.2/user/-/sleep/date/' + today + '.json',
|
|
||||||
{
|
|
||||||
headers: {
|
|
||||||
Authorization: `Bearer ${bearer}`,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const FitbitSleep = async (req, res) => {
|
|
||||||
const { uuid } = req.query
|
|
||||||
const response = await getName(uuid);
|
|
||||||
const data = await response.json();
|
|
||||||
if (response.status === 204 || response.status > 400) {
|
|
||||||
return res.status(200).send("404");
|
|
||||||
}
|
|
||||||
const duration = data.summary.totalMinutesAsleep
|
|
||||||
return res.status(200).json({
|
|
||||||
duration,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
export default FitbitSleep
|
|
@ -1,38 +0,0 @@
|
|||||||
// Data fetching
|
|
||||||
import useSwr from 'swr'
|
|
||||||
|
|
||||||
// Font Awesome
|
|
||||||
import { faHeartbeat } from '@fortawesome/free-solid-svg-icons'
|
|
||||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
||||||
|
|
||||||
// Data fetching implements
|
|
||||||
const fetcher = (url) => fetch(url).then((res) => res.json())
|
|
||||||
|
|
||||||
function App (props) {
|
|
||||||
const { data, error } = useSwr(
|
|
||||||
'/api/Fitbit/Heartrate',
|
|
||||||
fetcher
|
|
||||||
)
|
|
||||||
|
|
||||||
if (error) {
|
|
||||||
return (
|
|
||||||
<>エラーが発生しました。</>
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
if (!data) {
|
|
||||||
return (
|
|
||||||
<>読み込み中...</>
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<FontAwesomeIcon icon={faHeartbeat} className="w-5 h-5 inline ml-3"/>
|
|
||||||
|
|
||||||
{data.heartrate.value}
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default App;
|
|
@ -1,44 +0,0 @@
|
|||||||
// Data fetching
|
|
||||||
import useSwr from 'swr'
|
|
||||||
|
|
||||||
// Font Awesome
|
|
||||||
import { faBed } from '@fortawesome/free-solid-svg-icons'
|
|
||||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
||||||
|
|
||||||
// Data fetching implements
|
|
||||||
const fetcher = (url) => fetch(url).then((res) => res.json())
|
|
||||||
|
|
||||||
function App (props) {
|
|
||||||
const { data, error } = useSwr(
|
|
||||||
'/api/Fitbit/Sleep',
|
|
||||||
fetcher
|
|
||||||
)
|
|
||||||
|
|
||||||
if (error) {
|
|
||||||
return (
|
|
||||||
<>エラーが発生しました。</>
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
if (!data) {
|
|
||||||
return (
|
|
||||||
<>読み込み中...</>
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
const duration = data.duration
|
|
||||||
const hours = Math.floor(duration / 60)
|
|
||||||
let minutes = duration % 60
|
|
||||||
if (minutes <= 9) {
|
|
||||||
minutes = '0' + minutes
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<FontAwesomeIcon icon={faBed} className="w-5 h-5 inline"/>
|
|
||||||
|
|
||||||
{hours}:{minutes}
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default App;
|
|
@ -25,8 +25,6 @@ import PublicKeys from './components/Profile/PublicKeys'
|
|||||||
import Button from './components/Profile/Button'
|
import Button from './components/Profile/Button'
|
||||||
import Contact from './components/Profile/Contact'
|
import Contact from './components/Profile/Contact'
|
||||||
import NintendoSW from "./components/Profile/NintendoSW"
|
import NintendoSW from "./components/Profile/NintendoSW"
|
||||||
import FitbitSleep from "./components/Fitbit/Sleep"
|
|
||||||
import FitbitHeartrate from "./components/Fitbit/Heartrate"
|
|
||||||
|
|
||||||
// next-seo
|
// next-seo
|
||||||
import { NextSeo } from 'next-seo';
|
import { NextSeo } from 'next-seo';
|
||||||
@ -63,8 +61,6 @@ export default function Profile(props) {
|
|||||||
<div>
|
<div>
|
||||||
<DiscordPlaying />
|
<DiscordPlaying />
|
||||||
<Spotify />
|
<Spotify />
|
||||||
<FitbitSleep />
|
|
||||||
<FitbitHeartrate />
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -1541,11 +1541,6 @@ data-uri-to-buffer@3.0.1:
|
|||||||
resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636"
|
resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636"
|
||||||
integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==
|
integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==
|
||||||
|
|
||||||
date-fns@^2.24.0:
|
|
||||||
version "2.24.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.24.0.tgz#7d86dc0d93c87b76b63d213b4413337cfd1c105d"
|
|
||||||
integrity sha512-6ujwvwgPID6zbI0o7UbURi2vlLDR9uP26+tW6Lg+Ji3w7dd0i3DOcjcClLjLPranT60SSEFBwdSyYwn/ZkPIuw==
|
|
||||||
|
|
||||||
debug@2, debug@^2.6.9:
|
debug@2, debug@^2.6.9:
|
||||||
version "2.6.9"
|
version "2.6.9"
|
||||||
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
||||||
|
Loading…
Reference in New Issue
Block a user