@atlaskit/editor-core 187.14.4 → 187.14.7

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.
@@ -26,8 +26,8 @@ import { messages } from './resizable-media-single-messages';
26
26
  import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
27
27
  import classnames from 'classnames';
28
28
  import { richMediaClassName, resizerStyles } from '@atlaskit/editor-common/styles';
29
- import { MEDIA_SINGLE_MIN_PIXEL_WIDTH, MEDIA_SINGLE_SNAP_GAP, MEDIA_SINGLE_HIGHLIGHT_GAP, calculateOffsetLeft, DEFAULT_IMAGE_WIDTH } from '@atlaskit/editor-common/media-single';
30
- import { findClosestSnap, getSnapWidth, getGuidelinesWithHighlights, generateDefaultGuidelines, generateDynamicGuidelines } from '@atlaskit/editor-common/guideline';
29
+ import { MEDIA_SINGLE_MIN_PIXEL_WIDTH, MEDIA_SINGLE_SNAP_GAP, calculateOffsetLeft, DEFAULT_IMAGE_WIDTH } from '@atlaskit/editor-common/media-single';
30
+ import { findClosestSnap, getGuidelinesWithHighlights, generateDefaultGuidelines, generateDynamicGuidelines, getGuidelineSnaps } from '@atlaskit/editor-common/guideline';
31
31
  export var resizerNextTestId = 'mediaSingle.resizerNext.testid';
32
32
 
33
33
  // TODO: Create new fixed image size event
@@ -51,12 +51,28 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
51
51
  var _this;
52
52
  _classCallCheck(this, ResizableMediaSingleNext);
53
53
  _this = _super.call(this, props);
