Compare commits
3 Commits
a0b85dfbca
...
098777bb02
Author | SHA1 | Date | |
---|---|---|---|
098777bb02 | |||
2c31cf8820 | |||
9d3d3530ea |
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-photo-viewer",
|
"name": "react-photo-viewer",
|
||||||
|
"homepage": "https://dundun.ddns.net/photos",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
work correctly both with client-side routing and a non-root public URL.
|
work correctly both with client-side routing and a non-root public URL.
|
||||||
Learn how to configure a non-root public URL by running `npm run build`.
|
Learn how to configure a non-root public URL by running `npm run build`.
|
||||||
-->
|
-->
|
||||||
<title>React App</title>
|
<title>Photos</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||||
|
58
src/App.tsx
58
src/App.tsx
@ -60,7 +60,9 @@ function getContents(
|
|||||||
return getDir == item.is_dir;
|
return getDir == item.is_dir;
|
||||||
})
|
})
|
||||||
.map((item: galleryItemInfo, index: number) => {
|
.map((item: galleryItemInfo, index: number) => {
|
||||||
const url = item.thumbnail_url === null ? item.url : item.thumbnail_url;
|
const url = item.url;
|
||||||
|
const thumbnail_url =
|
||||||
|
item.thumbnail_url === null ? item.url : item.thumbnail_url;
|
||||||
let onClick = () => {};
|
let onClick = () => {};
|
||||||
if (item.is_dir) {
|
if (item.is_dir) {
|
||||||
onClick = () => {
|
onClick = () => {
|
||||||
@ -73,27 +75,49 @@ function getContents(
|
|||||||
|
|
||||||
setCategory(category);
|
setCategory(category);
|
||||||
};
|
};
|
||||||
return <DirectoryItem key={index} url={url} onClick={onClick} />;
|
return (
|
||||||
|
<DirectoryItem
|
||||||
|
key={index}
|
||||||
|
thumbnail_url={thumbnail_url}
|
||||||
|
url={url}
|
||||||
|
onClick={onClick}
|
||||||
|
/>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
if (url.endsWith('.mp4')) {
|
if (url.endsWith('.mp4')) {
|
||||||
return <VideoItem key={index} url={url} onClick={onClick} />;
|
return (
|
||||||
|
<VideoItem
|
||||||
|
key={index}
|
||||||
|
thumbnail_url={thumbnail_url}
|
||||||
|
url={url}
|
||||||
|
onClick={onClick}
|
||||||
|
/>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return <ImageItem key={index} url={url} onClick={onClick} />;
|
return (
|
||||||
|
<ImageItem
|
||||||
|
key={index}
|
||||||
|
thumbnail_url={thumbnail_url}
|
||||||
|
url={url}
|
||||||
|
onClick={onClick}
|
||||||
|
/>
|
||||||
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
interface galleryItem {
|
interface galleryItem {
|
||||||
url: string;
|
url: string;
|
||||||
|
thumbnail_url: string;
|
||||||
onClick: () => void;
|
onClick: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
function ImageItem({ url }: galleryItem) {
|
function ImageItem({ thumbnail_url, url }: galleryItem) {
|
||||||
return (
|
return (
|
||||||
<div className="GalleryItem">
|
<div className="GalleryItem">
|
||||||
<a href={url} target="_blank">
|
<a href={url} target="_blank">
|
||||||
{getFileName(url)}
|
{getFileName(url)}
|
||||||
</a>
|
</a>
|
||||||
<img src={url} loading="lazy" />
|
<img src={thumbnail_url} loading="lazy" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -130,15 +154,19 @@ function getFileName(string: string): string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function post(category: string, callback: (text: string) => void) {
|
function post(category: string, callback: (text: string) => void) {
|
||||||
fetch('http://localhost/photo-viewer-backend/php/get.php', {
|
fetch(
|
||||||
method: 'POST',
|
//'http://localhost/photo-viewer-backend/php/get.php',
|
||||||
headers: {
|
'https://dundun.ddns.net/photo-viewer/photo-viewer-backend/php/get.php',
|
||||||
'Content-Type': 'application/json',
|
{
|
||||||
},
|
method: 'POST',
|
||||||
body: JSON.stringify({
|
headers: {
|
||||||
category: category,
|
'Content-Type': 'application/json',
|
||||||
}),
|
},
|
||||||
})
|
body: JSON.stringify({
|
||||||
|
category: category,
|
||||||
|
}),
|
||||||
|
}
|
||||||
|
)
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
throw new Error('Network response was not ok');
|
throw new Error('Network response was not ok');
|
||||||
|
Loading…
Reference in New Issue
Block a user