@atlaskit/editor-plugin-highlight 1.5.0 → 1.6.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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @atlaskit/editor-plugin-highlight
2
2
 
3
+ ## 1.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#104271](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/104271)
8
+ [`5d03a899b0c9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5d03a899b0c9) -
9
+ [ux] [ED-23155] Adds plugin state for currently selected color for highlight button
10
+
11
+ ### Patch Changes
12
+
13
+ - [#103816](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103816)
14
+ [`3fb50173376f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3fb50173376f) -
15
+ [ED-23159] Added blending styling for when highlights overlap inline comments
16
+
3
17
  ## 1.5.0
4
18
 
5
19
  ### Minor Changes
@@ -51,7 +51,7 @@ var createAnalyticsEvent = function createAnalyticsEvent(color, tr) {
51
51
  return value === previousColor;
52
52
  });
53
53
  var newColorLabel = newColorFromPalette ? newColorFromPalette.label : color;
54
- var previousColorLabel = previousColorFromPalette ? previousColorFromPalette.label : previousColor || '';
54
+ var previousColorLabel = previousColorFromPalette ? previousColorFromPalette.label : previousColor;
55
55
  return {
56
56
  action: _analytics.ACTION.FORMATTED,
57
57
  actionSubject: _analytics.ACTION_SUBJECT.TEXT,
@@ -9,6 +9,7 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
9
9
  var _safePlugin = require("@atlaskit/editor-common/safe-plugin");
10
10
  var _uiColor = require("@atlaskit/editor-common/ui-color");
11
11
  var _state = require("@atlaskit/editor-prosemirror/state");
12
+ var _color = require("./utils/color");
12
13
  var _disabled = require("./utils/disabled");
13
14
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
14
15
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
@@ -41,12 +42,10 @@ var createPlugin = exports.createPlugin = function createPlugin(_ref) {
41
42
  });
42
43
  default:
43
44
  nextState = _objectSpread(_objectSpread({}, pluginState), {}, {
45
+ activeColor: (0, _color.getActiveColor)(tr),
44
46
  disabled: (0, _disabled.getDisabledState)(newState)
45
47
  });
46
- if (pluginState && pluginState.disabled !== nextState.disabled) {
47
- return nextState;
48
- }
49
- return pluginState;
48
+ return nextState;
50
49
  }
51
50
  }
52
51
  }
@@ -10,8 +10,7 @@ var getActiveColor = exports.getActiveColor = function getActiveColor(tr) {
10
10
  $from = _ref.$from,
11
11
  $to = _ref.$to,
12
12
  $cursor = _ref.$cursor;
13
- var _ref2 = tr.doc.type.schema.marks,
14
- backgroundColor = _ref2.backgroundColor;
13
+ var backgroundColor = tr.doc.type.schema.marks.backgroundColor;
15
14
 
16
15
  // Filter out other marks
17
16
  var marks = [];
@@ -41,8 +40,8 @@ var getActiveColor = exports.getActiveColor = function getActiveColor(tr) {
41
40
  return !!mark;
42
41
  });
43
42
  // When multiple colors are selected revert back to default color
44
- if (marksWithColor.length > 1 || marksWithColor.length === 1 && marks.length > 1) {
45
- return null;
43
+ if (marksWithColor.length > 1 || marksWithColor.length === 1 && marks.length > 1 || marksWithColor.length === 0) {
44
+ return _uiColor.REMOVE_HIGHLIGHT_COLOR;
46
45
  }
47
- return marksWithColor.length ? marksWithColor[0].attrs.color : _uiColor.REMOVE_HIGHLIGHT_COLOR;
46
+ return marksWithColor[0].attrs.color;
48
47
  };
@@ -43,7 +43,7 @@ const createAnalyticsEvent = (color, tr) => {
43
43
  value
44
44
  }) => value === previousColor);
45
45
  const newColorLabel = newColorFromPalette ? newColorFromPalette.label : color;
46
- const previousColorLabel = previousColorFromPalette ? previousColorFromPalette.label : previousColor || '';
46
+ const previousColorLabel = previousColorFromPalette ? previousColorFromPalette.label : previousColor;
47
47
  return {
48
48
  action: ACTION.FORMATTED,
49
49
  actionSubject: ACTION_SUBJECT.TEXT,
@@ -1,6 +1,7 @@
1
1
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
2
2
  import { REMOVE_HIGHLIGHT_COLOR } from '@atlaskit/editor-common/ui-color';
3
3
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
4
+ import { getActiveColor } from './utils/color';
4
5
  import { getDisabledState } from './utils/disabled';
5
6
  export const highlightPluginKey = new PluginKey('highlight');
6
7
  export let HighlightPluginAction = /*#__PURE__*/function (HighlightPluginAction) {
@@ -33,12 +34,10 @@ export const createPlugin = ({
33
34
  default:
34
35
  nextState = {
35
36
  ...pluginState,
37
+ activeColor: getActiveColor(tr),
36
38
  disabled: getDisabledState(newState)
37
39
  };
38
- if (pluginState && pluginState.disabled !== nextState.disabled) {
39
- return nextState;
40
- }
41
- return pluginState;
40
+ return nextState;
42
41
  }
43
42
  }
44
43
  }
@@ -35,8 +35,8 @@ export const getActiveColor = tr => {
35
35
  });
