Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Webdav details followup #10062

Merged
merged 6 commits into from
Nov 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Enhancement: Show webdav information in details view

We've added WebDav path and WebDav url information to the details view,
this might be usefully when the user wants to add an external WebDav client.

By default this view option is disabled but can be enabled via account->preferences view.

https://github.com/owncloud/web/pull/10062
https://github.com/owncloud/web/issues/9714
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<th scope="col" class="oc-pr-s oc-font-semibold" v-text="$gettext('Size')" />
<td v-text="resourceSize" />
</tr>
<web-dav-details />
<web-dav-details v-if="showWebDavDetails" />
<tr v-if="showVersions" data-testid="versionsInfo">
<th scope="col" class="oc-pr-s oc-font-semibold" v-text="$gettext('Versions')" />
<td>
Expand Down Expand Up @@ -217,6 +217,9 @@ export default defineComponent({
matchingSpace: unref(space) || getMatchingSpace(unref(resource))
})
})
const showWebDavDetails = computed(() => {
return store.getters['Files/areWebDavDetailsShown']
})
const formatDateRelative = (date) => {
return formatRelativeDateFromJSDate(new Date(date), language.current)
}
Expand Down Expand Up @@ -248,7 +251,8 @@ export default defineComponent({
sharedAncestor,
sharedAncestorRoute,
formatDateRelative,
contextualHelper
contextualHelper,
showWebDavDetails
}
},
computed: {
Expand Down
9 changes: 9 additions & 0 deletions packages/web-app-files/src/store/getters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,14 @@ export default {
},
versions: (state) => {
return state.versions
},
areHiddenFilesShown: (state) => {
return state.areHiddenFilesShown
},
areFileExtensionsShown: (state) => {
return state.areFileExtensionsShown
},
areWebDavDetailsShown: (state) => {
return state.areWebDavDetailsShown
}
}
6 changes: 6 additions & 0 deletions packages/web-app-files/src/store/mutations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,12 @@ export default {
state.areFileExtensionsShown = value

window.localStorage.setItem('oc_fileExtensionsShown', value)
},

SET_FILE_WEB_DAV_DETAILS_VISIBILITY(state, value) {
state.areWebDavDetailsShown = value

window.localStorage.setItem('oc_webDavDetailsShown', value)
}
}

