parent
3d8ad4d668
commit
3575c0b166
|
@ -81,6 +81,7 @@ class PublicAlbumController extends Controller
|
|||
|
||||
// Share info
|
||||
$this->initialState->provideInitialState('share_title', $album['name']);
|
||||
$this->initialState->provideInitialState('share_type', 'album');
|
||||
|
||||
// Render main template
|
||||
$response = new PublicTemplateResponse(Application::APPNAME, 'main', PageController::getMainParams());
|
||||
|
|
|
@ -98,15 +98,18 @@ class PublicController extends AuthPublicShareController
|
|||
// Scripts
|
||||
\OCP\Util::addScript(Application::APPNAME, 'memories-main');
|
||||
|
||||
// Get share node
|
||||
$node = $share->getNode();
|
||||
|
||||
// Share info
|
||||
$this->initialState->provideInitialState('no_download', $share->getHideDownload());
|
||||
$this->initialState->provideInitialState('share_title', $node->getName());
|
||||
|
||||
// Share file id only if not a folder
|
||||
$node = $share->getNode();
|
||||
if ($node instanceof \OCP\Files\File) {
|
||||
$this->initialState->provideInitialState('single_item', $this->getSingleItemInitialState($node));
|
||||
$this->initialState->provideInitialState('share_type', 'file');
|
||||
} elseif ($node instanceof \OCP\Files\Folder) {
|
||||
$this->initialState->provideInitialState('share_title', $node->getName());
|
||||
$this->initialState->provideInitialState('share_type', 'folder');
|
||||
} else {
|
||||
throw new NotFoundException();
|
||||
}
|
||||
|
|
|
@ -84,17 +84,24 @@ class FsManager
|
|||
throw new \Exception('Share is not a folder');
|
||||
}
|
||||
|
||||
// Folder inside shared folder
|
||||
if ($path = $this->getRequestFolder()) {
|
||||
$sanitized = Util::sanitizePath($path);
|
||||
if (null === $sanitized) {
|
||||
throw new \Exception("Invalid parameter path: {$path}");
|
||||
}
|
||||
|
||||
// Get subnode from share
|
||||
try {
|
||||
$node = $share->get(Util::sanitizePath($path));
|
||||
$share = $share->get($sanitized);
|
||||
} catch (\OCP\Files\NotFoundException $e) {
|
||||
throw new \Exception("Folder not found: {$e->getMessage()}");
|
||||
}
|
||||
$root->addFolder($node);
|
||||
} else {
|
||||
$root->addFolder($share);
|
||||
}
|
||||
|
||||
// This internally checks if the node is a folder
|
||||
$root->addFolder($share);
|
||||
|
||||
return $root;
|
||||
}
|
||||
|
||||
|
@ -331,6 +338,9 @@ class FsManager
|
|||
return $share;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the share node from the request.
|
||||
*/
|
||||
public function getShareNode(): ?Node
|
||||
{
|
||||
$share = $this->getShareObject();
|
||||
|
|
|
@ -58,15 +58,15 @@ export default defineComponent({
|
|||
computed: {
|
||||
/** Open folder */
|
||||
target() {
|
||||
let currentPath: string[] | string = this.$route.params.path || [];
|
||||
if (typeof currentPath === 'string') {
|
||||
currentPath = currentPath.split('/');
|
||||
let path: string[] | string = this.$route.params.path || [];
|
||||
if (typeof path === 'string') {
|
||||
path = path.split('/');
|
||||
}
|
||||
|
||||
return {
|
||||
name: this.$route.name,
|
||||
params: {
|
||||
path: [...currentPath, this.data.name],
|
||||
path: [...path, this.data.name],
|
||||
},
|
||||
};
|
||||
},
|
||||
|
|
|
@ -15,9 +15,11 @@ import FolderDynamicTopMatter from './FolderDynamicTopMatter.vue';
|
|||
import PlacesDynamicTopMatterVue from './PlacesDynamicTopMatter.vue';
|
||||
import OnThisDay from './OnThisDay.vue';
|
||||
|
||||
import * as PublicShareHeader from './PublicShareHeader';
|
||||
import * as strings from '../../services/strings';
|
||||
|
||||
// Auto-hide top header on public shares if redundant
|
||||
import './PublicShareHeader';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'DynamicTopMatter',
|
||||
|
||||
|
@ -50,17 +52,18 @@ export default defineComponent({
|
|||
viewName(): string {
|
||||
// Show album name for album view
|
||||
if (this.routeIsAlbums) {
|
||||
return this.$route.params.name || '';
|
||||
return this.$route.params.name || String();
|
||||
}
|
||||
|
||||
// Show share name for public shares, except for folder share, because the name is already present in the breadcrumbs
|
||||
// Show share name for public shares, except for folder share,
|
||||
// because the name is already present in the breadcrumbs
|
||||
if (this.routeIsPublic && !this.routeIsFolderShare) {
|
||||
return PublicShareHeader.title;
|
||||
return this.initstate.shareTitle;
|
||||
}
|
||||
|
||||
// Only static top matter for these routes
|
||||
if (this.routeIsTags || this.routeIsPeople || this.routeIsPlaces) {
|
||||
return '';
|
||||
return String();
|
||||
}
|
||||
|
||||
return strings.viewName(this.$route.name!);
|
||||
|
|
|
@ -2,10 +2,15 @@
|
|||
<div class="top-matter">
|
||||
<NcBreadcrumbs>
|
||||
<NcBreadcrumb :title="rootFolderName" :to="{ name: $route.name }">
|
||||
<template v-if="routeIsPublic" #icon>
|
||||
<template #icon>
|
||||
<template v-if="routeIsPublic">
|
||||
<ShareIcon :size="20" />
|
||||
<span class="share-name">{{ rootFolderName }}</span>
|
||||
</template>
|
||||
<template v-else>
|
||||
<HomeIcon :size="20" />
|
||||
</template>
|
||||
</template>
|
||||
</NcBreadcrumb>
|
||||
<NcBreadcrumb
|
||||
v-for="folder in list"
|
||||
|
@ -48,8 +53,8 @@ import NcActions from '@nextcloud/vue/dist/Components/NcActions';
|
|||
import NcActionButton from '@nextcloud/vue/dist/Components/NcActionButton';
|
||||
|
||||
import * as utils from '../../services/utils';
|
||||
import * as PublicShareHeader from './PublicShareHeader';
|
||||
|
||||
import HomeIcon from 'vue-material-design-icons/Home.vue';
|
||||
import ShareIcon from 'vue-material-design-icons/ShareVariant.vue';
|
||||
import TimelineIcon from 'vue-material-design-icons/ImageMultiple.vue';
|
||||
import FoldersIcon from 'vue-material-design-icons/FolderMultiple.vue';
|
||||
|
@ -62,6 +67,7 @@ export default defineComponent({
|
|||
NcBreadcrumb,
|
||||
NcActions,
|
||||
NcActionButton,
|
||||
HomeIcon,
|
||||
ShareIcon,
|
||||
TimelineIcon,
|
||||
FoldersIcon,
|
||||
|
@ -93,7 +99,7 @@ export default defineComponent({
|
|||
},
|
||||
|
||||
rootFolderName(): string {
|
||||
return this.routeIsPublic ? PublicShareHeader.title : 'Home';
|
||||
return this.routeIsPublic ? this.initstate.shareTitle : this.t('memories', 'Home');
|
||||
},
|
||||
},
|
||||
|
||||
|
@ -120,7 +126,7 @@ export default defineComponent({
|
|||
min-width: 0;
|
||||
height: unset;
|
||||
.share-name {
|
||||
margin-left: 1em;
|
||||
margin-left: 0.75em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,13 @@
|
|||
import * as utils from '../../services/utils';
|
||||
|
||||
// Shown in dynamic top matter (Timeline::viewName)
|
||||
export const title = utils.initstate.shareTitle;
|
||||
const title = utils.initstate.shareTitle;
|
||||
|
||||
// Hide on album shares only
|
||||
const hide = utils.initstate.shareType === 'album';
|
||||
|
||||
// Set up hook to monitor recycler scroll to show/hide header
|
||||
if (title) {
|
||||
if (title && hide) {
|
||||
const header = document.querySelector('header#header .header-appname') as HTMLElement;
|
||||
let isHidden = false; // cache state to avoid unnecessary DOM updates
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@ export const constants = Object.freeze({
|
|||
export const initstate = Object.freeze({
|
||||
noDownload: loadState('memories', 'no_download', false) !== false,
|
||||
shareTitle: loadState('memories', 'share_title', '') as string,
|
||||
shareType: loadState('memories', 'share_type', null) as 'file' | 'folder' | 'album' | null,
|
||||
singleItem: loadState('memories', 'single_item', null) as IPhoto | null,
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue