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

[full-ci] Add details accordion in sharing sidebar #5284

Merged
merged 18 commits into from
Jul 7, 2021

Conversation

pascalwengerter
Copy link
Contributor

@pascalwengerter pascalwengerter commented Jun 16, 2021

Description

Adds details panel to sharing sidebar, incl. preview img (if applicable)

Related Issue

Types of changes

  • New feature (non-breaking change which adds functionality)

Checklist:

  • Code changes
  • Unit tests added
  • Acceptance tests added/modified

Open tasks:

  • Rebase after [full-ci] Various performance and structure optimizations #5194 got merged
  • UX Review with @tbsbdr
  • Finalize new code
  • Cleanup left sidebar code & component structure
  • Caching-issue when directly accessing the details of a uploaded file (clash of previews since the table thumbnail is called preview, too) => Fixed by renaming thumbnails correctly
  • Check for parent shares and display information accordingly
  • Display a "(me)" if owner === currentUser
  • Set the dimensions of the rendered preview to 1200/1200
  • Guest and remote shares for oc10 (Displayed as people shares)
  • which enabled() {} condition is suitable for the details-item => Don't display on Trashbin routes, which is the default for non-action sidebar accordion items
  • Shared files displayOwnerName is empty in oCIS
  • Add tests

Open issue

  • Links don't load correctly initially, need to visit "Links" sidebar panel to work (perhaps a store issue)

@pascalwengerter pascalwengerter changed the title Add draft for details in sharing sidebar [WIP] Add draft for details in sharing sidebar Jun 16, 2021
@pascalwengerter pascalwengerter force-pushed the 16062021_details-in-sharing-sidebar branch 2 times, most recently from de1fccd to fe0cc16 Compare June 16, 2021 19:48
@ownclouders
Copy link
Contributor

💥 Acceptance tests OCISSharingInternalUsers2 failed. The build is cancelled...

@pascalwengerter pascalwengerter force-pushed the 16062021_details-in-sharing-sidebar branch from fe0cc16 to 73a7a82 Compare June 17, 2021 19:39
@ownclouders
Copy link
Contributor

💥 Acceptance tests OCISSharingInternalUsers2 failed. The build is cancelled...

@pascalwengerter pascalwengerter changed the title [WIP] Add draft for details in sharing sidebar Add draft for details in sharing sidebar Jun 21, 2021
@pascalwengerter pascalwengerter changed the title Add draft for details in sharing sidebar Add details accordion in sharing sidebar Jun 21, 2021
@pascalwengerter pascalwengerter force-pushed the 16062021_details-in-sharing-sidebar branch from 73a7a82 to bc71255 Compare June 24, 2021 13:09
@pascalwengerter
Copy link
Contributor Author

pascalwengerter commented Jun 24, 2021

Removed original content in this comment and put it in the PR description ☝🏽

@pascalwengerter pascalwengerter force-pushed the 16062021_details-in-sharing-sidebar branch 2 times, most recently from 394eb09 to 6cfa6b8 Compare July 5, 2021 12:52
Copy link
Contributor

@kulmann kulmann left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some nitpicks incoming ;-) Also, in the shares section we're showing additionalInfo whenever present. Would be good to show that here in the details as well. There are ownCloud instances out there where the display name is not sufficient for being able to uniquely identify a user. In that case the server can be configured to return additionalInfo as well (which can be the username or the email address fwiw).

appearance="raw"
class="oc-mr-xs"
:aria-label="sharesLabel"
@click="expandPeoplesAccordion()"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can spare 2 characters here, by just passing the callback ref.

Suggested change
@click="expandPeoplesAccordion()"
@click="expandPeoplesAccordion"

appearance="raw"
class="oc-mr-xs"
:aria-label="linksLabel"
@click="expandLinksAccordion()"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can spare 2 characters here, by just passing the callback ref.

Suggested change
@click="expandLinksAccordion()"
@click="expandLinksAccordion"