Expand Down
3 changes: 2 additions & 1 deletion packages/web-app-files/src/store/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ export default {
* View settings
*/
areHiddenFilesShown: true,
areFileExtensionsShown: true
areFileExtensionsShown: true,
areWebDavDetailsShown: false
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,32 +54,7 @@ exports[`ResourceDetails component renders resource details correctly 1`] = `
<th class="oc-pr-s oc-font-semibold" scope="col">Size</th>
<td>24 kB</td>
</tr>
<tr>
<th class="oc-pr-s oc-font-semibold" scope="col">WebDav path</th>
<td class="oc-flex oc-flex-middle">
<div class="oc-text-truncate"></div>
<button aria-label="Copy WebDAV path to clipboard" class="oc-button oc-rounded oc-button-s oc-button-justify-content-center oc-button-gap-m oc-button-passive oc-button-passive-raw oc-ml-s" type="button">
<!--v-if-->
<!-- @slot Content of the button -->
<span class="oc-icon oc-icon-m oc-icon-passive">
<!---->
</span>
</button>
</td>
</tr>
<tr>
<th class="oc-pr-s oc-font-semibold" scope="col">WebDav url</th>
<td class="oc-flex oc-flex-middle">
<div class="oc-text-truncate">/</div>
<button aria-label="Copy WebDAV url to clipboard" class="oc-button oc-rounded oc-button-s oc-button-justify-content-center oc-button-gap-m oc-button-passive oc-button-passive-raw oc-ml-s" type="button">
<!--v-if-->
<!-- @slot Content of the button -->
<span class="oc-icon oc-icon-m oc-icon-passive">
<!---->
</span>
</button>
</td>
</tr>
<!--v-if-->
<!--v-if-->

<!--v-if-->
Expand Down
23 changes: 1 addition & 22 deletions packages/web-pkg/src/components/AppBar/AppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<script lang="ts">
import last from 'lodash-es/last'
import { computed, defineComponent, inject, PropType, ref, Ref, unref, useSlots } from 'vue'
import { mapGetters, mapState, mapMutations } from 'vuex'
import { mapGetters } from 'vuex'
import { Resource } from '@ownclouders/web-client'
import {
isPersonalSpaceResource,
Expand Down Expand Up @@ -296,7 +296,6 @@ export default defineComponent({
},
computed: {
...mapGetters('Files', ['files', 'selectedFiles']),
...mapState('Files', ['areHiddenFilesShown', 'areFileExtensionsShown']),

showContextActions() {
return last<BreadcrumbItem>(this.breadcrumbs).allowContextActions
Expand Down Expand Up @@ -331,27 +330,7 @@ export default defineComponent({
window.removeEventListener('resize', this.onResize)
},

created() {
// Storage returns a string so we need to convert it into a boolean
const areHiddenFilesShown = window.localStorage.getItem('oc_hiddenFilesShown') || 'false'
const areHiddenFilesShownBoolean = areHiddenFilesShown === 'true'

if (areHiddenFilesShownBoolean !== this.areHiddenFilesShown) {
this.SET_HIDDEN_FILES_VISIBILITY(areHiddenFilesShownBoolean)
}

// Storage returns a string so we need to convert it into a boolean
const areFileExtensionsShown = window.localStorage.getItem('oc_fileExtensionsShown') || 'true'
const areFileExtensionsShownBoolean = areFileExtensionsShown === 'true'

if (areFileExtensionsShownBoolean !== this.areFileExtensionsShown) {
this.SET_FILE_EXTENSIONS_VISIBILITY(areFileExtensionsShownBoolean)
}
},

methods: {
...mapMutations('Files', ['SET_HIDDEN_FILES_VISIBILITY', 'SET_FILE_EXTENSIONS_VISIBILITY']),

onResize() {
const totalContentWidth =
document.getElementById('web-content-main')?.getBoundingClientRect().width || 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<space-quota :space-quota="resource.spaceQuota" />
</td>
</tr>
<web-dav-details />
<web-dav-details v-if="showWebDavDetails" />
<portal-target
name="app.files.sidebar.space.details.table"
:slot-props="{ space: resource, resource }"
Expand Down Expand Up @@ -135,11 +135,16 @@ export default defineComponent({
return store.getters['Files/outgoingLinks'].length
})

const showWebDavDetails = computed(() => {
return store.getters['Files/areWebDavDetailsShown']
})

return {
loadImageTask,
spaceImage,
resource,
linkShareCount
linkShareCount,
showWebDavDetails
}
},
computed: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ exports[`Details SideBar Panel displays the details side panel 1`] = `
<p>This space has 1 member.</p>
<oc-button-stub appearance="raw" arialabel="Open share panel" disabled="false" gapsize="medium" justifycontent="center" showspinner="false" size="small" submit="button" type="button" variation="passive"></oc-button-stub>
</div>
<web-dav-details-stub></web-dav-details-stub>
<portal-target multiple="true" name="app.files.sidebar.space.details.table" slot-props="[object Object]"></portal-target>
<table aria-label="Overview of the information about the selected space" class="details-table oc-width-1-1">
<colgroup>
Expand All @@ -36,7 +35,7 @@ exports[`Details SideBar Panel displays the details side panel 1`] = `
<space-quota-stub spacequota="[object Object]"></space-quota-stub>
</td>
</tr>

<!--v-if-->

</tbody>
</table>
Expand Down
26 changes: 26 additions & 0 deletions packages/web-runtime/src/container/bootstrap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -659,3 +659,29 @@ export const registerSSEEventListeners = ({
onSSEProcessingFinishedEvent({ store, msg, clientService, resourceQueue })
)
}

export const setViewOptions = ({ store }: { store: Store<unknown> }): void => {
/**
* Storage returns a string so we need to convert it into a boolean
*/
const areHiddenFilesShown = window.localStorage.getItem('oc_hiddenFilesShown') || 'false'
const areHiddenFilesShownBoolean = areHiddenFilesShown === 'true'

if (areHiddenFilesShownBoolean !== store.getters['Files/areHiddenFilesShown']) {
store.commit('Files/SET_HIDDEN_FILES_VISIBILITY', areHiddenFilesShownBoolean)
}

const areFileExtensionsShown = window.localStorage.getItem('oc_fileExtensionsShown') || 'true'
const areFileExtensionsShownBoolean = areFileExtensionsShown === 'true'

if (areFileExtensionsShownBoolean !== store.getters['Files/areFileExtensionsShownBoolean']) {
store.commit('Files/SET_FILE_EXTENSIONS_VISIBILITY', areFileExtensionsShownBoolean)
}

const areWebDavDetailsShown = window.localStorage.getItem('oc_webDavDetailsShown') || 'false'
const areWebDavDetailsShownBoolean = areWebDavDetailsShown === 'true'

if (areWebDavDetailsShownBoolean !== store.getters['Files/areWebDavDetailsShown']) {
store.commit('Files/SET_FILE_WEB_DAV_DETAILS_VISIBILITY', areWebDavDetailsShownBoolean)
}
}
5 changes: 4 additions & 1 deletion packages/web-runtime/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ import {
announcePreviewService,
announcePasswordPolicyService,
announceAdditionalTranslations,
registerSSEEventListeners
registerSSEEventListeners,
setViewOptions
} from './container/bootstrap'
import { applicationStore } from './container/store'
import {
Expand Down Expand Up @@ -133,6 +134,8 @@ export const bootstrapApp = async (configurationPath: string): Promise<void> =>

app.mount('#owncloud')

setViewOptions({ store })

const applications = Array.from(applicationStore.values())
applications.forEach((application) => application.mounted(app))

Expand Down
Loading