cozy-sharing 10.1.4 → 10.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist/ConfirmTrustedRecipientsDialog.js +1 -1
- package/dist/ShareButton.js +1 -1
- package/dist/ShareButton.spec.js +1 -1
- package/dist/SharedBadge.js +1 -1
- package/dist/SharedRecipients.js +1 -1
- package/dist/SharedRecipientsList.js +1 -1
- package/dist/SharedStatus.js +1 -1
- package/dist/SharingOwnerAvatar.js +1 -1
- package/dist/SharingProvider.js +18 -7
- package/dist/components/CozyPassFingerprintDialogContent.js +1 -1
- package/dist/components/Recipient/Identity.js +17 -17
- package/dist/components/Recipient/LinkRecipient.js +18 -18
- package/dist/components/Recipient/OwnerIdentity.js +18 -18
- package/dist/components/Recipient/OwnerRecipientDefault.js +2 -2
- package/dist/components/Recipient/RecipientConfirm.js +25 -25
- package/dist/components/Recipient/RecipientList.js +36 -0
- package/dist/components/Recipient/RecipientPlusX.js +18 -18
- package/dist/components/Recipient/RecipientStatus.js +17 -17
- package/dist/components/Recipient/RecipientWithoutStatus.js +18 -18
- package/dist/components/Recipient/RecipientsAvatars.js +18 -18
- package/dist/components/ShareAutosuggest.js +16 -16
- package/dist/components/ShareButton.js +2 -2
- package/dist/components/ShareByEmail.js +26 -26
- package/dist/components/ShareByLink.js +75 -50
- package/dist/components/ShareDialogCozyToCozy.js +25 -25
- package/dist/components/{EditableSharingModal.js → ShareModal/EditableSharingModal.js} +5 -5
- package/dist/components/{EditableSharingModal.spec.js → ShareModal/EditableSharingModal.spec.js} +6 -6
- package/dist/components/ShareModal/ShareModal.js +43 -0
- package/dist/{SharingDetailsModal.js → components/ShareModal/SharingDetailsModal.js} +28 -28
- package/dist/components/SharedBadge.js +6 -6
- package/dist/components/SharedStatus.js +4 -4
- package/dist/components/Sharetypeselect.js +25 -25
- package/dist/{SharingBanner → components/SharingBanner}/components/PublicBanner.js +1 -1
- package/dist/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.js +2 -2
- package/dist/{SharingBanner → components/SharingBanner}/index.js +1 -1
- package/dist/{SharingBanner → components/SharingBanner}/test/AppLike.js +2 -2
- package/dist/components/Tooltip.js +19 -8
- package/dist/components/WhoHasAccess.js +10 -20
- package/dist/components/WhoHasAccessLight.js +19 -1
- package/dist/{withLocales.js → hoc/withLocales.js} +2 -2
- package/dist/index.js +5 -5
- package/dist/{SharingBanner/components → styles}/publicBanner.styl +5 -5
- package/dist/stylesheet.css +340 -340
- package/docs/share-modal-architecture.md +44 -0
- package/package.json +2 -3
- package/src/ConfirmTrustedRecipientsDialog.jsx +1 -1
- package/src/ShareButton.jsx +1 -1
- package/src/ShareButton.spec.jsx +1 -1
- package/src/SharedBadge.jsx +1 -1
- package/src/SharedRecipients.jsx +1 -1
- package/src/SharedRecipientsList.jsx +1 -1
- package/src/SharedStatus.jsx +1 -1
- package/src/SharingOwnerAvatar.jsx +1 -1
- package/src/assets/icons/icon-arrow-down.svg +3 -0
- package/src/assets/icons/icon-calendar-16.svg +8 -0
- package/src/assets/icons/icon-check-blue.svg +59 -0
- package/src/assets/icons/icon-cross-bold.svg +5 -0
- package/src/assets/icons/icon-link.svg +14 -0
- package/src/assets/icons/icon-pen-16.svg +3 -0
- package/src/components/CozyPassFingerprintDialogContent.jsx +1 -1
- package/src/components/Recipient/Identity.jsx +1 -1
- package/src/components/Recipient/LinkRecipient.jsx +1 -1
- package/src/components/Recipient/OwnerIdentity.jsx +1 -1
- package/src/components/Recipient/RecipientConfirm.jsx +1 -1
- package/src/components/Recipient/RecipientList.jsx +45 -0
- package/src/components/Recipient/RecipientPlusX.jsx +1 -1
- package/src/components/Recipient/RecipientStatus.jsx +1 -1
- package/src/components/Recipient/RecipientWithoutStatus.jsx +1 -1
- package/src/components/Recipient/RecipientsAvatars.jsx +1 -1
- package/src/components/ShareAutosuggest.jsx +1 -1
- package/src/components/ShareButton.jsx +1 -1
- package/src/components/ShareByEmail.jsx +1 -1
- package/src/components/ShareByLink.jsx +12 -10
- package/src/components/ShareDialogCozyToCozy.jsx +1 -1
- package/src/components/{EditableSharingModal.jsx → ShareModal/EditableSharingModal.jsx} +5 -5
- package/src/components/{EditableSharingModal.spec.jsx → ShareModal/EditableSharingModal.spec.jsx} +6 -6
- package/src/components/ShareModal/ShareModal.jsx +45 -0
- package/src/{SharingDetailsModal.jsx → components/ShareModal/SharingDetailsModal.jsx} +4 -4
- package/src/components/SharedBadge.jsx +1 -1
- package/src/components/SharedStatus.jsx +2 -2
- package/src/components/Sharetypeselect.jsx +1 -1
- package/src/{SharingBanner → components/SharingBanner}/components/PublicBanner.jsx +1 -1
- package/src/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.jsx +2 -2
- package/src/{SharingBanner → components/SharingBanner}/index.jsx +1 -1
- package/src/{SharingBanner → components/SharingBanner}/test/AppLike.jsx +2 -2
- package/src/components/Tooltip.jsx +1 -1
- package/src/components/WhoHasAccess.jsx +11 -29
- package/src/components/WhoHasAccessLight.jsx +1 -1
- package/src/{withLocales.jsx → hoc/withLocales.jsx} +2 -2
- package/src/index.jsx +6 -5
- package/src/{SharingBanner/components → styles}/publicBanner.styl +5 -5
- package/dist/ShareModal.js +0 -50
- package/src/ShareModal.jsx +0 -51
- /package/{assets → dist/assets}/icons/icon-arrow-down.svg +0 -0
- /package/{assets → dist/assets}/icons/icon-calendar-16.svg +0 -0
- /package/{assets → dist/assets}/icons/icon-check-blue.svg +0 -0
- /package/{assets → dist/assets}/icons/icon-cross-bold.svg +0 -0
- /package/{assets → dist/assets}/icons/icon-link.svg +0 -0
- /package/{assets → dist/assets}/icons/icon-pen-16.svg +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/components/CozyHomeLinkIcon.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/components/PublicBanner.spec.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/components/SharingBanner.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.spec.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.spec.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/test/AcceptingSharingContext.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/test/FabProvider.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/test/ModalContext.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/test/RouterContext.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/test/ThumbnailSizeContext.js +0 -0
- /package/dist/{components → hooks}/useFetchDocumentPath.js +0 -0
- /package/dist/{components → styles}/CozyPassFingerprintDialogContent.styl +0 -0
- /package/dist/{components → styles}/actionmenu.styl +0 -0
- /package/dist/{components → styles}/autosuggest.styl +0 -0
- /package/dist/{components → styles}/badge.styl +0 -0
- /package/dist/{components → styles}/button.styl +0 -0
- /package/dist/{components/Recipient → styles}/recipient.styl +0 -0
- /package/dist/{share.styl → styles/share.styl} +0 -0
- /package/dist/{components → styles}/status.styl +0 -0
- /package/dist/{components → styles}/tooltip.styl +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/components/CozyHomeLinkIcon.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/components/PublicBanner.spec.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/components/SharingBanner.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.js +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.spec.js +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.spec.js +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/test/AcceptingSharingContext.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/test/FabProvider.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/test/ModalContext.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/test/RouterContext.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/test/ThumbnailSizeContext.jsx +0 -0
- /package/src/{components → hooks}/useFetchDocumentPath.jsx +0 -0
- /package/src/{components → styles}/CozyPassFingerprintDialogContent.styl +0 -0
- /package/src/{components → styles}/actionmenu.styl +0 -0
- /package/src/{components → styles}/autosuggest.styl +0 -0
- /package/src/{components → styles}/badge.styl +0 -0
- /package/src/{components → styles}/button.styl +0 -0
- /package/src/{components/Recipient → styles}/recipient.styl +0 -0
- /package/src/{share.styl → styles/share.styl} +0 -0
- /package/src/{components → styles}/status.styl +0 -0
- /package/src/{components → styles}/tooltip.styl +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 10.3.0 (2024-02-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **mespapiers:** Add information step for custom name to fidelity card ([5f6fce7](https://github.com/cozy/cozy-libs/commit/5f6fce72e5374388bac369c9332ed47c303e945b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# 10.2.0 (2024-02-01)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* Use navigator.clipboard instead of copy-text-to-clipboard ([6727c26](https://github.com/cozy/cozy-libs/commit/6727c26eaa796735d51300756ff617f999cc56dd))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* Remove copy-text-to-clipboard package ([53e46c8](https://github.com/cozy/cozy-libs/commit/53e46c8dedf33cca5f3a13be6d9d230bfaffa335))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [10.1.4](https://github.com/cozy/cozy-libs/compare/cozy-sharing@10.1.3...cozy-sharing@10.1.4) (2024-01-05)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package cozy-sharing
|
|
@@ -4,7 +4,7 @@ var _excluded = ["document"];
|
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import { default as DumbConfirmTrustedRecipientsDialog } from './components/ConfirmTrustedRecipientsDialog';
|
|
6
6
|
import SharingContext from './context';
|
|
7
|
-
import withLocales from './withLocales';
|
|
7
|
+
import withLocales from './hoc/withLocales';
|
|
8
8
|
export var ConfirmTrustedRecipientsDialog = withLocales(function (_ref) {
|
|
9
9
|
var document = _ref.document,
|
|
10
10
|
rest = _objectWithoutProperties(_ref, _excluded);
|
package/dist/ShareButton.js
CHANGED
|
@@ -11,7 +11,7 @@ import React from 'react';
|
|
|
11
11
|
import { useI18n } from 'cozy-ui/transpiled/react/providers/I18n';
|
|
12
12
|
import { default as DumbShareButton, SharedByMeButton, SharedWithMeButton } from './components/ShareButton';
|
|
13
13
|
import SharingContext from './context';
|
|
14
|
-
import withLocales from './withLocales';
|
|
14
|
+
import withLocales from './hoc/withLocales';
|
|
15
15
|
export var ShareButton = withLocales(function (_ref) {
|
|
16
16
|
var docId = _ref.docId,
|
|
17
17
|
useShortLabel = _ref.useShortLabel,
|
package/dist/ShareButton.spec.js
CHANGED
|
@@ -19,7 +19,7 @@ jest.mock('cozy-ui/transpiled/react/providers/I18n', function () {
|
|
|
19
19
|
})
|
|
20
20
|
};
|
|
21
21
|
});
|
|
22
|
-
jest.mock('./withLocales', function () {
|
|
22
|
+
jest.mock('./hoc/withLocales', function () {
|
|
23
23
|
return (// eslint-disable-next-line react/display-name
|
|
24
24
|
function (Component) {
|
|
25
25
|
return function (props) {
|
package/dist/SharedBadge.js
CHANGED
|
@@ -4,7 +4,7 @@ var _excluded = ["docId"];
|
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import { default as DumbSharedBadge } from './components/SharedBadge';
|
|
6
6
|
import SharingContext from './context';
|
|
7
|
-
import withLocales from './withLocales';
|
|
7
|
+
import withLocales from './hoc/withLocales';
|
|
8
8
|
export var SharedBadge = withLocales(function (_ref) {
|
|
9
9
|
var docId = _ref.docId,
|
|
10
10
|
rest = _objectWithoutProperties(_ref, _excluded);
|
package/dist/SharedRecipients.js
CHANGED
|
@@ -4,7 +4,7 @@ var _excluded = ["docId", "onClick"];
|
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import RecipientsAvatars from './components/Recipient/RecipientsAvatars';
|
|
6
6
|
import SharingContext from './context';
|
|
7
|
-
import withLocales from './withLocales';
|
|
7
|
+
import withLocales from './hoc/withLocales';
|
|
8
8
|
export var SharedRecipients = withLocales(function (_ref) {
|
|
9
9
|
var docId = _ref.docId,
|
|
10
10
|
onClick = _ref.onClick,
|
|
@@ -4,7 +4,7 @@ var _excluded = ["docId"];
|
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import { default as RecipientsList } from './components/WhoHasAccessLight';
|
|
6
6
|
import SharingContext from './context';
|
|
7
|
-
import withLocales from './withLocales';
|
|
7
|
+
import withLocales from './hoc/withLocales';
|
|
8
8
|
export var SharedRecipientsList = withLocales(function (_ref) {
|
|
9
9
|
var docId = _ref.docId,
|
|
10
10
|
rest = _objectWithoutProperties(_ref, _excluded);
|
package/dist/SharedStatus.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import RecipientsAvatars from './components/Recipient/RecipientsAvatars';
|
|
3
3
|
import SharingContext from './context';
|
|
4
|
-
import withLocales from './withLocales';
|
|
4
|
+
import withLocales from './hoc/withLocales';
|
|
5
5
|
export var SharedStatus = withLocales(function (_ref) {
|
|
6
6
|
var docId = _ref.docId,
|
|
7
7
|
className = _ref.className,
|
|
@@ -4,7 +4,7 @@ var _excluded = ["docId"];
|
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import RecipientAvatar from './components/Recipient/RecipientAvatar';
|
|
6
6
|
import SharingContext from './context';
|
|
7
|
-
import withLocales from './withLocales';
|
|
7
|
+
import withLocales from './hoc/withLocales';
|
|
8
8
|
export var SharingOwnerAvatar = withLocales(function (_ref) {
|
|
9
9
|
var docId = _ref.docId,
|
|
10
10
|
rest = _objectWithoutProperties(_ref, _excluded);
|
package/dist/SharingProvider.js
CHANGED
|
@@ -3,10 +3,10 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
|
3
3
|
import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
|
|
4
4
|
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
5
5
|
import _createClass from "@babel/runtime/helpers/createClass";
|
|
6
|
-
import _assertThisInitialized from "@babel/runtime/helpers/assertThisInitialized";
|
|
7
|
-
import _inherits from "@babel/runtime/helpers/inherits";
|
|
8
6
|
import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
|
|
9
7
|
import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
|
|
8
|
+
import _assertThisInitialized from "@babel/runtime/helpers/assertThisInitialized";
|
|
9
|
+
import _inherits from "@babel/runtime/helpers/inherits";
|
|
10
10
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
11
11
|
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
12
12
|
|
|
@@ -14,9 +14,22 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
|
|
|
14
14
|
|
|
15
15
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
16
16
|
|
|
17
|
-
function
|
|
17
|
+
function _callSuper(_this, derived, args) {
|
|
18
|
+
function isNativeReflectConstruct() {
|
|
19
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
20
|
+
if (Reflect.construct.sham) return false;
|
|
21
|
+
if (typeof Proxy === "function") return true;
|
|
18
22
|
|
|
19
|
-
|
|
23
|
+
try {
|
|
24
|
+
return !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
25
|
+
} catch (e) {
|
|
26
|
+
return false;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
derived = _getPrototypeOf(derived);
|
|
31
|
+
return _possibleConstructorReturn(_this, isNativeReflectConstruct() ? Reflect.construct(derived, args || [], _getPrototypeOf(_this).constructor) : derived.apply(_this, args));
|
|
32
|
+
}
|
|
20
33
|
|
|
21
34
|
import React, { Component } from 'react';
|
|
22
35
|
import { withClient } from 'cozy-client';
|
|
@@ -32,14 +45,12 @@ var PERMISSION_DOCTYPE = 'io.cozy.permissions';
|
|
|
32
45
|
export var SharingProvider = /*#__PURE__*/function (_Component) {
|
|
33
46
|
_inherits(SharingProvider, _Component);
|
|
34
47
|
|
|
35
|
-
var _super = _createSuper(SharingProvider);
|
|
36
|
-
|
|
37
48
|
function SharingProvider(props, context) {
|
|
38
49
|
var _this;
|
|
39
50
|
|
|
40
51
|
_classCallCheck(this, SharingProvider);
|
|
41
52
|
|
|
42
|
-
_this =
|
|
53
|
+
_this = _callSuper(this, SharingProvider, [props, context]);
|
|
43
54
|
|
|
44
55
|
_defineProperty(_assertThisInitialized(_this), "dispatch", function (action) {
|
|
45
56
|
return _this.setState(function (state) {
|
|
@@ -6,7 +6,7 @@ import Paper from 'cozy-ui/transpiled/react/Paper';
|
|
|
6
6
|
import Typography from 'cozy-ui/transpiled/react/Typography';
|
|
7
7
|
import { useI18n } from 'cozy-ui/transpiled/react/providers/I18n';
|
|
8
8
|
var styles = {
|
|
9
|
-
"cozy-pass-fingerprint-modal__fingerprint": "CozyPassFingerprintDialogContent__cozy-pass-fingerprint-
|
|
9
|
+
"cozy-pass-fingerprint-modal__fingerprint": "CozyPassFingerprintDialogContent__cozy-pass-fingerprint-modal__fingerprint___3qIGs"
|
|
10
10
|
};
|
|
11
11
|
/**
|
|
12
12
|
* CozyPassFingerprintDialogContent can be use as a content for ShareModal when
|
|
@@ -2,23 +2,23 @@ import classNames from 'classnames';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
var styles = {
|
|
5
|
-
"CozyTheme--inverted": "recipient__CozyTheme--
|
|
6
|
-
"CozyTheme--normal": "recipient__CozyTheme--
|
|
7
|
-
"recipient": "
|
|
8
|
-
"recipients-list-light": "recipient__recipients-list-
|
|
9
|
-
"recipient-idents": "recipient__recipient-
|
|
10
|
-
"recipient-status-icon": "recipient__recipient-status-
|
|
11
|
-
"recipient-user": "recipient__recipient-
|
|
12
|
-
"recipient-details": "recipient__recipient-
|
|
13
|
-
"avatar": "
|
|
14
|
-
"link-recipient-icon-circle": "recipient__link-recipient-icon-
|
|
15
|
-
"recipients-avatars": "recipient__recipients-
|
|
16
|
-
"--interactive": "recipient__--
|
|
17
|
-
"recipients-avatars--link": "recipient__recipients-avatars--
|
|
18
|
-
"recipients-avatars--plusX": "recipient__recipients-avatars--
|
|
19
|
-
"recipients-avatars--avatar": "recipient__recipients-avatars--
|
|
20
|
-
"spin": "
|
|
21
|
-
"shake": "
|
|
5
|
+
"CozyTheme--inverted": "recipient__CozyTheme--inverted___21SPM",
|
|
6
|
+
"CozyTheme--normal": "recipient__CozyTheme--normal___3ABO0",
|
|
7
|
+
"recipient": "recipient__recipient___2DmZI",
|
|
8
|
+
"recipients-list-light": "recipient__recipients-list-light___Vq4op",
|
|
9
|
+
"recipient-idents": "recipient__recipient-idents___3s7rw",
|
|
10
|
+
"recipient-status-icon": "recipient__recipient-status-icon___-liGw",
|
|
11
|
+
"recipient-user": "recipient__recipient-user___1THIU",
|
|
12
|
+
"recipient-details": "recipient__recipient-details___2fZfc",
|
|
13
|
+
"avatar": "recipient__avatar___2LnIV",
|
|
14
|
+
"link-recipient-icon-circle": "recipient__link-recipient-icon-circle___3ZTU-",
|
|
15
|
+
"recipients-avatars": "recipient__recipients-avatars___1npjD",
|
|
16
|
+
"--interactive": "recipient__--interactive___160Bp",
|
|
17
|
+
"recipients-avatars--link": "recipient__recipients-avatars--link___1qeON",
|
|
18
|
+
"recipients-avatars--plusX": "recipient__recipients-avatars--plusX___3-6_l",
|
|
19
|
+
"recipients-avatars--avatar": "recipient__recipients-avatars--avatar___-owjC",
|
|
20
|
+
"spin": "recipient__spin___2tYv3",
|
|
21
|
+
"shake": "recipient__shake___TGyPp"
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
var Identity = function Identity(_ref) {
|
|
@@ -12,26 +12,26 @@ import Typography from 'cozy-ui/transpiled/react/Typography';
|
|
|
12
12
|
import { useI18n } from 'cozy-ui/transpiled/react/providers/I18n';
|
|
13
13
|
import LinkRecipientPermissions from './LinkRecipientPermissions';
|
|
14
14
|
import RecipientConfirm from './RecipientConfirm';
|
|
15
|
+
import { FADE_IN_DURATION } from '../../helpers/recipients';
|
|
15
16
|
var styles = {
|
|
16
|
-
"CozyTheme--inverted": "recipient__CozyTheme--
|
|
17
|
-
"CozyTheme--normal": "recipient__CozyTheme--
|
|
18
|
-
"recipient": "
|
|
19
|
-
"recipients-list-light": "recipient__recipients-list-
|
|
20
|
-
"recipient-idents": "recipient__recipient-
|
|
21
|
-
"recipient-status-icon": "recipient__recipient-status-
|
|
22
|
-
"recipient-user": "recipient__recipient-
|
|
23
|
-
"recipient-details": "recipient__recipient-
|
|
24
|
-
"avatar": "
|
|
25
|
-
"link-recipient-icon-circle": "recipient__link-recipient-icon-
|
|
26
|
-
"recipients-avatars": "recipient__recipients-
|
|
27
|
-
"--interactive": "recipient__--
|
|
28
|
-
"recipients-avatars--link": "recipient__recipients-avatars--
|
|
29
|
-
"recipients-avatars--plusX": "recipient__recipients-avatars--
|
|
30
|
-
"recipients-avatars--avatar": "recipient__recipients-avatars--
|
|
31
|
-
"spin": "
|
|
32
|
-
"shake": "
|
|
17
|
+
"CozyTheme--inverted": "recipient__CozyTheme--inverted___21SPM",
|
|
18
|
+
"CozyTheme--normal": "recipient__CozyTheme--normal___3ABO0",
|
|
19
|
+
"recipient": "recipient__recipient___2DmZI",
|
|
20
|
+
"recipients-list-light": "recipient__recipients-list-light___Vq4op",
|
|
21
|
+
"recipient-idents": "recipient__recipient-idents___3s7rw",
|
|
22
|
+
"recipient-status-icon": "recipient__recipient-status-icon___-liGw",
|
|
23
|
+
"recipient-user": "recipient__recipient-user___1THIU",
|
|
24
|
+
"recipient-details": "recipient__recipient-details___2fZfc",
|
|
25
|
+
"avatar": "recipient__avatar___2LnIV",
|
|
26
|
+
"link-recipient-icon-circle": "recipient__link-recipient-icon-circle___3ZTU-",
|
|
27
|
+
"recipients-avatars": "recipient__recipients-avatars___1npjD",
|
|
28
|
+
"--interactive": "recipient__--interactive___160Bp",
|
|
29
|
+
"recipients-avatars--link": "recipient__recipients-avatars--link___1qeON",
|
|
30
|
+
"recipients-avatars--plusX": "recipient__recipients-avatars--plusX___3-6_l",
|
|
31
|
+
"recipients-avatars--avatar": "recipient__recipients-avatars--avatar___-owjC",
|
|
32
|
+
"spin": "recipient__spin___2tYv3",
|
|
33
|
+
"shake": "recipient__shake___TGyPp"
|
|
33
34
|
};
|
|
34
|
-
import { FADE_IN_DURATION } from '../../helpers/recipients';
|
|
35
35
|
|
|
36
36
|
var LinkRecipient = function LinkRecipient(props) {
|
|
37
37
|
var _useI18n = useI18n(),
|
|
@@ -3,26 +3,26 @@ var _excluded = ["url", "size"];
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import Avatar from 'cozy-ui/transpiled/react/Avatar';
|
|
5
5
|
import Identity from './Identity';
|
|
6
|
+
import { getDisplayName, getInitials } from '../../models';
|
|
6
7
|
var styles = {
|
|
7
|
-
"CozyTheme--inverted": "recipient__CozyTheme--
|
|
8
|
-
"CozyTheme--normal": "recipient__CozyTheme--
|
|
9
|
-
"recipient": "
|
|
10
|
-
"recipients-list-light": "recipient__recipients-list-
|
|
11
|
-
"recipient-idents": "recipient__recipient-
|
|
12
|
-
"recipient-status-icon": "recipient__recipient-status-
|
|
13
|
-
"recipient-user": "recipient__recipient-
|
|
14
|
-
"recipient-details": "recipient__recipient-
|
|
15
|
-
"avatar": "
|
|
16
|
-
"link-recipient-icon-circle": "recipient__link-recipient-icon-
|
|
17
|
-
"recipients-avatars": "recipient__recipients-
|
|
18
|
-
"--interactive": "recipient__--
|
|
19
|
-
"recipients-avatars--link": "recipient__recipients-avatars--
|
|
20
|
-
"recipients-avatars--plusX": "recipient__recipients-avatars--
|
|
21
|
-
"recipients-avatars--avatar": "recipient__recipients-avatars--
|
|
22
|
-
"spin": "
|
|
23
|
-
"shake": "
|
|
8
|
+
"CozyTheme--inverted": "recipient__CozyTheme--inverted___21SPM",
|
|
9
|
+
"CozyTheme--normal": "recipient__CozyTheme--normal___3ABO0",
|
|
10
|
+
"recipient": "recipient__recipient___2DmZI",
|
|
11
|
+
"recipients-list-light": "recipient__recipients-list-light___Vq4op",
|
|
12
|
+
"recipient-idents": "recipient__recipient-idents___3s7rw",
|
|
13
|
+
"recipient-status-icon": "recipient__recipient-status-icon___-liGw",
|
|
14
|
+
"recipient-user": "recipient__recipient-user___1THIU",
|
|
15
|
+
"recipient-details": "recipient__recipient-details___2fZfc",
|
|
16
|
+
"avatar": "recipient__avatar___2LnIV",
|
|
17
|
+
"link-recipient-icon-circle": "recipient__link-recipient-icon-circle___3ZTU-",
|
|
18
|
+
"recipients-avatars": "recipient__recipients-avatars___1npjD",
|
|
19
|
+
"--interactive": "recipient__--interactive___160Bp",
|
|
20
|
+
"recipients-avatars--link": "recipient__recipients-avatars--link___1qeON",
|
|
21
|
+
"recipients-avatars--plusX": "recipient__recipients-avatars--plusX___3-6_l",
|
|
22
|
+
"recipients-avatars--avatar": "recipient__recipients-avatars--avatar___-owjC",
|
|
23
|
+
"spin": "recipient__spin___2tYv3",
|
|
24
|
+
"shake": "recipient__shake___TGyPp"
|
|
24
25
|
};
|
|
25
|
-
import { getDisplayName, getInitials } from '../../models';
|
|
26
26
|
|
|
27
27
|
var OwnerIdentity = function OwnerIdentity(_ref) {
|
|
28
28
|
var url = _ref.url,
|
|
@@ -4,7 +4,7 @@ import Recipient from './Recipient';
|
|
|
4
4
|
import { buildInstanceSettingsQuery } from '../../queries/queries';
|
|
5
5
|
|
|
6
6
|
var OwnerRecipientDefault = function OwnerRecipientDefault() {
|
|
7
|
-
var _instanceSettingsResu
|
|
7
|
+
var _instanceSettingsResu;
|
|
8
8
|
|
|
9
9
|
var client = useClient();
|
|
10
10
|
var instanceSettingsQuery = buildInstanceSettingsQuery();
|
|
@@ -13,7 +13,7 @@ var OwnerRecipientDefault = function OwnerRecipientDefault() {
|
|
|
13
13
|
isOwner: true,
|
|
14
14
|
status: "owner",
|
|
15
15
|
instance: client.options.uri,
|
|
16
|
-
public_name: instanceSettingsResult === null || instanceSettingsResult === void 0
|
|
16
|
+
public_name: instanceSettingsResult === null || instanceSettingsResult === void 0 || (_instanceSettingsResu = instanceSettingsResult.data) === null || _instanceSettingsResu === void 0 || (_instanceSettingsResu = _instanceSettingsResu.attributes) === null || _instanceSettingsResu === void 0 ? void 0 : _instanceSettingsResu.public_name
|
|
17
17
|
});
|
|
18
18
|
};
|
|
19
19
|
|
|
@@ -3,31 +3,31 @@ import React from 'react';
|
|
|
3
3
|
import Button from 'cozy-ui/transpiled/react/deprecated/Button';
|
|
4
4
|
import { useI18n } from 'cozy-ui/transpiled/react/providers/I18n';
|
|
5
5
|
var modalStyles = {
|
|
6
|
-
"share-modal-content": "share__share-modal-
|
|
7
|
-
"coz-form": "share__coz-
|
|
8
|
-
"coz-form-group": "share__coz-form-
|
|
9
|
-
"coz-form-desc": "share__coz-form-
|
|
10
|
-
"coz-form-label": "share__coz-form-
|
|
11
|
-
"coz-form-label--error": "share__coz-form-label--
|
|
12
|
-
"coz-form-errors": "share__coz-form-
|
|
13
|
-
"coz-form-controls": "share__coz-form-
|
|
14
|
-
"coz-form-controls--full": "share__coz-form-controls--
|
|
15
|
-
"coz-form-controls--dispatch": "share__coz-form-controls--
|
|
16
|
-
"error": "
|
|
17
|
-
"CozyTheme--inverted": "share__CozyTheme--
|
|
18
|
-
"CozyTheme--normal": "share__CozyTheme--
|
|
19
|
-
"share-byemail-onlybylink": "share__share-byemail-
|
|
20
|
-
"aligned-dropdown-button": "share__aligned-dropdown-
|
|
21
|
-
"share-type-control": "share__share-type-
|
|
22
|
-
"select-wrapper": "share__select-
|
|
23
|
-
"select-option": "share__select-
|
|
24
|
-
"select-option-label": "share__select-option-
|
|
25
|
-
"select-option-desc": "share__select-option-
|
|
26
|
-
"share-details-created": "share__share-details-
|
|
27
|
-
"share-details-perm": "share__share-details-
|
|
28
|
-
"share-details-perm-desc": "share__share-details-perm-
|
|
29
|
-
"spin": "
|
|
30
|
-
"shake": "
|
|
6
|
+
"share-modal-content": "share__share-modal-content___1iqEq",
|
|
7
|
+
"coz-form": "share__coz-form___1ICST",
|
|
8
|
+
"coz-form-group": "share__coz-form-group___VsQp7",
|
|
9
|
+
"coz-form-desc": "share__coz-form-desc___2mYN4",
|
|
10
|
+
"coz-form-label": "share__coz-form-label___bogBw",
|
|
11
|
+
"coz-form-label--error": "share__coz-form-label--error___3YPkf",
|
|
12
|
+
"coz-form-errors": "share__coz-form-errors___2xYRz",
|
|
13
|
+
"coz-form-controls": "share__coz-form-controls___H8kGc",
|
|
14
|
+
"coz-form-controls--full": "share__coz-form-controls--full___1oQXF",
|
|
15
|
+
"coz-form-controls--dispatch": "share__coz-form-controls--dispatch___1zIxt",
|
|
16
|
+
"error": "share__error___pwqPO",
|
|
17
|
+
"CozyTheme--inverted": "share__CozyTheme--inverted___oxix3",
|
|
18
|
+
"CozyTheme--normal": "share__CozyTheme--normal___2PCy8",
|
|
19
|
+
"share-byemail-onlybylink": "share__share-byemail-onlybylink___29W-t",
|
|
20
|
+
"aligned-dropdown-button": "share__aligned-dropdown-button___3crgG",
|
|
21
|
+
"share-type-control": "share__share-type-control___1YoRr",
|
|
22
|
+
"select-wrapper": "share__select-wrapper___3XBKC",
|
|
23
|
+
"select-option": "share__select-option___3Jp8_",
|
|
24
|
+
"select-option-label": "share__select-option-label___1BWz_",
|
|
25
|
+
"select-option-desc": "share__select-option-desc___3jOnr",
|
|
26
|
+
"share-details-created": "share__share-details-created___z3nvO",
|
|
27
|
+
"share-details-perm": "share__share-details-perm___3HjxK",
|
|
28
|
+
"share-details-perm-desc": "share__share-details-perm-desc___3HyHu",
|
|
29
|
+
"spin": "share__spin___hhtoM",
|
|
30
|
+
"shake": "share__shake___2au1o"
|
|
31
31
|
};
|
|
32
32
|
/**
|
|
33
33
|
* Displays the confirmation interface that allows to confirm or reject a recipient
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Recipient from './Recipient';
|
|
4
|
+
import { usePrevious } from '../../helpers/hooks';
|
|
5
|
+
import { filterAndReworkRecipients } from '../../helpers/recipients';
|
|
6
|
+
|
|
7
|
+
var RecipientList = function RecipientList(_ref) {
|
|
8
|
+
var recipients = _ref.recipients,
|
|
9
|
+
recipientsToBeConfirmed = _ref.recipientsToBeConfirmed,
|
|
10
|
+
isOwner = _ref.isOwner,
|
|
11
|
+
document = _ref.document,
|
|
12
|
+
documentType = _ref.documentType,
|
|
13
|
+
onRevoke = _ref.onRevoke,
|
|
14
|
+
onRevokeSelf = _ref.onRevokeSelf,
|
|
15
|
+
verifyRecipient = _ref.verifyRecipient;
|
|
16
|
+
var previousRecipients = usePrevious(recipients);
|
|
17
|
+
var recipientsToDisplay = filterAndReworkRecipients(recipients, previousRecipients);
|
|
18
|
+
return recipientsToDisplay.map(function (recipient) {
|
|
19
|
+
var recipientConfirmationData = recipientsToBeConfirmed.find(function (user) {
|
|
20
|
+
return user.email === recipient.email;
|
|
21
|
+
});
|
|
22
|
+
return /*#__PURE__*/React.createElement(Recipient, _extends({}, recipient, {
|
|
23
|
+
key: "key_r_".concat(recipient.index),
|
|
24
|
+
isOwner: isOwner,
|
|
25
|
+
document: document,
|
|
26
|
+
documentType: documentType,
|
|
27
|
+
onRevoke: onRevoke,
|
|
28
|
+
onRevokeSelf: onRevokeSelf,
|
|
29
|
+
recipientConfirmationData: recipientConfirmationData,
|
|
30
|
+
verifyRecipient: verifyRecipient,
|
|
31
|
+
fadeIn: recipient.hasBeenJustAdded
|
|
32
|
+
}));
|
|
33
|
+
});
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export { RecipientList };
|
|
@@ -2,26 +2,26 @@ import PropTypes from 'prop-types';
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import AvatarPlusX from './AvatarPlusX';
|
|
4
4
|
import Identity from './Identity';
|
|
5
|
+
import { getDisplayName } from '../../models';
|
|
5
6
|
var styles = {
|
|
6
|
-
"CozyTheme--inverted": "recipient__CozyTheme--
|
|
7
|
-
"CozyTheme--normal": "recipient__CozyTheme--
|
|
8
|
-
"recipient": "
|
|
9
|
-
"recipients-list-light": "recipient__recipients-list-
|
|
10
|
-
"recipient-idents": "recipient__recipient-
|
|
11
|
-
"recipient-status-icon": "recipient__recipient-status-
|
|
12
|
-
"recipient-user": "recipient__recipient-
|
|
13
|
-
"recipient-details": "recipient__recipient-
|
|
14
|
-
"avatar": "
|
|
15
|
-
"link-recipient-icon-circle": "recipient__link-recipient-icon-
|
|
16
|
-
"recipients-avatars": "recipient__recipients-
|
|
17
|
-
"--interactive": "recipient__--
|
|
18
|
-
"recipients-avatars--link": "recipient__recipients-avatars--
|
|
19
|
-
"recipients-avatars--plusX": "recipient__recipients-avatars--
|
|
20
|
-
"recipients-avatars--avatar": "recipient__recipients-avatars--
|
|
21
|
-
"spin": "
|
|
22
|
-
"shake": "
|
|
7
|
+
"CozyTheme--inverted": "recipient__CozyTheme--inverted___21SPM",
|
|
8
|
+
"CozyTheme--normal": "recipient__CozyTheme--normal___3ABO0",
|
|
9
|
+
"recipient": "recipient__recipient___2DmZI",
|
|
10
|
+
"recipients-list-light": "recipient__recipients-list-light___Vq4op",
|
|
11
|
+
"recipient-idents": "recipient__recipient-idents___3s7rw",
|
|
12
|
+
"recipient-status-icon": "recipient__recipient-status-icon___-liGw",
|
|
13
|
+
"recipient-user": "recipient__recipient-user___1THIU",
|
|
14
|
+
"recipient-details": "recipient__recipient-details___2fZfc",
|
|
15
|
+
"avatar": "recipient__avatar___2LnIV",
|
|
16
|
+
"link-recipient-icon-circle": "recipient__link-recipient-icon-circle___3ZTU-",
|
|
17
|
+
"recipients-avatars": "recipient__recipients-avatars___1npjD",
|
|
18
|
+
"--interactive": "recipient__--interactive___160Bp",
|
|
19
|
+
"recipients-avatars--link": "recipient__recipients-avatars--link___1qeON",
|
|
20
|
+
"recipients-avatars--plusX": "recipient__recipients-avatars--plusX___3-6_l",
|
|
21
|
+
"recipients-avatars--avatar": "recipient__recipients-avatars--avatar___-owjC",
|
|
22
|
+
"spin": "recipient__spin___2tYv3",
|
|
23
|
+
"shake": "recipient__shake___TGyPp"
|
|
23
24
|
};
|
|
24
|
-
import { getDisplayName } from '../../models';
|
|
25
25
|
|
|
26
26
|
var RecipientPlusX = function RecipientPlusX(_ref, _ref2) {
|
|
27
27
|
var extraRecipients = _ref.extraRecipients;
|
|
@@ -7,23 +7,23 @@ import Typography from 'cozy-ui/transpiled/react/Typography';
|
|
|
7
7
|
import { Media, Img, Bd } from 'cozy-ui/transpiled/react/deprecated/Media';
|
|
8
8
|
import { useI18n } from 'cozy-ui/transpiled/react/providers/I18n';
|
|
9
9
|
var styles = {
|
|
10
|
-
"CozyTheme--inverted": "recipient__CozyTheme--
|
|
11
|
-
"CozyTheme--normal": "recipient__CozyTheme--
|
|
12
|
-
"recipient": "
|
|
13
|
-
"recipients-list-light": "recipient__recipients-list-
|
|
14
|
-
"recipient-idents": "recipient__recipient-
|
|
15
|
-
"recipient-status-icon": "recipient__recipient-status-
|
|
16
|
-
"recipient-user": "recipient__recipient-
|
|
17
|
-
"recipient-details": "recipient__recipient-
|
|
18
|
-
"avatar": "
|
|
19
|
-
"link-recipient-icon-circle": "recipient__link-recipient-icon-
|
|
20
|
-
"recipients-avatars": "recipient__recipients-
|
|
21
|
-
"--interactive": "recipient__--
|
|
22
|
-
"recipients-avatars--link": "recipient__recipients-avatars--
|
|
23
|
-
"recipients-avatars--plusX": "recipient__recipients-avatars--
|
|
24
|
-
"recipients-avatars--avatar": "recipient__recipients-avatars--
|
|
25
|
-
"spin": "
|
|
26
|
-
"shake": "
|
|
10
|
+
"CozyTheme--inverted": "recipient__CozyTheme--inverted___21SPM",
|
|
11
|
+
"CozyTheme--normal": "recipient__CozyTheme--normal___3ABO0",
|
|
12
|
+
"recipient": "recipient__recipient___2DmZI",
|
|
13
|
+
"recipients-list-light": "recipient__recipients-list-light___Vq4op",
|
|
14
|
+
"recipient-idents": "recipient__recipient-idents___3s7rw",
|
|
15
|
+
"recipient-status-icon": "recipient__recipient-status-icon___-liGw",
|
|
16
|
+
"recipient-user": "recipient__recipient-user___1THIU",
|
|
17
|
+
"recipient-details": "recipient__recipient-details___2fZfc",
|
|
18
|
+
"avatar": "recipient__avatar___2LnIV",
|
|
19
|
+
"link-recipient-icon-circle": "recipient__link-recipient-icon-circle___3ZTU-",
|
|
20
|
+
"recipients-avatars": "recipient__recipients-avatars___1npjD",
|
|
21
|
+
"--interactive": "recipient__--interactive___160Bp",
|
|
22
|
+
"recipients-avatars--link": "recipient__recipients-avatars--link___1qeON",
|
|
23
|
+
"recipients-avatars--plusX": "recipient__recipients-avatars--plusX___3-6_l",
|
|
24
|
+
"recipients-avatars--avatar": "recipient__recipients-avatars--avatar___-owjC",
|
|
25
|
+
"spin": "recipient__spin___2tYv3",
|
|
26
|
+
"shake": "recipient__shake___TGyPp"
|
|
27
27
|
};
|
|
28
28
|
|
|
29
29
|
var RecipientStatus = function RecipientStatus(_ref) {
|
|
@@ -3,26 +3,26 @@ var _excluded = ["instance"];
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import Avatar from 'cozy-ui/transpiled/react/Avatar';
|
|
5
5
|
import Identity from './Identity';
|
|
6
|
+
import { getDisplayName, getInitials } from '../../models';
|
|
6
7
|
var styles = {
|
|
7
|
-
"CozyTheme--inverted": "recipient__CozyTheme--
|
|
8
|
-
"CozyTheme--normal": "recipient__CozyTheme--
|
|
9
|
-
"recipient": "
|
|
10
|
-
"recipients-list-light": "recipient__recipients-list-
|
|
11
|
-
"recipient-idents": "recipient__recipient-
|
|
12
|
-
"recipient-status-icon": "recipient__recipient-status-
|
|
13
|
-
"recipient-user": "recipient__recipient-
|
|
14
|
-
"recipient-details": "recipient__recipient-
|
|
15
|
-
"avatar": "
|
|
16
|
-
"link-recipient-icon-circle": "recipient__link-recipient-icon-
|
|
17
|
-
"recipients-avatars": "recipient__recipients-
|
|
18
|
-
"--interactive": "recipient__--
|
|
19
|
-
"recipients-avatars--link": "recipient__recipients-avatars--
|
|
20
|
-
"recipients-avatars--plusX": "recipient__recipients-avatars--
|
|
21
|
-
"recipients-avatars--avatar": "recipient__recipients-avatars--
|
|
22
|
-
"spin": "
|
|
23
|
-
"shake": "
|
|
8
|
+
"CozyTheme--inverted": "recipient__CozyTheme--inverted___21SPM",
|
|
9
|
+
"CozyTheme--normal": "recipient__CozyTheme--normal___3ABO0",
|
|
10
|
+
"recipient": "recipient__recipient___2DmZI",
|
|
11
|
+
"recipients-list-light": "recipient__recipients-list-light___Vq4op",
|
|
12
|
+
"recipient-idents": "recipient__recipient-idents___3s7rw",
|
|
13
|
+
"recipient-status-icon": "recipient__recipient-status-icon___-liGw",
|
|
14
|
+
"recipient-user": "recipient__recipient-user___1THIU",
|
|
15
|
+
"recipient-details": "recipient__recipient-details___2fZfc",
|
|
16
|
+
"avatar": "recipient__avatar___2LnIV",
|
|
17
|
+
"link-recipient-icon-circle": "recipient__link-recipient-icon-circle___3ZTU-",
|
|
18
|
+
"recipients-avatars": "recipient__recipients-avatars___1npjD",
|
|
19
|
+
"--interactive": "recipient__--interactive___160Bp",
|
|
20
|
+
"recipients-avatars--link": "recipient__recipients-avatars--link___1qeON",
|
|
21
|
+
"recipients-avatars--plusX": "recipient__recipients-avatars--plusX___3-6_l",
|
|
22
|
+
"recipients-avatars--avatar": "recipient__recipients-avatars--avatar___-owjC",
|
|
23
|
+
"spin": "recipient__spin___2tYv3",
|
|
24
|
+
"shake": "recipient__shake___TGyPp"
|
|
24
25
|
};
|
|
25
|
-
import { getDisplayName, getInitials } from '../../models';
|
|
26
26
|
|
|
27
27
|
var RecipientWithoutStatus = function RecipientWithoutStatus(_ref) {
|
|
28
28
|
var instance = _ref.instance,
|
|
@@ -6,26 +6,26 @@ import Avatar from 'cozy-ui/transpiled/react/Avatar';
|
|
|
6
6
|
import LinkIcon from 'cozy-ui/transpiled/react/Icons/Link';
|
|
7
7
|
import AvatarPlusX from './AvatarPlusX';
|
|
8
8
|
import RecipientAvatar from './RecipientAvatar';
|
|
9
|
+
import { getDisplayName } from '../../models';
|
|
9
10
|
var styles = {
|
|
10
|
-
"CozyTheme--inverted": "recipient__CozyTheme--
|
|
11
|
-
"CozyTheme--normal": "recipient__CozyTheme--
|
|
12
|
-
"recipient": "
|
|
13
|
-
"recipients-list-light": "recipient__recipients-list-
|
|
14
|
-
"recipient-idents": "recipient__recipient-
|
|
15
|
-
"recipient-status-icon": "recipient__recipient-status-
|
|
16
|
-
"recipient-user": "recipient__recipient-
|
|
17
|
-
"recipient-details": "recipient__recipient-
|
|
18
|
-
"avatar": "
|
|
19
|
-
"link-recipient-icon-circle": "recipient__link-recipient-icon-
|
|
20
|
-
"recipients-avatars": "recipient__recipients-
|
|
21
|
-
"--interactive": "recipient__--
|
|
22
|
-
"recipients-avatars--link": "recipient__recipients-avatars--
|
|
23
|
-
"recipients-avatars--plusX": "recipient__recipients-avatars--
|
|
24
|
-
"recipients-avatars--avatar": "recipient__recipients-avatars--
|
|
25
|
-
"spin": "
|
|
26
|
-
"shake": "
|
|
11
|
+
"CozyTheme--inverted": "recipient__CozyTheme--inverted___21SPM",
|
|
12
|
+
"CozyTheme--normal": "recipient__CozyTheme--normal___3ABO0",
|
|
13
|
+
"recipient": "recipient__recipient___2DmZI",
|
|
14
|
+
"recipients-list-light": "recipient__recipients-list-light___Vq4op",
|
|
15
|
+
"recipient-idents": "recipient__recipient-idents___3s7rw",
|
|
16
|
+
"recipient-status-icon": "recipient__recipient-status-icon___-liGw",
|
|
17
|
+
"recipient-user": "recipient__recipient-user___1THIU",
|
|
18
|
+
"recipient-details": "recipient__recipient-details___2fZfc",
|
|
19
|
+
"avatar": "recipient__avatar___2LnIV",
|
|
20
|
+
"link-recipient-icon-circle": "recipient__link-recipient-icon-circle___3ZTU-",
|
|
21
|
+
"recipients-avatars": "recipient__recipients-avatars___1npjD",
|
|
22
|
+
"--interactive": "recipient__--interactive___160Bp",
|
|
23
|
+
"recipients-avatars--link": "recipient__recipients-avatars--link___1qeON",
|
|
24
|
+
"recipients-avatars--plusX": "recipient__recipients-avatars--plusX___3-6_l",
|
|
25
|
+
"recipients-avatars--avatar": "recipient__recipients-avatars--avatar___-owjC",
|
|
26
|
+
"spin": "recipient__spin___2tYv3",
|
|
27
|
+
"shake": "recipient__shake___TGyPp"
|
|
27
28
|
};
|
|
28
|
-
import { getDisplayName } from '../../models';
|
|
29
29
|
export var MAX_DISPLAYED_RECIPIENTS = 3;
|
|
30
30
|
/**
|
|
31
31
|
* Exclude me from the list of recipients.
|