54
- _defineProperty(_assertThisInitialized(_this), "calcNewSize", function (newWidth, stop) {
54
+ _defineProperty(_assertThisInitialized(_this), "guidelines", []);
55
+ _defineProperty(_assertThisInitialized(_this), "getAllGuidelines", function () {
55
56
  var _this$props = _this.props,
56
- layout = _this$props.layout,
57
- state = _this$props.view.state,
58
- containerWidth = _this$props.containerWidth,
57
+ view = _this$props.view,
59
58
  lineLength = _this$props.lineLength;
59
+ var defaultGuidelines = _this.getDefaultGuidelines();
60
+ // disable guidelines for nested media single node
61
+ var dynamicGuidelines = _this.isNestedNode() ? [] : generateDynamicGuidelines(view.state, lineLength, {
62
+ styles: {
63
+ lineStyle: 'dashed'
64
+ },
65
+ show: false
66
+ });
67
+ var guidelines = [].concat(_toConsumableArray(defaultGuidelines), _toConsumableArray(dynamicGuidelines));
68
+ return guidelines;
69
+ });
70
+ _defineProperty(_assertThisInitialized(_this), "calcNewSize", function (newWidth, stop) {
71
+ var _this$props2 = _this.props,
72
+ layout = _this$props2.layout,
73
+ state = _this$props2.view.state,
74
+ containerWidth = _this$props2.containerWidth,
75
+ lineLength = _this$props2.lineLength;
60
76
  var newPct = calcPctFromPx(newWidth, _this.props.lineLength) * 100;
61
77
  _this.setState({
62
78
  resizedPctWidth: newPct
@@ -95,10 +111,10 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
95
111
  return _this.insideInlineLike ? calcColumnsFromPx(offsetLeft, _this.props.lineLength, _this.props.gridSize) : 0;
96
112
  });
97
113
  _defineProperty(_assertThisInitialized(_this), "calcPxHeight", function (newWidth) {
98
- var _this$props2 = _this.props,
99
- _this$props2$width = _this$props2.width,
100
- width = _this$props2$width === void 0 ? newWidth : _this$props2$width,
101
- height = _this$props2.height;
114
+ var _this$props3 = _this.props,
115
+ _this$props3$width = _this$props3.width,
116
+ width = _this$props3$width === void 0 ? newWidth : _this$props3$width,
117
+ height = _this$props3.height;
102
118
  return Math.round(height / width * newWidth);
103
119
  });
104
120
  _defineProperty(_assertThisInitialized(_this), "saveWrapper", function (wrapper) {
@@ -119,6 +135,111 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
119
135
  tr.setMeta('mediaSinglePlugin.isResizing', isResizing);
120
136
  return dispatch(tr);
121
137
  });
138
+ _defineProperty(_assertThisInitialized(_this), "updateActiveGuidelines", function () {
139
+ var width = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
140
+ var guidelines = arguments.length > 1 ? arguments[1] : undefined;
141
+ var guidelineSnapsReference = arguments.length > 2 ? arguments[2] : undefined;
142
+ if (guidelineSnapsReference.snaps.x) {
143
+ var _findClosestSnap = findClosestSnap(width, guidelineSnapsReference.snaps.x, guidelineSnapsReference.guidelineReference, MEDIA_SINGLE_SNAP_GAP),
144
+ gap = _findClosestSnap.gap,
145
+ activeGuidelineKeys = _findClosestSnap.keys;
146
+ _this.displayGuideline(getGuidelinesWithHighlights(gap, MEDIA_SINGLE_SNAP_GAP, activeGuidelineKeys, guidelines));
147
+ }
148
+ });
149
+ _defineProperty(_assertThisInitialized(_this), "roundPixelValue", function (value) {
150
+ return Math.round(value);
151
+ });
152
+ _defineProperty(_assertThisInitialized(_this), "getHeightFromNewWidth", function (originalWidth, originalHeight, newWidth) {
153
+ return _this.roundPixelValue(originalHeight / originalWidth * newWidth);
154
+ });
155
+ _defineProperty(_assertThisInitialized(_this), "calculateSizeState", function (size, delta) {
156
+ var originalWidth = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
157
+ var originalHeight = arguments.length > 3 ? arguments[3] : undefined;
158
+ var onResizeStop = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
159
+ var calculatedWidth = _this.roundPixelValue(size.width + delta.width);
160
+ var calculatedWidthWithLayout = _this.calcNewSize(calculatedWidth, onResizeStop);
161
+ var calculatedHeightWithLayout = _this.getHeightFromNewWidth(originalWidth, originalHeight, calculatedWidth);
162
+ return {
163
+ width: calculatedWidth,
164
+ height: calculatedHeightWithLayout,
165
+ calculatedWidthWithLayout: calculatedWidthWithLayout
166
+ };
167
+ });
168
+ _defineProperty(_assertThisInitialized(_this), "selectCurrentMediaNode", function () {
169
+ // TODO: if adding !this.props.selected, it doesn't work if media single node is at top postion
170
+ if (typeof _this.props.getPos === 'function') {
171
+ var propPos = _this.props.getPos();
172
+ if (propPos !== undefined) {
173
+ setNodeSelection(_this.props.view, propPos);
174
+ }
175
+ }
176
+ });
177
+ _defineProperty(_assertThisInitialized(_this), "handleResizeStart", function () {
178
+ _this.setState({
179
+ isResizing: true
180
+ });
181
+ _this.selectCurrentMediaNode();
182
+ _this.setIsResizing(true);
183
+ // re-calucate guidelines
184
+ _this.guidelines = _this.getAllGuidelines();
185
+ return 0;
186
+ });
187
+ _defineProperty(_assertThisInitialized(_this), "handleResize", function (size, delta) {
188
+ var _this$props4 = _this.props,
189
+ originalWidth = _this$props4.width,
190
+ originalHeight = _this$props4.height,
191
+ layout = _this$props4.layout,
192
+ updateSize = _this$props4.updateSize,
193
+ lineLength = _this$props4.lineLength;
194
+ var _this$calculateSizeSt = _this.calculateSizeState(size, delta, originalWidth, originalHeight),
195
+ width = _this$calculateSizeSt.width,
196
+ height = _this$calculateSizeSt.height,
197
+ calculatedWidthWithLayout = _this$calculateSizeSt.calculatedWidthWithLayout;
198
+ var guidelineSnaps = getGuidelineSnaps(_this.guidelines, lineLength, layout);
199
+ _this.updateActiveGuidelines(width, _this.guidelines, guidelineSnaps);
200
+ _this.setState({
201
+ size: {
202
+ width: width,
203
+ height: height
204
+ },
205
+ snaps: guidelineSnaps.snaps
206
+ });
207
+ if (calculatedWidthWithLayout.layout !== layout) {
208
+ updateSize(width, calculatedWidthWithLayout.layout);
209
+ }
210
+
211
+ // TODO: Update once type updated from editor common resizer
212
+ return 0;
213
+ });
214
+ _defineProperty(_assertThisInitialized(_this), "handleResizeStop", function (size, delta) {
215
+ var _this$props5 = _this.props,
216
+ originalWidth = _this$props5.width,
217
+ originalHeight = _this$props5.height,
218
+ updateSize = _this$props5.updateSize,
219
+ dispatchAnalyticsEvent = _this$props5.dispatchAnalyticsEvent,
220
+ nodeType = _this$props5.nodeType;
221
+ var _this$calculateSizeSt2 = _this.calculateSizeState(size, delta, originalWidth, originalHeight, true),
222
+ width = _this$calculateSizeSt2.width,
223
+ height = _this$calculateSizeSt2.height,
224
+ calculatedWidthWithLayout = _this$calculateSizeSt2.calculatedWidthWithLayout;
225
+ _this.setIsResizing(false);
226
+ _this.displayGuideline([]);
227
+ if (dispatchAnalyticsEvent) {
228
+ dispatchAnalyticsEvent(getResizeAnalyticsEvent(nodeType, calculatedWidthWithLayout.width, calculatedWidthWithLayout.layout));
229
+ }
230
+ _this.setState({
231
+ isResizing: false,
232
+ size: {
233
+ width: width,
234
+ height: height
235
+ }
236
+ }, function () {
237
+ updateSize(width, calculatedWidthWithLayout.layout);
238
+ });
239
+
240
+ // TODO: Update once type updated from editor common resizer
241
+ return 0;
242
+ });
122
243
  var initialWidth = props.mediaSingleWidth || DEFAULT_IMAGE_WIDTH;
123
244
  _this.state = {
124
245
  offsetLeft: calculateOffsetLeft(_this.insideInlineLike, _this.insideLayout, _this.props.view.dom, undefined),
@@ -128,7 +249,8 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
128
249
  size: {
129
250
  width: initialWidth,
130
251
  height: _this.calcPxHeight(initialWidth)
131
- }
252
+ },
253
+ snaps: {}
132
254
  };
133
255
  return _this;
134
256
  }
@@ -142,15 +264,15 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
142
264
  _createClass(ResizableMediaSingleNext, [{
143
265
  key: "calcInitialWidth",
144
266
  value: function calcInitialWidth() {
145
- var _this$props3 = this.props,
146
- origWidth = _this$props3.width,
147
- contentWidth = _this$props3.lineLength,
148
- containerWidth = _this$props3.containerWidth;
267
+ var _this$props6 = this.props,
268
+ origWidth = _this$props6.width,
269
+ contentWidth = _this$props6.lineLength,
270
+ containerWidth = _this$props6.containerWidth;
149
271
  return Math.max(Math.min(origWidth || DEFAULT_IMAGE_WIDTH, contentWidth || containerWidth || akEditorDefaultLayoutWidth), MEDIA_SINGLE_MIN_PIXEL_WIDTH);
150
272
  }
151
273
  }, {
152
274
  key: "componentDidUpdate",
153
- value: function componentDidUpdate(prevProps, prevState) {
275
+ value: function componentDidUpdate(prevProps) {
154
276
  var offsetLeft = calculateOffsetLeft(this.insideInlineLike, this.insideLayout, this.props.view.dom, this.wrapper);
155
277
  if (offsetLeft !== this.state.offsetLeft && offsetLeft >= 0) {
156
278
  this.setState({
@@ -165,10 +287,6 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
165
287
  resizedPctWidth: this.props.pctWidth
166
288
  });
167
289
  }
168
- if (prevState.isResizing !== this.state.isResizing && this.state.isResizing) {
169
- var guidelines = this.getDefaultGuidelines();
170
- this.displayGuideline(guidelines);
171
- }
172
290
  if (prevProps.mediaSingleWidth !== this.props.mediaSingleWidth && this.props.mediaSingleWidth) {
173
291
  // update size when lineLength becomes defined later
174
292
  // ensures extended experience renders legacy image with the same size as the legacy experience
@@ -192,78 +310,14 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
192
310
  }, {
193
311
  key: "getDefaultGuidelines",
194
312
  value: function getDefaultGuidelines() {
195
- var _this$props4 = this.props,
196
- lineLength = _this$props4.lineLength,
197
- containerWidth = _this$props4.containerWidth,
198
- fullWidthMode = _this$props4.fullWidthMode;
313
+ var _this$props7 = this.props,
314
+ lineLength = _this$props7.lineLength,
315
+ containerWidth = _this$props7.containerWidth,
316
+ fullWidthMode = _this$props7.fullWidthMode;
199
317
 
200
318
  // disable guidelines for nested media single node
201
319
  return this.isNestedNode() ? [] : generateDefaultGuidelines(lineLength, containerWidth, fullWidthMode);
202
320
  }
203
-
204
- // Calculate width of media nodes for snaps based on dynamic guidelines
205
- // TODO: refactor this later, maybe use state to hold snaps array
206
- }, {
207
- key: "getSnaps",
208
- value: function getSnaps() {
209
- var _this$props5 = this.props,
210
- view = _this$props5.view,
211
- lineLength = _this$props5.lineLength;
212
- var dom = view.dom;
213
- var defaultGuidelines = this.getDefaultGuidelines();
214
- // disable guidelines for nested media single node
215
- var dynamicGuidelines = this.isNestedNode() ? [] : generateDynamicGuidelines(view.state, lineLength, {
216
- styles: {
217
- lineStyle: 'dashed'
218
- },
219
- show: false
220
- });
221
- var guidelines = [].concat(_toConsumableArray(defaultGuidelines), _toConsumableArray(dynamicGuidelines));
222
- var mediaSingleSelector = 'div.mediaSingleView-content-wrap.ProseMirror-selectednode';
223
- var _dom$getBoundingClien = dom.getBoundingClientRect(),
224
- width = _dom$getBoundingClien.width;
225
- var halfWidth = width / 2;
226
- var selectedMedia = dom.querySelector(mediaSingleSelector);
227
- if (selectedMedia) {
228
- var pixelWidth = parseFloat(selectedMedia.getAttribute('width') || '') || 0;
229
- var layout = selectedMedia.getAttribute('layout');
230
- var snap = 0;
231
- switch (layout) {
232
- case 'align-start':
233
- case 'wrap-left':
234
- snap = pixelWidth - halfWidth;
235
- break;
236
- case 'align-end':
237
- case 'wrap-right':
238
- snap = width - pixelWidth - halfWidth;
239
- break;
240
- case 'center':
241
- case 'wide':
242
- case 'full-width':
243
- snap = -pixelWidth / 2;
244
- break;
245
- // we ingnore full-width and wide
246
- default:
247
- snap = 0;
248
- }
249
- var snapWidths = getSnapWidth(guidelines, pixelWidth, snap, layout);
250
- var snapToWidths = snapWidths.map(function (s) {
251
- return s && s.width;
252
- });
253
-
254
- // update guidelines
255
- if (this.state.isResizing) {
256
- var _findClosestSnap = findClosestSnap(this.state.size.width, snapToWidths, snapWidths, MEDIA_SINGLE_HIGHLIGHT_GAP),
257
- gap = _findClosestSnap.gap,
258
- activeGuidelineKeys = _findClosestSnap.keys;
259
- this.displayGuideline(getGuidelinesWithHighlights(gap, MEDIA_SINGLE_HIGHLIGHT_GAP, activeGuidelineKeys, guidelines));
260
- }
261
- return snapToWidths.length > 0 ? {
262
- x: snapToWidths
263
- } : {};
264
- }
265
- return {};
266
- }
267
321
  }, {
268
322
  key: "wrappedLayout",
269
323
  get: function get() {
@@ -404,15 +458,15 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
404
458
  key: "render",
405
459
  value: function render() {
406
460
  var _this2 = this;
407
- var _this$props6 = this.props,
408
- origWidth = _this$props6.width,
409
- layout = _this$props6.layout,
410
- pctWidth = _this$props6.pctWidth,
411
- containerWidth = _this$props6.containerWidth,
412
- fullWidthMode = _this$props6.fullWidthMode,
413
- selected = _this$props6.selected,
414
- children = _this$props6.children,
415
- intl = _this$props6.intl;
461
+ var _this$props8 = this.props,
462
+ origWidth = _this$props8.width,
463
+ layout = _this$props8.layout,
464
+ pctWidth = _this$props8.pctWidth,
465
+ containerWidth = _this$props8.containerWidth,
466
+ fullWidthMode = _this$props8.fullWidthMode,
467
+ selected = _this$props8.selected,
468
+ children = _this$props8.children,
469
+ intl = _this$props8.intl;
416
470
  var _this$state = this.state,
417
471
  isResizing = _this$state.isResizing,
418
472
  size = _this$state.size;
@@ -425,99 +479,6 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
425
479
  }
426
480
  });
427
481
 
428
- /**
429
- * NEW REFACTOR
430
- */
431
- var roundPixelValue = function roundPixelValue(value) {
432
- return Math.round(value);
433
- };
434
- var getHeightFromNewWidth = function getHeightFromNewWidth(originalWidth, originalHeight, newWidth) {
435
- return roundPixelValue(originalHeight / originalWidth * newWidth);
436
- };
437
- var calculateSizeState = function calculateSizeState(size, delta) {
438
- var originalWidth = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
439
- var originalHeight = arguments.length > 3 ? arguments[3] : undefined;
440
- var onResizeStop = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
441
- var calculatedWidth = roundPixelValue(size.width + delta.width);
442
- var calculatedWidthWithLayout = _this2.calcNewSize(calculatedWidth, onResizeStop);
443
- var calculatedHeightWithLayout = getHeightFromNewWidth(originalWidth, originalHeight, calculatedWidth);
444
- return {
445
- width: calculatedWidth,
446
- height: calculatedHeightWithLayout,
447
- calculatedWidthWithLayout: calculatedWidthWithLayout
448
- };
449
- };
450
- var selectCurrentMediaNode = function selectCurrentMediaNode() {
451
- if (!_this2.props.selected && typeof _this2.props.getPos === 'function') {
452
- var propPos = _this2.props.getPos();
453
- if (propPos !== undefined) {
454
- setNodeSelection(_this2.props.view, propPos);
455
- }
456
- }
457
- };
458
- var handleResizeStart = function handleResizeStart() {
459
- _this2.setState({
460
- isResizing: true
461
- });
462
- selectCurrentMediaNode();
463
- _this2.setIsResizing(true);
464
-
465
- // TODO: Update once type updated from editor common resizer
466
- return 0;
467
- };
468
- var handleResize = function handleResize(size, delta) {
469
- var _this2$props = _this2.props,
470
- originalWidth = _this2$props.width,
471
- originalHeight = _this2$props.height,
472
- layout = _this2$props.layout,
473
- updateSize = _this2$props.updateSize;
474
- var _calculateSizeState = calculateSizeState(size, delta, originalWidth, originalHeight),
475
- width = _calculateSizeState.width,
476
- height = _calculateSizeState.height,
477
- calculatedWidthWithLayout = _calculateSizeState.calculatedWidthWithLayout;
478
- _this2.setState({
479
- size: {
480
- width: width,
481
- height: height
482
- }
483
- });
484
- if (calculatedWidthWithLayout.layout !== layout) {
485
- updateSize(width, calculatedWidthWithLayout.layout);
486
- }
487
-
488
- // TODO: Update once type updated from editor common resizer
489
- return 0;
490
- };
491
- var handleResizeStop = function handleResizeStop(size, delta) {
492
- var _this2$props2 = _this2.props,
493
- originalWidth = _this2$props2.width,
494
- originalHeight = _this2$props2.height,
495
- updateSize = _this2$props2.updateSize,
496
- dispatchAnalyticsEvent = _this2$props2.dispatchAnalyticsEvent,
497
- nodeType = _this2$props2.nodeType;
498
- var _calculateSizeState2 = calculateSizeState(size, delta, originalWidth, originalHeight, true),
499
- width = _calculateSizeState2.width,
500
- height = _calculateSizeState2.height,
501
- calculatedWidthWithLayout = _calculateSizeState2.calculatedWidthWithLayout;
502
- _this2.setIsResizing(false);
503
- _this2.displayGuideline([]);
504
- if (dispatchAnalyticsEvent) {
505
- dispatchAnalyticsEvent(getResizeAnalyticsEvent(nodeType, calculatedWidthWithLayout.width, calculatedWidthWithLayout.layout));
506
- }
507
- _this2.setState({
508
- isResizing: false,
509
- size: {
510
- width: width,
511
- height: height
512
- }
513
- }, function () {
514
- updateSize(width, calculatedWidthWithLayout.layout);
515
- });
516
-
517
- // TODO: Update once type updated from editor common resizer
518
- return 0;
519
- };
520
-
521
482
  // TODO: Clean up where this lives and how it gets generated
522
483
  var className = classnames(richMediaClassName, "image-".concat(layout), isResizing ? 'is-resizing' : 'not-resizing', this.props.className, {
523
484
  'not-resized': !pctWidth,
@@ -544,10 +505,10 @@ var ResizableMediaSingleNext = /*#__PURE__*/function (_React$Component) {
544
505
  snapGap: MEDIA_SINGLE_SNAP_GAP,
545
506
  enable: enable,
546
507
  width: size.width,
547
- handleResizeStart: handleResizeStart,
548
- handleResize: handleResize,
549
- handleResizeStop: handleResizeStop,
550
- snap: this.getSnaps(),
508
+ handleResizeStart: this.handleResizeStart,
509
+ handleResize: this.handleResize,
510
+ handleResizeStop: this.handleResizeStop,
511
+ snap: this.state.snaps,
551
512
  resizeRatio: nonWrappedLayouts.includes(layout) ? 2 : 1,
552
513
  "data-testid": resizerNextTestId
553
514
  }, showSizeGuide && jsx(ResizeLabel, {
@@ -1,5 +1,5 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "187.14.4";
2
+ export var version = "187.14.7";
3
3
  export var nextMajorVersion = function nextMajorVersion() {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "187.14.4",
3
+ "version": "187.14.7",
4
4
  "sideEffects": false
5
5
  }
@@ -344,11 +344,13 @@ export declare function createDefaultPreset(options: EditorPresetProps & Default
344
344
  }>>];
345
345
  actions: {
346
346
  prependToolbarButtons: import("@atlaskit/editor-plugin-hyperlink").PrependToolbarButtons;
347
- showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
348
347
  hideLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").HideLinkToolbar;
349
348
  insertLink: import("@atlaskit/editor-plugin-hyperlink").InsertLink;
350
349
  updateLink: import("@atlaskit/editor-plugin-hyperlink").UpdateLink;
351
350
  };
351
+ commands: {
352
+ showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
353
+ };
352
354
  sharedState: import("@atlaskit/editor-common/link").HyperlinkState | undefined;
353
355
  }> | undefined) => import("@atlaskit/editor-common/types").DefaultEditorPlugin<"hyperlink", {
354
356
  pluginConfiguration: HyperlinkPluginOptions | undefined;
@@ -389,11 +391,13 @@ export declare function createDefaultPreset(options: EditorPresetProps & Default
389
391
  }>>];
390
392
  actions: {
391
393
  prependToolbarButtons: import("@atlaskit/editor-plugin-hyperlink").PrependToolbarButtons;
392
- showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
393
394
  hideLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").HideLinkToolbar;
394
395
  insertLink: import("@atlaskit/editor-plugin-hyperlink").InsertLink;
395
396
  updateLink: import("@atlaskit/editor-plugin-hyperlink").UpdateLink;
396
397
  };
398
+ commands: {
399
+ showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
400
+ };
397
401
  sharedState: import("@atlaskit/editor-common/link").HyperlinkState | undefined;
398
402
  }>, ...import("@atlaskit/editor-common/types").AllEditorPresetPluginTypes[]]>;
399
403
  export declare function useDefaultPreset(props: EditorPresetProps & DefaultPresetPluginOptions): EditorPresetBuilder<[...string[], "hyperlink", "textFormatting", "width", "quickInsert", "typeAhead", "unsupportedContent", "editorDisabled", "submitEditor", "fakeTextCursor", "floatingToolbar", "selection", "codeBlock"], [(config: CodeBlockOptions, api?: import("@atlaskit/editor-common/types").PluginInjectionAPI<"codeBlock", {
@@ -703,11 +707,13 @@ export declare function useDefaultPreset(props: EditorPresetProps & DefaultPrese
703
707
  }>>];
704
708
  actions: {
705
709
  prependToolbarButtons: import("@atlaskit/editor-plugin-hyperlink").PrependToolbarButtons;
706
- showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
707
710
  hideLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").HideLinkToolbar;
708
711
  insertLink: import("@atlaskit/editor-plugin-hyperlink").InsertLink;
709
712
  updateLink: import("@atlaskit/editor-plugin-hyperlink").UpdateLink;
710
713
  };
714
+ commands: {
715
+ showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
716
+ };
711
717
  sharedState: import("@atlaskit/editor-common/link").HyperlinkState | undefined;
712
718
  }> | undefined) => import("@atlaskit/editor-common/types").DefaultEditorPlugin<"hyperlink", {
713
719
  pluginConfiguration: HyperlinkPluginOptions | undefined;
@@ -748,10 +754,12 @@ export declare function useDefaultPreset(props: EditorPresetProps & DefaultPrese
748
754
  }>>];
749
755
  actions: {
750
756
  prependToolbarButtons: import("@atlaskit/editor-plugin-hyperlink").PrependToolbarButtons;
751
- showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
752
757
  hideLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").HideLinkToolbar;
753
758
  insertLink: import("@atlaskit/editor-plugin-hyperlink").InsertLink;
754
759
  updateLink: import("@atlaskit/editor-plugin-hyperlink").UpdateLink;
755
760
  };
761
+ commands: {
762
+ showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
763
+ };
756
764
  sharedState: import("@atlaskit/editor-common/link").HyperlinkState | undefined;
757
765
  }>, ...import("@atlaskit/editor-common/types").AllEditorPresetPluginTypes[]]>[];
@@ -5,18 +5,21 @@ import { jsx } from '@emotion/react';
5
5
  import type { RichMediaLayout as MediaSingleLayout } from '@atlaskit/adf-schema';
6
6
  import type { MediaClientConfig } from '@atlaskit/media-core';
7
7
  import type { Props } from './types';
8
- import type { Dimensions } from '@atlaskit/editor-common/resizer';
8
+ import type { Dimensions, HandleResize, HandleResizeStart, Position, Snap } from '@atlaskit/editor-common/resizer';
9
9
  import type { WrappedComponentProps } from 'react-intl-next';
10
+ import type { GuidelineConfig, GuidelineSnapsReference } from '@atlaskit/editor-common/guideline';
10
11
  type State = {
11
12
  offsetLeft: number;
12
13
  isVideoFile: boolean;
13
14
  resizedPctWidth?: number;
14
15
  isResizing: boolean;
15
16
  size: Dimensions;
17
+ snaps: Snap;
16
18
  };
17
19
  export declare const resizerNextTestId = "mediaSingle.resizerNext.testid";
18
20
  type ResizableMediaSingleNextProps = Props & WrappedComponentProps;
19
21
  declare class ResizableMediaSingleNext extends React.Component<ResizableMediaSingleNextProps, State> {
22
+ private guidelines;
20
23
  constructor(props: ResizableMediaSingleNextProps);
21
24
  /**
22
25
  * Calculate media single node initial width if props.mediaSingleWidth is undefined
@@ -25,10 +28,10 @@ declare class ResizableMediaSingleNext extends React.Component<ResizableMediaSin
25
28
  * @returns initial width in pixel
26
29
  */
27
30
  calcInitialWidth(): number;
28
- componentDidUpdate(prevProps: Props, prevState: State): boolean;
31
+ componentDidUpdate(prevProps: Props): boolean;
29
32
  isNestedNode(): boolean;
30
33
  private getDefaultGuidelines;
31
- private getSnaps;
34
+ private getAllGuidelines;
32
35
  get wrappedLayout(): boolean;
33
36
  componentDidMount(): Promise<void>;
34
37
  UNSAFE_componentWillReceiveProps(nextProps: Props): void;
@@ -51,6 +54,21 @@ declare class ResizableMediaSingleNext extends React.Component<ResizableMediaSin
51
54
  private saveWrapper;
52
55
  private displayGuideline;
53
56
  private setIsResizing;
57
+ updateActiveGuidelines: (width: number | undefined, guidelines: GuidelineConfig[], guidelineSnapsReference: GuidelineSnapsReference) => void;
58
+ roundPixelValue: (value: number) => number;
59
+ getHeightFromNewWidth: (originalWidth: number, originalHeight: number, newWidth: number) => number;
60
+ calculateSizeState: (size: Position & Dimensions, delta: Dimensions, originalWidth: number | undefined, originalHeight: number, onResizeStop?: boolean) => {
61
+ width: number;
62
+ height: number;
63
+ calculatedWidthWithLayout: {
64
+ width: number | null;
65
+ layout: MediaSingleLayout;
66
+ };
67
+ };
68
+ selectCurrentMediaNode: () => void;
69
+ handleResizeStart: HandleResizeStart;
70
+ handleResize: HandleResize;
71
+ handleResizeStop: HandleResize;
54
72
  render(): jsx.JSX.Element;
55
73
  }
56
74
  export { ResizableMediaSingleNext as UnwrappedResizableMediaSingleNext };
@@ -413,11 +413,13 @@ export declare function createDefaultPreset(options: EditorPresetProps & Default
413
413
  ];
414
414
  actions: {
415
415
  prependToolbarButtons: import("@atlaskit/editor-plugin-hyperlink").PrependToolbarButtons;
416
- showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
417
416
  hideLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").HideLinkToolbar;
418
417
  insertLink: import("@atlaskit/editor-plugin-hyperlink").InsertLink;
419
418
  updateLink: import("@atlaskit/editor-plugin-hyperlink").UpdateLink;
420
419
  };
420
+ commands: {
421
+ showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
422
+ };
421
423
  sharedState: import("@atlaskit/editor-common/link").HyperlinkState | undefined;
422
424
  }> | undefined) => import("@atlaskit/editor-common/types").DefaultEditorPlugin<"hyperlink", {
423
425
  pluginConfiguration: HyperlinkPluginOptions | undefined;
@@ -465,11 +467,13 @@ export declare function createDefaultPreset(options: EditorPresetProps & Default
465
467
  ];
466
468
  actions: {
467
469
  prependToolbarButtons: import("@atlaskit/editor-plugin-hyperlink").PrependToolbarButtons;
468
- showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
469
470
  hideLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").HideLinkToolbar;
470
471
  insertLink: import("@atlaskit/editor-plugin-hyperlink").InsertLink;
471
472
  updateLink: import("@atlaskit/editor-plugin-hyperlink").UpdateLink;
472
473
  };
474
+ commands: {
475
+ showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
476
+ };
473
477
  sharedState: import("@atlaskit/editor-common/link").HyperlinkState | undefined;
474
478
  }>,
475
479
  ...import("@atlaskit/editor-common/types").AllEditorPresetPluginTypes[]
@@ -850,11 +854,13 @@ export declare function useDefaultPreset(props: EditorPresetProps & DefaultPrese
850
854
  ];
851
855
  actions: {
852
856
  prependToolbarButtons: import("@atlaskit/editor-plugin-hyperlink").PrependToolbarButtons;
853
- showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
854
857
  hideLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").HideLinkToolbar;
855
858
  insertLink: import("@atlaskit/editor-plugin-hyperlink").InsertLink;
856
859
  updateLink: import("@atlaskit/editor-plugin-hyperlink").UpdateLink;
857
860
  };
861
+ commands: {
862
+ showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
863
+ };
858
864
  sharedState: import("@atlaskit/editor-common/link").HyperlinkState | undefined;
859
865
  }> | undefined) => import("@atlaskit/editor-common/types").DefaultEditorPlugin<"hyperlink", {
860
866
  pluginConfiguration: HyperlinkPluginOptions | undefined;
@@ -902,11 +908,13 @@ export declare function useDefaultPreset(props: EditorPresetProps & DefaultPrese
902
908
  ];
903
909
  actions: {
904
910
  prependToolbarButtons: import("@atlaskit/editor-plugin-hyperlink").PrependToolbarButtons;
905
- showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
906
911
  hideLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").HideLinkToolbar;
907
912
  insertLink: import("@atlaskit/editor-plugin-hyperlink").InsertLink;
908
913
  updateLink: import("@atlaskit/editor-plugin-hyperlink").UpdateLink;
909
914
  };
915
+ commands: {
916
+ showLinkToolbar: import("@atlaskit/editor-plugin-hyperlink").ShowLinkToolbar;
917
+ };
910
918
  sharedState: import("@atlaskit/editor-common/link").HyperlinkState | undefined;
911
919
  }>,
912
920
  ...import("@atlaskit/editor-common/types").AllEditorPresetPluginTypes[]