Compare commits
No commits in common. "dae708c7651ac26d1c6b930fab8a277b30008179" and "f3d7c7abf27ad14f5dcf30d47af42596efd6e7b8" have entirely different histories.
dae708c765
...
f3d7c7abf2
17
src/App.css
17
src/App.css
@ -63,10 +63,6 @@ body {
|
|||||||
background-color: #0056b3;
|
background-color: #0056b3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.PlaceholderItem {
|
|
||||||
animation: loading 1.5s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.PlaceholderItem > button,
|
.PlaceholderItem > button,
|
||||||
.ParentDirectoryItem > button {
|
.ParentDirectoryItem > button {
|
||||||
background-color: #4D4F5D;
|
background-color: #4D4F5D;
|
||||||
@ -77,15 +73,6 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.PlaceholderItem > button {
|
.PlaceholderItem > button {
|
||||||
height: calc(18px + 10px * 2);
|
height: calc(16px + 10px * 2);
|
||||||
min-width: 4em;
|
width: 6em;
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes loading {
|
|
||||||
0%, 100% {
|
|
||||||
filter: brightness(80%);
|
|
||||||
}
|
|
||||||
50% {
|
|
||||||
filter: brightness(100%);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -68,9 +68,7 @@ function Contents(
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (item.is_dir) {
|
if (item.is_dir) {
|
||||||
itemProps.onClick = item.isPlaceholder
|
itemProps.onClick = () => {
|
||||||
? () => {}
|
|
||||||
: () => {
|
|
||||||
const subCategory = getFileName(itemProps.url);
|
const subCategory = getFileName(itemProps.url);
|
||||||
|
|
||||||
if (category !== '') category = `${category}/${subCategory}`;
|
if (category !== '') category = `${category}/${subCategory}`;
|
||||||
@ -139,14 +137,6 @@ function getFileName(string: string): string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getPlaceholderData(): galleryItemInfo[] {
|
function getPlaceholderData(): galleryItemInfo[] {
|
||||||
const backDir = (): galleryItemInfo => {
|
|
||||||
return {
|
|
||||||
is_dir: true,
|
|
||||||
url: '..',
|
|
||||||
thumbnail_url: '',
|
|
||||||
isPlaceholder: true,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
const placeholderDir = (): galleryItemInfo => {
|
const placeholderDir = (): galleryItemInfo => {
|
||||||
return {
|
return {
|
||||||
is_dir: true,
|
is_dir: true,
|
||||||
@ -165,7 +155,6 @@ function getPlaceholderData(): galleryItemInfo[] {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return [
|
return [
|
||||||
backDir(),
|
|
||||||
placeholderDir(),
|
placeholderDir(),
|
||||||
placeholderDir(),
|
placeholderDir(),
|
||||||
placeholderImg(),
|
placeholderImg(),
|
||||||
|
Loading…
Reference in New Issue
Block a user