v-oc-tooltip="seeVersionsLabel"
appearance="raw"
:aria-label="seeVersionsLabel"
@click="expandVersionsAccordion()"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can spare 2 characters here, by just passing the callback ref.

Suggested change
@click="expandVersionsAccordion()"
@click="expandVersionsAccordion"

v-oc-tooltip="seeVersionsLabel"
appearance="raw"
:aria-label="seeVersionsLabel"
@click="expandVersionsAccordion()"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can spare 2 characters here, by just passing the callback ref.

Suggested change
@click="expandVersionsAccordion()"
@click="expandVersionsAccordion"

<oc-img :src="highlightedFile.preview" alt="" />
</div>
<div
v-if="hasAnyShares && !isPublicPage"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm a big fan of not having too much logic in the template. Would be nice to have an additional showSharingInfo computed property which has an early return if (isPublicPage) { return false } and then checks for shares.

},
capitalizedModifiedDate() {
const lastModifiedDate = this.formDateFromNow(this.highlightedFile.mdate, 'Http')
return lastModifiedDate.charAt(0).toUpperCase() + lastModifiedDate.slice(1)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can use lodash-es's upperFirst:

upperFirst(lastModifiedDate)

},
hasPeopleShares() {
return (
this.highlightedFile.shareTypes.includes(0) ||
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use the shareTypes constants.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, checking for shareType 0 is not sufficient, is it? The people shares accordion shows other share types as well.

},
hasLinkShares() {
return (
this.highlightedFile.shareTypes.includes(3) ||
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use the shareTypes constants.

)
},
isCurrentUser() {
return this.highlightedFile.ownerDisplayName === this.user.displayname
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don't check the display name identifying the current user.

)
},
detailsTableLabel() {
return this.$gettext('Overview on the information about the selected file')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return this.$gettext('Overview on the information about the selected file')
return this.$gettext('Overview of the information about the selected file')

@ownclouders
Copy link
Contributor

Results for oCISSharingPublicExpireAndRoles https://drone.owncloud.com/owncloud/web/17080/59/1
💥 The acceptance tests pipeline failed. The build has been cancelled.

@pascalwengerter pascalwengerter changed the title Add details accordion in sharing sidebar [full-ci] Add details accordion in sharing sidebar Jul 5, 2021
@pascalwengerter pascalwengerter force-pushed the 16062021_details-in-sharing-sidebar branch 2 times, most recently from cf76dc2 to 9706e72 Compare July 5, 2021 21:45
@ownclouders
Copy link
Contributor

Results for oCISSharingBasic https://drone.owncloud.com/owncloud/web/17084/47/1
The following scenarios passed on retry:

  • webUIRestrictSharing/restrictSharing.feature:49

@ownclouders
Copy link
Contributor

Results for oC10SharingInternalUsersRoot2 https://drone.owncloud.com/owncloud/web/17084/28/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingInternalUsersToRootPreviews-shareWithUsers-feature-54.png

webUISharingInternalUsersToRootPreviews-shareWithUsers-feature-54.png

webUISharingInternalUsersToRootShareWithPage-shareWithUsers-feature-79.png

webUISharingInternalUsersToRootShareWithPage-shareWithUsers-feature-79.png

@ownclouders
Copy link
Contributor

Results for oC10SharingPublicExpireAndRoles https://drone.owncloud.com/owncloud/web/17084/33/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingPublicDifferentRoles-shareByPublicLinkDifferentRoles-feature-114.png

webUISharingPublicDifferentRoles-shareByPublicLinkDifferentRoles-feature-114.png

webUISharingPublicDifferentRoles-shareByPublicLinkDifferentRoles-feature-248.png

webUISharingPublicDifferentRoles-shareByPublicLinkDifferentRoles-feature-248.png

webUISharingPublicDifferentRoles-shareByPublicLinkDifferentRoles-feature-93.png

webUISharingPublicDifferentRoles-shareByPublicLinkDifferentRoles-feature-93.png

@ownclouders
Copy link
Contributor

Results for oC10SharingInternalGroups https://drone.owncloud.com/owncloud/web/17084/20/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingInternalGroups-shareWithGroups-feature-100.png

webUISharingInternalGroups-shareWithGroups-feature-100.png

webUISharingInternalGroupsEdgeCases-shareWithGroupsEdgeCases-feature-41.png

webUISharingInternalGroupsEdgeCases-shareWithGroupsEdgeCases-feature-41.png

webUISharingInternalGroupsEdgeCases-shareWithGroupsEdgeCases-feature-42.png

webUISharingInternalGroupsEdgeCases-shareWithGroupsEdgeCases-feature-42.png

@ownclouders
Copy link
Contributor

Results for oC10SharingPublicBasic https://drone.owncloud.com/owncloud/web/17084/31/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingPublicBasic-publicLinkEdit-feature-160.png

webUISharingPublicBasic-publicLinkEdit-feature-160.png

webUISharingPublicBasic-publicLinkPublicActions-feature-12.png

webUISharingPublicBasic-publicLinkPublicActions-feature-12.png

@ownclouders
Copy link
Contributor

Results for oC10SharingInternalGroupsToRoot https://drone.owncloud.com/owncloud/web/17084/21/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingInternalGroupsToRoot-shareWithGroups-feature-128.png

webUISharingInternalGroupsToRoot-shareWithGroups-feature-128.png

webUISharingInternalGroupsToRoot-shareWithGroups-feature-74.png

webUISharingInternalGroupsToRoot-shareWithGroups-feature-74.png

webUISharingInternalGroupsToRoot-shareWithGroups-feature-95.png

webUISharingInternalGroupsToRoot-shareWithGroups-feature-95.png

webUISharingInternalGroupsToRootEdgeCases-shareWithGroupsEdgeCases-feature-36.png

webUISharingInternalGroupsToRootEdgeCases-shareWithGroupsEdgeCases-feature-36.png

webUISharingInternalGroupsToRootEdgeCases-shareWithGroupsEdgeCases-feature-37.png

webUISharingInternalGroupsToRootEdgeCases-shareWithGroupsEdgeCases-feature-37.png

@ownclouders
Copy link
Contributor

Results for oC10SharingInternalUsersRoot1 https://drone.owncloud.com/owncloud/web/17084/27/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingInternalUsersToRoot-shareWithUsers-feature-256.png

webUISharingInternalUsersToRoot-shareWithUsers-feature-256.png

webUISharingInternalUsersToRoot-shareWithUsers-feature-271.png

webUISharingInternalUsersToRoot-shareWithUsers-feature-271.png

webUISharingInternalUsersToRoot-shareWithUsers-feature-53.png

webUISharingInternalUsersToRoot-shareWithUsers-feature-53.png

webUISharingInternalUsersToRoot-shareWithUsers-feature-70.png

webUISharingInternalUsersToRoot-shareWithUsers-feature-70.png

webUISharingInternalUsersToRoot-shareWithUsers-feature-99.png

webUISharingInternalUsersToRoot-shareWithUsers-feature-99.png

@ownclouders
Copy link
Contributor

Results for oC10SharingAccept https://drone.owncloud.com/owncloud/web/17084/9/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingAcceptSharesToRoot-acceptShares-feature-110.png

webUISharingAcceptSharesToRoot-acceptShares-feature-110.png

webUISharingAcceptSharesToRoot-acceptShares-feature-131.png

webUISharingAcceptSharesToRoot-acceptShares-feature-131.png

webUISharingAcceptSharesToRoot-acceptShares-feature-143.png

webUISharingAcceptSharesToRoot-acceptShares-feature-143.png

webUISharingAcceptSharesToRoot-acceptShares-feature-158.png

webUISharingAcceptSharesToRoot-acceptShares-feature-158.png

webUISharingAcceptSharesToRoot-acceptShares-feature-31.png

webUISharingAcceptSharesToRoot-acceptShares-feature-31.png

webUISharingAcceptSharesToRoot-acceptShares-feature-315.png

webUISharingAcceptSharesToRoot-acceptShares-feature-315.png

webUISharingAcceptSharesToRoot-acceptShares-feature-357.png

webUISharingAcceptSharesToRoot-acceptShares-feature-357.png

webUISharingAcceptSharesToRoot-acceptShares-feature-50.png

webUISharingAcceptSharesToRoot-acceptShares-feature-50.png

webUISharingAcceptSharesToRoot-acceptShares-feature-90.png

webUISharingAcceptSharesToRoot-acceptShares-feature-90.png

@ownclouders
Copy link
Contributor

Results for oC10Files2 https://drone.owncloud.com/owncloud/web/17084/11/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUIFilesDetails-fileDetails-feature-116.png

webUIFilesDetails-fileDetails-feature-116.png

webUIFilesDetails-fileDetails-feature-14.png

webUIFilesDetails-fileDetails-feature-14.png

webUIFilesDetails-fileDetails-feature-25.png

webUIFilesDetails-fileDetails-feature-25.png

webUIFilesDetails-fileDetails-feature-38.png

webUIFilesDetails-fileDetails-feature-38.png

webUIFilesDetails-fileDetails-feature-51.png

webUIFilesDetails-fileDetails-feature-51.png

webUIFilesDetails-fileDetails-feature-66.png

webUIFilesDetails-fileDetails-feature-66.png

webUIFilesDetails-fileDetails-feature-82.png

webUIFilesDetails-fileDetails-feature-82.png

webUIFilesDetails-fileDetails-feature-99.png

webUIFilesDetails-fileDetails-feature-99.png

webUIFilesList-fileList-feature-28.png

webUIFilesList-fileList-feature-28.png

webUIFilesList-fileList-feature-33.png

webUIFilesList-fileList-feature-33.png

webUIFilesSearch-search-feature-122.png

webUIFilesSearch-search-feature-122.png

webUIFilesSearch-search-feature-175.png

webUIFilesSearch-search-feature-175.png

@ownclouders
Copy link
Contributor

Results for oC10Trashbin https://drone.owncloud.com/owncloud/web/17084/34/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUITrashbinDelete-trashbinDelete-feature-112.png

webUITrashbinDelete-trashbinDelete-feature-112.png

webUITrashbinDelete-trashbinDelete-feature-41.png

webUITrashbinDelete-trashbinDelete-feature-41.png

webUITrashbinFilesFolders-trashbinFilesFolders-feature-23.png

webUITrashbinFilesFolders-trashbinFilesFolders-feature-23.png

webUITrashbinFilesFolders-trashbinFilesFolders-feature-38.png

webUITrashbinFilesFolders-trashbinFilesFolders-feature-38.png

webUITrashbinFilesFolders-trashbinFilesFolders-feature-82.png

webUITrashbinFilesFolders-trashbinFilesFolders-feature-82.png

webUITrashbinFilesFolders-trashbinFilesFolders-feature-97.png

webUITrashbinFilesFolders-trashbinFilesFolders-feature-97.png

webUITrashbinRestore-trashbinRestore-feature-138.png

webUITrashbinRestore-trashbinRestore-feature-138.png

webUITrashbinRestore-trashbinRestore-feature-14.png

webUITrashbinRestore-trashbinRestore-feature-14.png

webUITrashbinRestore-trashbinRestore-feature-181.png

webUITrashbinRestore-trashbinRestore-feature-181.png

webUITrashbinRestore-trashbinRestore-feature-222.png

webUITrashbinRestore-trashbinRestore-feature-222.png

webUITrashbinRestore-trashbinRestore-feature-241.png

webUITrashbinRestore-trashbinRestore-feature-241.png

webUITrashbinRestore-trashbinRestore-feature-260.png

webUITrashbinRestore-trashbinRestore-feature-260.png

webUITrashbinRestore-trashbinRestore-feature-30.png

webUITrashbinRestore-trashbinRestore-feature-30.png

@ownclouders
Copy link
Contributor

Results for oC10IntegrationApp2 https://drone.owncloud.com/owncloud/web/17084/63/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUIMoveFilesFolders-moveFiles-feature-20.png

webUIMoveFilesFolders-moveFiles-feature-20.png

webUIMoveFilesFolders-moveFolders-feature-20.png

webUIMoveFilesFolders-moveFolders-feature-20.png

webUITrashbinFilesFolders-trashbinFilesFolders-feature-23.png

webUITrashbinFilesFolders-trashbinFilesFolders-feature-23.png

webUITrashbinRestore-trashbinRestore-feature-14.png

webUITrashbinRestore-trashbinRestore-feature-14.png

@ownclouders
Copy link
Contributor

Results for oC10SharingInternalUsers https://drone.owncloud.com/owncloud/web/17084/23/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingInternalUsers-shareWithUsers-feature-108.png

webUISharingInternalUsers-shareWithUsers-feature-108.png

webUISharingInternalUsers-shareWithUsers-feature-317.png

webUISharingInternalUsers-shareWithUsers-feature-317.png

webUISharingInternalUsers-shareWithUsers-feature-337.png

webUISharingInternalUsers-shareWithUsers-feature-337.png

webUISharingInternalUsers-shareWithUsers-feature-78.png

webUISharingInternalUsers-shareWithUsers-feature-78.png

webUISharingInternalUsersShareWithPage-shareWithUsers-feature-92.png

webUISharingInternalUsersShareWithPage-shareWithUsers-feature-92.png

@ownclouders
Copy link
Contributor

Results for oC10CreateDelete https://drone.owncloud.com/owncloud/web/17084/7/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUICreateFilesFolders-createFile-feature-19.png

webUICreateFilesFolders-createFile-feature-19.png

webUICreateFilesFolders-createFolders-feature-27.png

webUICreateFilesFolders-createFolders-feature-27.png

webUICreateFilesFolders-createFolders-feature-33.png

webUICreateFilesFolders-createFolders-feature-33.png

webUICreateFilesFolders-createFolders-feature-40.png

webUICreateFilesFolders-createFolders-feature-40.png

webUICreateFilesFolders-createFolders-feature-45.png

webUICreateFilesFolders-createFolders-feature-45.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-111.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-111.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-12.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-12.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-122.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-122.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-131.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-131.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-159.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-159.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-180.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-180.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-235.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-235.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-249.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-249.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-295.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-295.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-308.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-308.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-53.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-53.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-54.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-54.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-55.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-55.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-56.png

webUIDeleteFilesFolders-deleteFilesFolders-feature-56.png

@ownclouders
Copy link
Contributor

Results for oC10IntegrationApp1 https://drone.owncloud.com/owncloud/web/17129/62/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUIPrivateLinks-accessingPrivateLinks-feature-17.png

webUIPrivateLinks-accessingPrivateLinks-feature-17.png

webUIPrivateLinks-accessingPrivateLinks-feature-9.png

webUIPrivateLinks-accessingPrivateLinks-feature-9.png

@ownclouders
Copy link
Contributor

Results for oC10SharingPublicBasic https://drone.owncloud.com/owncloud/web/17129/31/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingPublicBasic-publicLinkEdit-feature-145.png

webUISharingPublicBasic-publicLinkEdit-feature-145.png

@ownclouders
Copy link
Contributor

Results for oC10Files1 https://drone.owncloud.com/owncloud/web/17129/10/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUIMarkdownEditor-markdownFile-feature-62.png

webUIMarkdownEditor-markdownFile-feature-62.png

@ownclouders
Copy link
Contributor

Results for oC10SharingInternalUsers https://drone.owncloud.com/owncloud/web/17129/23/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingInternalUsers-shareWithUsers-feature-126.png

webUISharingInternalUsers-shareWithUsers-feature-126.png

@ownclouders
Copy link
Contributor

Results for oC10Files2 https://drone.owncloud.com/owncloud/web/17129/11/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUIFilesDetails-fileDetails-feature-116.png

webUIFilesDetails-fileDetails-feature-116.png

webUIFilesDetails-fileDetails-feature-14.png

webUIFilesDetails-fileDetails-feature-14.png

webUIFilesDetails-fileDetails-feature-25.png

webUIFilesDetails-fileDetails-feature-25.png

webUIFilesDetails-fileDetails-feature-38.png

webUIFilesDetails-fileDetails-feature-38.png

webUIFilesDetails-fileDetails-feature-51.png

webUIFilesDetails-fileDetails-feature-51.png

webUIFilesDetails-fileDetails-feature-66.png

webUIFilesDetails-fileDetails-feature-66.png

webUIFilesDetails-fileDetails-feature-82.png

webUIFilesDetails-fileDetails-feature-82.png

webUIFilesDetails-fileDetails-feature-99.png

webUIFilesDetails-fileDetails-feature-99.png

@ownclouders
Copy link
Contributor

Results for oCISSharingBasic https://drone.owncloud.com/owncloud/web/17131/47/1
The following scenarios passed on retry:

  • webUIRestrictSharing/restrictSharing.feature:49

@ownclouders
Copy link
Contributor

Results for oC10SharingPublicExpireAndRoles https://drone.owncloud.com/owncloud/web/17131/33/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingPublicDifferentRoles-shareByPublicLinkDifferentRoles-feature-134.png

webUISharingPublicDifferentRoles-shareByPublicLinkDifferentRoles-feature-134.png

webUISharingPublicDifferentRoles-shareByPublicLinkDifferentRoles-feature-248.png

webUISharingPublicDifferentRoles-shareByPublicLinkDifferentRoles-feature-248.png

@ownclouders
Copy link
Contributor

Results for oC10SharingInternalUsersRoot1 https://drone.owncloud.com/owncloud/web/17131/27/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingInternalUsersToRoot-shareWithUsers-feature-115.png

webUISharingInternalUsersToRoot-shareWithUsers-feature-115.png

@ownclouders
Copy link
Contributor

Results for oC10Files2 https://drone.owncloud.com/owncloud/web/17131/11/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUIFilesDetails-fileDetails-feature-107.png

webUIFilesDetails-fileDetails-feature-107.png

webUIFilesDetails-fileDetails-feature-124.png

webUIFilesDetails-fileDetails-feature-124.png

webUIFilesDetails-fileDetails-feature-74.png

webUIFilesDetails-fileDetails-feature-74.png

webUIFilesDetails-fileDetails-feature-90.png

webUIFilesDetails-fileDetails-feature-90.png

@ownclouders
Copy link
Contributor

Results for oC10SharingPublicBasic https://drone.owncloud.com/owncloud/web/17131/31/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingPublicBasic-publicLinkEdit-feature-145.png

webUISharingPublicBasic-publicLinkEdit-feature-145.png

@ownclouders
Copy link
Contributor

Results for oC10SharingInternalUsers https://drone.owncloud.com/owncloud/web/17131/23/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingInternalUsers-shareWithUsers-feature-126.png

webUISharingInternalUsers-shareWithUsers-feature-126.png

@ownclouders
Copy link
Contributor

Results for oC10Files2 https://drone.owncloud.com/owncloud/web/17133/11/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUIFilesDetails-fileDetails-feature-107.png

webUIFilesDetails-fileDetails-feature-107.png

webUIFilesDetails-fileDetails-feature-124.png

webUIFilesDetails-fileDetails-feature-124.png

webUIFilesDetails-fileDetails-feature-74.png

webUIFilesDetails-fileDetails-feature-74.png

webUIFilesDetails-fileDetails-feature-90.png

webUIFilesDetails-fileDetails-feature-90.png

@ownclouders
Copy link
Contributor

Results for oCISSharingBasic https://drone.owncloud.com/owncloud/web/17133/47/1
The following scenarios passed on retry:

  • webUIRestrictSharing/restrictSharing.feature:49

@ownclouders
Copy link
Contributor

Results for oC10IntegrationNotifications https://drone.owncloud.com/owncloud/web/17134/61/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUISharingNotifications-notificationLink-feature-18.png

webUISharingNotifications-notificationLink-feature-18.png

webUISharingNotifications-shareWithUsers-feature-21.png

webUISharingNotifications-shareWithUsers-feature-21.png

webUISharingNotifications-shareWithUsers-feature-32.png

webUISharingNotifications-shareWithUsers-feature-32.png

webUISharingNotifications-shareWithUsers-feature-40.png

webUISharingNotifications-shareWithUsers-feature-40.png

webUISharingNotifications-shareWithUsers-feature-53.png

webUISharingNotifications-shareWithUsers-feature-53.png

webUISharingNotificationsToRoot-notificationLink-feature-17.png

webUISharingNotificationsToRoot-notificationLink-feature-17.png

webUISharingNotificationsToRoot-shareWithUsers-feature-19.png

webUISharingNotificationsToRoot-shareWithUsers-feature-19.png

webUISharingNotificationsToRoot-shareWithUsers-feature-31.png

webUISharingNotificationsToRoot-shareWithUsers-feature-31.png

webUISharingNotificationsToRoot-shareWithUsers-feature-40.png

webUISharingNotificationsToRoot-shareWithUsers-feature-40.png

webUISharingNotificationsToRoot-shareWithUsers-feature-53.png

webUISharingNotificationsToRoot-shareWithUsers-feature-53.png

@ownclouders
Copy link
Contributor

Results for oCISSharingBasic https://drone.owncloud.com/owncloud/web/17134/47/1
The following scenarios passed on retry:

  • webUIRestrictSharing/restrictSharing.feature:49

@ownclouders
Copy link
Contributor

Results for oC10IntegrationApp1 https://drone.owncloud.com/owncloud/web/17134/62/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUIPrivateLinks-accessingPrivateLinks-feature-17.png

webUIPrivateLinks-accessingPrivateLinks-feature-17.png

webUIPrivateLinks-accessingPrivateLinks-feature-9.png

webUIPrivateLinks-accessingPrivateLinks-feature-9.png

@ownclouders
Copy link
Contributor

Results for oC10Basic https://drone.owncloud.com/owncloud/web/17134/6/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUILogin-adminBlocksUser-feature-20.png

webUILogin-adminBlocksUser-feature-20.png

webUIPreview-imageMediaViewer-feature-141.png

webUIPreview-imageMediaViewer-feature-141.png

webUIPreview-imageMediaViewer-feature-159.png

webUIPreview-imageMediaViewer-feature-159.png

webUIPreview-imageMediaViewer-feature-84.png

webUIPreview-imageMediaViewer-feature-84.png

webUIPreview-imageMediaViewer-feature-91.png

webUIPreview-imageMediaViewer-feature-91.png

webUIPrivateLinks-accessingPrivateLinks-feature-17.png

webUIPrivateLinks-accessingPrivateLinks-feature-17.png

webUIPrivateLinks-accessingPrivateLinks-feature-25.png

webUIPrivateLinks-accessingPrivateLinks-feature-25.png

webUIPrivateLinks-accessingPrivateLinks-feature-9.png

webUIPrivateLinks-accessingPrivateLinks-feature-9.png

webUIWebdavLockProtection-delete-feature-75.png

webUIWebdavLockProtection-delete-feature-75.png

webUIWebdavLockProtection-delete-feature-76.png

webUIWebdavLockProtection-delete-feature-76.png

webUIWebdavLockProtection-move-feature-123.png

webUIWebdavLockProtection-move-feature-123.png

webUIWebdavLockProtection-move-feature-124.png

webUIWebdavLockProtection-move-feature-124.png

webUIWebdavLockProtection-move-feature-145.png

webUIWebdavLockProtection-move-feature-145.png

webUIWebdavLockProtection-move-feature-146.png

webUIWebdavLockProtection-move-feature-146.png

webUIWebdavLockProtection-upload-feature-90.png

webUIWebdavLockProtection-upload-feature-90.png

webUIWebdavLockProtection-upload-feature-91.png

webUIWebdavLockProtection-upload-feature-91.png

@sonarqubecloud
Copy link

sonarqubecloud bot commented Jul 7, 2021

Please retry analysis of this Pull-Request directly on SonarCloud.

@ownclouders
Copy link
Contributor

Results for oCISSharingBasic https://drone.owncloud.com/owncloud/web/17141/47/1
The following scenarios passed on retry:

  • webUIRestrictSharing/restrictSharing.feature:49

@ownclouders
Copy link
Contributor

Results for oCISSharingBasic https://drone.owncloud.com/owncloud/web/17140/47/1
The following scenarios passed on retry:

  • webUIRestrictSharing/restrictSharing.feature:49

@ownclouders
Copy link
Contributor

Results for oC10Trashbin https://drone.owncloud.com/owncloud/web/17140/34/1
The following scenarios passed on retry:

  • webUITrashbinRestore/trashbinRestore.feature:181

@ownclouders
Copy link
Contributor

Results for oC10Basic https://drone.owncloud.com/owncloud/web/17140/6/1

💥 The acceptance tests failed. Please find the screenshots inside ...

webUILogin-adminBlocksUser-feature-20.png

webUILogin-adminBlocksUser-feature-20.png

webUIPreview-imageMediaViewer-feature-141.png

webUIPreview-imageMediaViewer-feature-141.png

webUIPreview-imageMediaViewer-feature-159.png

webUIPreview-imageMediaViewer-feature-159.png

webUIPreview-imageMediaViewer-feature-84.png

webUIPreview-imageMediaViewer-feature-84.png

webUIPreview-imageMediaViewer-feature-91.png

webUIPreview-imageMediaViewer-feature-91.png

webUIPrivateLinks-accessingPrivateLinks-feature-25.png

webUIPrivateLinks-accessingPrivateLinks-feature-25.png

webUIWebdavLockProtection-delete-feature-75.png

webUIWebdavLockProtection-delete-feature-75.png

webUIWebdavLockProtection-delete-feature-76.png

webUIWebdavLockProtection-delete-feature-76.png

webUIWebdavLockProtection-move-feature-123.png

webUIWebdavLockProtection-move-feature-123.png

webUIWebdavLockProtection-move-feature-124.png

webUIWebdavLockProtection-move-feature-124.png

webUIWebdavLockProtection-move-feature-145.png

webUIWebdavLockProtection-move-feature-145.png

webUIWebdavLockProtection-move-feature-146.png

webUIWebdavLockProtection-move-feature-146.png

webUIWebdavLockProtection-upload-feature-90.png

webUIWebdavLockProtection-upload-feature-90.png

webUIWebdavLockProtection-upload-feature-91.png

webUIWebdavLockProtection-upload-feature-91.png

Copy link
Contributor

@kulmann kulmann left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

@pascalwengerter pascalwengerter merged commit 71e53e7 into master Jul 7, 2021
@delete-merged-branch delete-merged-branch bot deleted the 16062021_details-in-sharing-sidebar branch July 7, 2021 14:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

"Details" in the Sidebar
7 participants