2022-02-20 16:55:30 +01:00
|
|
|
import { MWPortableMedia } from "providers";
|
2022-02-20 16:45:46 +01:00
|
|
|
import { useEffect, useState } from "react";
|
|
|
|
import { useParams } from "react-router";
|
|
|
|
|
2022-03-06 14:41:51 +01:00
|
|
|
export function deserializePortableMedia(media: string): MWPortableMedia {
|
|
|
|
return JSON.parse(atob(decodeURIComponent(media)));
|
|
|
|
}
|
|
|
|
|
|
|
|
export function serializePortableMedia(media: MWPortableMedia): string {
|
|
|
|
const data = encodeURIComponent(btoa(JSON.stringify(media)));
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2022-02-20 16:45:46 +01:00
|
|
|
export function usePortableMedia(): MWPortableMedia | undefined {
|
|
|
|
const { media } = useParams<{ media: string }>();
|
|
|
|
const [mediaObject, setMediaObject] = useState<MWPortableMedia | undefined>(
|
|
|
|
undefined
|
|
|
|
);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
try {
|
|
|
|
setMediaObject(deserializePortableMedia(media));
|
|
|
|
} catch (err) {
|
|
|
|
console.error("Failed to deserialize portable media", err);
|
|
|
|
setMediaObject(undefined);
|
|
|
|
}
|
|
|
|
}, [media, setMediaObject]);
|
|
|
|
|
|
|
|
return mediaObject;
|
|
|
|
}
|