add better video path string encoding/decoding
This commit is contained in:
parent
c98ad299cc
commit
7f0fc385a1
|
@ -6,13 +6,15 @@ import Video from "@/components/Pages/Video";
|
|||
|
||||
import { fetchVideoData } from "@/utils/scrape/video";
|
||||
|
||||
import { decodeVideoUrlPath } from '@/utils/string';
|
||||
|
||||
import { useLocale } from 'next-intl';
|
||||
|
||||
export default async function VideoPage({ params }: { params: { id: string } }) {
|
||||
|
||||
const locale = useLocale()
|
||||
|
||||
const decodedId = decodeURIComponent(params.id)
|
||||
const decodedId = decodeVideoUrlPath(params.id)
|
||||
|
||||
const [data, related] = await fetchVideoData(decodedId)
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ import classNames from 'classnames';
|
|||
import Link from 'next/link'
|
||||
|
||||
import style from './Thumbnail.module.scss'
|
||||
import { encodeVideoUrlPath } from '@/utils/string';
|
||||
|
||||
interface Props {
|
||||
locale: string
|
||||
|
@ -22,7 +23,7 @@ const Thumbnail: React.FC<Props> = (props) => {
|
|||
|
||||
const { locale, videoUrl, imgUrl, text, show } = props
|
||||
|
||||
const encodedUri = encodeURIComponent(videoUrl)
|
||||
const encodedUri = encodeVideoUrlPath(videoUrl)
|
||||
|
||||
return (
|
||||
<div className={classNames(style.thumbnailContainer, { [style.show]: show } )}>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { GalleryData } from "@/meta/data";
|
||||
|
||||
export const findVideoUrlInsideTagStringByFunctionNameAndExtension = (
|
||||
tagBlock: string, functionName: string, extension: string): string|null => {
|
||||
tagBlock: string, functionName: string, extension: string): string | null => {
|
||||
const start = tagBlock.indexOf(`html5player.${functionName}('`) + `html5player.${functionName}('`.length;
|
||||
const end = tagBlock.toString().indexOf("'", start);
|
||||
|
||||
|
@ -14,7 +14,7 @@ export const findVideoUrlInsideTagStringByFunctionNameAndExtension = (
|
|||
return null
|
||||
}
|
||||
|
||||
export const findRelatedVideos = (tagBlock: string): GalleryData[]|null => {
|
||||
export const findRelatedVideos = (tagBlock: string): GalleryData[] | null => {
|
||||
if (!(tagBlock.includes('video_related=['))) {
|
||||
return null
|
||||
}
|
||||
|
@ -48,4 +48,12 @@ export const removeHttpS = (url: string): string => {
|
|||
return url.slice(8);
|
||||
}
|
||||
return url;
|
||||
};
|
||||
};
|
||||
|
||||
export const encodeVideoUrlPath = (input: string): string => {
|
||||
return input.replace(/^\/+/, '').replace(/\/+$/, '').replace(/\//g, "-");
|
||||
};
|
||||
|
||||
export const decodeVideoUrlPath = (input: string): string => {
|
||||
return `/${input.replace(/^\-+/, '').replace(/\-+$/, '').replace(/\-/g, "/")}`;
|
||||
};
|
Loading…
Reference in New Issue