-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ShareInviteCollaborator Contextual Helper
Add contextual helpers for shares sidebar add changelog Bump ODS Update snapshots Make contextHelpers configurable ODS Bump changelog
- Loading branch information
Showing
19 changed files
with
169 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Enhancement: Add OcContextualHelper | ||
|
||
We've added contextual helpers to provide more information | ||
based on the context | ||
|
||
https://github.com/owncloud/web/issues/6590 | ||
https://github.com/owncloud/web/pull/6750 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Enhancement: Bump ODS to 13.1.0 RC.5 | ||
|
||
We've bumped the version of the design system to v13.1.0-rc.5 | ||
|
||
https://github.com/owncloud/web/pull/6750 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,8 @@ | |
"search", | ||
"text-editor" | ||
], | ||
"applications" : [] | ||
"applications" : [], | ||
"options": { | ||
"contextHelpers": true | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,8 @@ | |
"search", | ||
"text-editor", | ||
"draw-io" | ||
] | ||
], | ||
"options": { | ||
"contextHelpers": true | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,5 +28,8 @@ | |
"id": "accounts", | ||
"path": "https://localhost:9200/accounts.js" | ||
} | ||
] | ||
], | ||
"options": { | ||
"contextHelpers": true | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// just a dummy function to trick gettext tools | ||
function $gettext(msg) { | ||
return msg | ||
} | ||
export const empty = { | ||
text: $gettext(''), | ||
list: [$gettext(''), $gettext(''), $gettext('')] | ||
} | ||
export const shareInviteCollaboratorHelp = { | ||
text: $gettext('Invite persons or groups to access this file or folder.'), | ||
list: [ | ||
$gettext('Enter a name or group to share this item'), | ||
$gettext( | ||
'If you share a folder, all of its contents and subfolders will be shared with the entered persons or groups' | ||
), | ||
$gettext('Invited persons or groups will be notified via e-mail or in-app notification'), | ||
$gettext('Invited persons can not see who else has access') | ||
] | ||
} | ||
export const shareSpaceAddMemberHelp = { | ||
text: $gettext('Add persons or groups as members to this Space. Members are allowed to:'), | ||
list: [ | ||
$gettext('see who else is member of this space'), | ||
$gettext('view all files in this space'), | ||
$gettext('(if permitted) edit or delete files in this Space'), | ||
$gettext('(if permitted) share folders of this Space with non-Members'), | ||
$gettext('see with whom a folder is shared') | ||
], | ||
endText: 'Members can only be added or removed by a Space Manager.' | ||
} | ||
export const shareViaLinkHelp = { | ||
text: $gettext('Share a file or folder by link. Choose how access is granted:'), | ||
list: [ | ||
$gettext( | ||
'Only invited people can access: Only people from the list "Invited people" can access. If there is no list, no people are invited yet.' | ||
), | ||
$gettext( | ||
'Everyone with the link: Everyone with the link can access. Note: If you share this link with people from the list "Invited people", they need to login-in so that their individual assigned permissions can take effect. If they are not logged-in, the permissions of the link take effect.' | ||
) | ||
] | ||
} | ||
export const shareQuickLinkHelp = { | ||
text: $gettext('The Quick link is the link that is always copied if you'), | ||
list: [ | ||
$gettext('right click on a file and choose "Get link" or'), | ||
$gettext('click on the quickaction "Get link"') | ||
] | ||
} | ||
export const shareAddLinkHelp = { | ||
text: $gettext('Add and manage multiple links for the same file or folder.') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/web-runtime/tests/unit/components/Topbar/__snapshots__/FeedbackLink.spec.js.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`FeedbackLink component has no accessibility violations 1`] = ` | ||
<div class="oc-flex"><a aria-label="ownCloud feedback survey" href="https://owncloud.com/web-design-feedback" class="oc-button oc-rounded oc-button-m oc-button-justify-content-center oc-button-gap-m oc-button-inverse oc-button-inverse-raw" target="_blank" aria-describedby="oc-feedback-link-description"><span class="oc-icon oc-icon-m oc-icon-passive"><!----></span></a> | ||
<div class="oc-flex"><a aria-label="ownCloud feedback survey" href="https://owncloud.com/web-design-feedback" target="_blank" class="oc-button oc-rounded oc-button-m oc-button-justify-content-center oc-button-gap-m oc-button-inverse oc-button-inverse-raw" aria-describedby="oc-feedback-link-description"><span class="oc-icon oc-icon-m oc-icon-passive"><!----></span></a> | ||
<p id="oc-feedback-link-description" class="oc-invisible-sr">Provide your feedback: We'd like to improve the web design and would be happy to hear your feedback. Thank you! Your ownCloud team.</p> | ||
</div> | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters