Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/tools/RotateTool.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ export default class RotateTool extends BaseTool {
function defaultStrategy(evt) {
const { roundAngles, rotateScale } = this.configuration;
const { element, viewport, startPoints, currentPoints } = evt.detail;
const initialRotation = viewport.initialRotation;

const initialRotation = viewport.initialRotation
? viewport.initialRotation
: viewport.rotation;

// Calculate the center of the image
const rect = element.getBoundingClientRect(element);
Expand Down
19 changes: 19 additions & 0 deletions src/tools/RotateTool.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ const mockEvt = {
},
};

const forMobileMockEvt = {
detail: {
viewport: {
rotation: 50,
initialRotation: undefined,
},
},
};

describe('RotateTool.js', () => {
describe('default values', () => {
it('has a default name of "Rotate"', () => {
Expand Down Expand Up @@ -48,5 +57,15 @@ describe('RotateTool.js', () => {
instantiatedTool.dragCallback(mockEvt);
expect(external.cornerstone.setViewport).toHaveBeenCalled();
});

it('can be created on mobile device', () => {
const instantiatedTool = new RotateTool();

instantiatedTool.applyActiveStrategy = jest.fn();
external.cornerstone.setViewport = jest.fn();

instantiatedTool.dragCallback(forMobileMockEvt);
expect(external.cornerstone.setViewport).toHaveBeenCalled();
});
});
});