36
36
  const marksWithColor = marks.filter(mark => !!mark);
37
37
  // When multiple colors are selected revert back to default color
38
- if (marksWithColor.length > 1 || marksWithColor.length === 1 && marks.length > 1) {
39
- return null;
38
+ if (marksWithColor.length > 1 || marksWithColor.length === 1 && marks.length > 1 || marksWithColor.length === 0) {
39
+ return REMOVE_HIGHLIGHT_COLOR;
40
40
  }
41
- return marksWithColor.length ? marksWithColor[0].attrs.color : REMOVE_HIGHLIGHT_COLOR;
41
+ return marksWithColor[0].attrs.color;
42
42
  };
@@ -45,7 +45,7 @@ var createAnalyticsEvent = function createAnalyticsEvent(color, tr) {
45
45
  return value === previousColor;
46
46
  });
47
47
  var newColorLabel = newColorFromPalette ? newColorFromPalette.label : color;
48
- var previousColorLabel = previousColorFromPalette ? previousColorFromPalette.label : previousColor || '';
48
+ var previousColorLabel = previousColorFromPalette ? previousColorFromPalette.label : previousColor;
49
49
  return {
50
50
  action: ACTION.FORMATTED,
51
51
  actionSubject: ACTION_SUBJECT.TEXT,
@@ -4,6 +4,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
4
4
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
5
5
  import { REMOVE_HIGHLIGHT_COLOR } from '@atlaskit/editor-common/ui-color';
6
6
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
7
+ import { getActiveColor } from './utils/color';
7
8
  import { getDisabledState } from './utils/disabled';
8
9
  export var highlightPluginKey = new PluginKey('highlight');
9
10
  export var HighlightPluginAction = /*#__PURE__*/function (HighlightPluginAction) {
@@ -34,12 +35,10 @@ export var createPlugin = function createPlugin(_ref) {
34
35
  });
35
36
  default:
36
37
  nextState = _objectSpread(_objectSpread({}, pluginState), {}, {
38
+ activeColor: getActiveColor(tr),
37
39
  disabled: getDisabledState(newState)
38
40
  });
39
- if (pluginState && pluginState.disabled !== nextState.disabled) {
40
- return nextState;
41
- }
42
- return pluginState;
41
+ return nextState;
43
42
  }
44
43
  }
45
44
  }
@@ -4,8 +4,7 @@ export var getActiveColor = function getActiveColor(tr) {
4
4
  $from = _ref.$from,
5
5
  $to = _ref.$to,
6
6
  $cursor = _ref.$cursor;
7
- var _ref2 = tr.doc.type.schema.marks,
8
- backgroundColor = _ref2.backgroundColor;
7
+ var backgroundColor = tr.doc.type.schema.marks.backgroundColor;
9
8
 
10
9
  // Filter out other marks
11
10
  var marks = [];
@@ -35,8 +34,8 @@ export var getActiveColor = function getActiveColor(tr) {
35
34
  return !!mark;
36
35
  });
37
36
  // When multiple colors are selected revert back to default color
38
- if (marksWithColor.length > 1 || marksWithColor.length === 1 && marks.length > 1) {
39
- return null;
37
+ if (marksWithColor.length > 1 || marksWithColor.length === 1 && marks.length > 1 || marksWithColor.length === 0) {
38
+ return REMOVE_HIGHLIGHT_COLOR;
40
39
  }
41
- return marksWithColor.length ? marksWithColor[0].attrs.color : REMOVE_HIGHLIGHT_COLOR;
40
+ return marksWithColor[0].attrs.color;
42
41
  };
@@ -1,2 +1,2 @@
1
- import type { Transaction } from '@atlaskit/editor-prosemirror/state';
2
- export declare const getActiveColor: (tr: Transaction) => string | null;
1
+ import type { ReadonlyTransaction, Transaction } from '@atlaskit/editor-prosemirror/state';
2
+ export declare const getActiveColor: (tr: Transaction | ReadonlyTransaction) => string;
@@ -1,2 +1,2 @@
1
- import type { Transaction } from '@atlaskit/editor-prosemirror/state';
2
- export declare const getActiveColor: (tr: Transaction) => string | null;
1
+ import type { ReadonlyTransaction, Transaction } from '@atlaskit/editor-prosemirror/state';
2
+ export declare const getActiveColor: (tr: Transaction | ReadonlyTransaction) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-highlight",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "Highlight plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "@atlaskit/adf-schema": "^36.10.7",
42
- "@atlaskit/editor-common": "^81.0.0",
42
+ "@atlaskit/editor-common": "^81.1.0",
43
43
  "@atlaskit/editor-palette": "1.6.0",
44
44
  "@atlaskit/editor-plugin-analytics": "^1.2.0",
45
45
  "@atlaskit/editor-plugin-primary-toolbar": "^1.1.0",