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

feat: add shared by filter on 'Shared with me'-page #10029

Merged
merged 3 commits into from
Nov 22, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions changelog/unreleased/enhancement-shared-by-filter
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Enhancement: Shared by filter

The received shares on the "Shared with me"-page can now be filtered by the users that created the share.

https://github.com/owncloud/web/issues/10013
https://github.com/owncloud/web/pull/10029
53 changes: 45 additions & 8 deletions packages/web-app-files/src/views/shares/SharedWithMe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,40 @@
@toggle-filter="setAreHiddenFilesShown"
/>
<item-filter
v-if="shareTypes.length > 1"
kulmann marked this conversation as resolved.
Show resolved Hide resolved
:allow-multiple="true"
:filter-label="$gettext('Share Type')"
:filterable-attributes="['label']"
:items="shareTypes"
:option-filter-label="$gettext('Filter share types')"
:show-option-filter="true"
id-attribute="key"
class="share-type-filter oc-mx-s"
class="share-type-filter oc-ml-s"
display-name-attribute="label"
filter-name="shareType"
>
<template #item="{ item }">
<span class="oc-ml-s" v-text="item.label" />
</template>
</item-filter>
<item-filter
:allow-multiple="true"
:filter-label="$gettext('Shared By')"
:filterable-attributes="['displayName']"
:items="fileOwners"
:option-filter-label="$gettext('Filter shared by')"
:show-option-filter="true"
id-attribute="username"
class="shared-by-filter oc-ml-s"
display-name-attribute="displayName"
filter-name="sharedBy"
>
<template #image="{ item }">
<avatar-image :width="32" :userid="item.username" :user-name="item.displayName" />
</template>
<template #item="{ item }">
<span class="oc-ml-s" v-text="item.displayName" />
</template>
</item-filter>
</div>
<shared-with-me-section
id="files-shared-with-me-view"
Expand Down Expand Up @@ -130,14 +148,25 @@ export default defineComponent({
})

const selectedShareTypesQuery = useRouteQuery('q_shareType')
const selectedSharedByQuery = useRouteQuery('q_sharedBy')
const filteredItems = computed(() => {
let result = unref(currentItems)

const selectedShareTypes = queryItemAsString(unref(selectedShareTypesQuery))?.split('+')
if (!selectedShareTypes || selectedShareTypes.length === 0) {
return unref(currentItems)
if (selectedShareTypes?.length) {
result = result.filter(({ share }) => {
return selectedShareTypes.map((t) => ShareTypes[t].value).includes(share.shareType)
})
}

const selectedSharedBy = queryItemAsString(unref(selectedSharedByQuery))?.split('+')
if (selectedSharedBy?.length) {
result = result.filter(({ owner }) =>
owner.some(({ username }) => selectedSharedBy.includes(username))
)
}
return unref(currentItems).filter((item) => {
return selectedShareTypes.map((t) => ShareTypes[t].value).includes(item.share.shareType)
})

return result
})

const { sortBy, sortDir, items, handleSort } = useSort({
Expand Down Expand Up @@ -172,7 +201,14 @@ export default defineComponent({

const shareTypes = computed(() => {
const uniqueShareTypes = uniq(unref(storeItems).map((i) => i.share?.shareType))
return ShareTypes.getByValues(uniqueShareTypes)
return ShareTypes.getByValues(uniqueShareTypes).map(({ label, key }) => ({ label, key }))
})

const fileOwners = computed(() => {
const flatList = unref(storeItems)
.map((i) => i.owner)
.flat()
return [...new Map(flatList.map((item) => [item.username, item])).values()]
})

onMounted(() => {
Expand All @@ -197,6 +233,7 @@ export default defineComponent({
shareSectionTitle,
visibleShares,
shareTypes,
fileOwners,

handleSort,
sortBy,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,20 +86,42 @@ describe('SharedWithMe view', () => {
})
})
describe('share type', () => {
it('shows filter if more than one share types are present', () => {
it('shows all available share types as filter option', () => {
const shareType1 = ShareTypes.user
const shareType2 = ShareTypes.group
const { wrapper } = getMountedWrapper({
files: [
mock<Resource>({ share: { shareType: ShareTypes.user.value } }),
mock<Resource>({ share: { shareType: ShareTypes.group.value } })
mock<Resource>({ share: { shareType: shareType1.value } }),
mock<Resource>({ share: { shareType: shareType2.value } })
]
})
const filterItems = wrapper.findComponent<any>('.share-type-filter').props('items')
expect(wrapper.find('.share-type-filter').exists()).toBeTruthy()
expect(filterItems).toEqual([
{ label: shareType1.label, key: shareType1.key },
{ label: shareType2.label, key: shareType2.key }
])
})
it('does not show filter if only one share type is present', () => {
})
describe('shared by', () => {
it('shows all available collaborators as filter option', () => {
const collaborator1 = { username: 'user1', displayName: 'user1' }
const collaborator2 = { username: 'user2', displayName: 'user2' }
const { wrapper } = getMountedWrapper({
files: [mock<Resource>({ share: { shareType: ShareTypes.user.value } })]
files: [
mock<Resource>({
owner: [collaborator1],
share: { shareType: ShareTypes.user.value }
}),
mock<Resource>({
owner: [collaborator2],
share: { shareType: ShareTypes.user.value }
})
]
})
expect(wrapper.find('.share-type-filter').exists()).toBeFalsy()
const filterItems = wrapper.findComponent<any>('.shared-by-filter').props('items')
expect(wrapper.find('.shared-by-filter').exists()).toBeTruthy()
expect(filterItems).toEqual([collaborator1, collaborator2])
})
})
})
Expand All @@ -120,6 +142,8 @@ function getMountedWrapper({
jest.mocked(useSort).mockImplementation((options) => useSortMock({ items: ref(options.items) }))
// selected share types
jest.mocked(queryItemAsString).mockImplementationOnce(() => undefined)
// selected shared by
jest.mocked(queryItemAsString).mockImplementationOnce(() => undefined)
// openWithDefaultAppQuery
jest.mocked(queryItemAsString).mockImplementationOnce(() => openWithDefaultAppQuery)

Expand Down