mirror of
https://github.com/gabehf/Koito.git
synced 2026-04-22 20:11:50 -07:00
Added KOITO_DATE_FORMAT option to choose how the dates are displayed
This commit is contained in:
parent
0ec7b458cc
commit
61d5f2f5f0
10 changed files with 53 additions and 9 deletions
|
|
@ -5,8 +5,9 @@ import LastPlays from "~/components/LastPlays";
|
|||
import PeriodSelector from "~/components/PeriodSelector";
|
||||
import MediaLayout from "./MediaLayout";
|
||||
import ActivityGrid from "~/components/ActivityGrid";
|
||||
import { timeListenedString } from "~/utils/utils";
|
||||
import { timeListenedString, formatDate } from "~/utils/utils";
|
||||
import InterestGraph from "~/components/InterestGraph";
|
||||
import { useAppContext } from "~/providers/AppProvider";
|
||||
|
||||
export async function clientLoader({ params }: LoaderFunctionArgs) {
|
||||
let res = await fetch(`/apis/web/v1/track?id=${params.id}`);
|
||||
|
|
@ -27,6 +28,7 @@ export async function clientLoader({ params }: LoaderFunctionArgs) {
|
|||
export default function Track() {
|
||||
const { track, album } = useLoaderData();
|
||||
const [period, setPeriod] = useState("week");
|
||||
const { dateFormat } = useAppContext();
|
||||
|
||||
return (
|
||||
<MediaLayout
|
||||
|
|
@ -69,7 +71,7 @@ export default function Track() {
|
|||
{track.first_listen > 0 && (
|
||||
<p title={new Date(track.first_listen * 1000).toLocaleString()}>
|
||||
Listening since{" "}
|
||||
{new Date(track.first_listen * 1000).toLocaleDateString()}
|
||||
{formatDate(new Date(track.first_listen * 1000), dateFormat)}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
|
@ -88,3 +90,4 @@ export default function Track() {
|
|||
</MediaLayout>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue