Mailspring/app/spec/components/multiselect-list-interaction-handler-spec.ts
Ben Gotow 149b389508
Replace Babel with TypeScript compiler, switch entire app to TypeScript 🎉 (#1404)
* Switch to using Typescript instead of Babel

* Switch all es6 / jsx file extensions to ts / tsx

* Convert Utils to a TS module from module.exports style module

* Move everything from module.exports to typescript exports

* Define .d.ts files for mailspring-exports and component kit… Yes it seems this is the best option :(

* Load up on those @types

* Synthesize TS types from PropTypes for standard components

* Add types to Model classes and move constructor constants to instance vars

* 9800 => 7700 TS errors

* 7700 => 5600 TS errors

* 5600 => 5330 TS errors

* 5330 => 4866 TS errors

* 4866 => 4426 TS errors

* 4426 => 2411 TS errors

* 2411 > 1598 TS errors

* 1598 > 769 TS errors

* 769 > 129 TS errors

* 129 > 22 TS errors

* Fix runtime errors

* More runtime error fixes

* Remove support for custom .es6 file extension

* Remove a few odd remaining references to Nylas

* Don’t ship Typescript support in the compiled app for now

* Fix issues in compiled app - module resolution in TS is case sensitive?

* README updates

* Fix a few more TS errors

* Make “No Signature” option clickable + selectable

* Remove flicker when saving file and reloading keymaps

* Fix mail rule item height in preferences

* Fix missing spacing in thread sharing popover

* Fix scrollbar ticks being nested incorrectly

* Add Japanese as a manually reviewed language

* Prevent the thread list from “sticking”

* Re-use Sheet when switching root tabs, prevent sidebar from resetting

* Ensure specs run

* Update package configuration to avoid shpping types

* Turn eslint back on - we will opt-in to the TS rules one by one
2019-03-04 11:03:12 -08:00

154 lines
5 KiB
TypeScript

import MultiselectListInteractionHandler from '../../src/components/multiselect-list-interaction-handler';
import WorkspaceStore from '../../src/flux/stores/workspace-store';
import { Thread } from '../../src/flux/models/thread';
import _ from 'underscore';
describe('MultiselectListInteractionHandler', function() {
beforeEach(function() {
this.item = new Thread({ id: '123' });
this.itemFocus = new Thread({ id: 'focus' });
this.itemKeyboardFocus = new Thread({ id: 'keyboard-focus' });
this.itemAfterFocus = new Thread({ id: 'after-focus' });
this.itemAfterKeyboardFocus = new Thread({ id: 'after-keyboard-focus' });
const data = [
this.item,
this.itemFocus,
this.itemAfterFocus,
this.itemKeyboardFocus,
this.itemAfterKeyboardFocus,
];
this.onFocusItem = jasmine.createSpy('onFocusItem');
this.onSetCursorPosition = jasmine.createSpy('onSetCursorPosition');
this.dataSource = {
selection: {
toggle: jasmine.createSpy('toggle'),
expandTo: jasmine.createSpy('expandTo'),
walk: jasmine.createSpy('walk'),
},
get(idx) {
return data[idx];
},
getById(id) {
return _.find(data, item => item.id === id);
},
indexOfId(id) {
return _.findIndex(data, item => item.id === id);
},
count() {
return data.length;
},
};
this.props = {
dataSource: this.dataSource,
keyboardCursorId: 'keyboard-focus',
focusedId: 'focus',
onFocusItem: this.onFocusItem,
onSetCursorPosition: this.onSetCursorPosition,
};
this.collection = 'threads';
this.isRootSheet = true;
this.handler = new MultiselectListInteractionHandler(this.props);
spyOn(WorkspaceStore, 'topSheet').andCallFake(() => ({ root: this.isRootSheet }));
});
it('should never show focus', function() {
expect(this.handler.shouldShowFocus()).toEqual(false);
});
it('should always show the keyboard cursor', function() {
expect(this.handler.shouldShowKeyboardCursor()).toEqual(true);
});
it('should always show checkmarks', function() {
expect(this.handler.shouldShowCheckmarks()).toEqual(true);
});
describe('onClick', () =>
it('should focus list items', function() {
this.handler.onClick(this.item);
expect(this.onFocusItem).toHaveBeenCalledWith(this.item);
}));
describe('onMetaClick', function() {
it('shoud toggle selection', function() {
this.handler.onMetaClick(this.item);
expect(this.dataSource.selection.toggle).toHaveBeenCalledWith(this.item);
});
it('should focus the keyboard on the clicked item', function() {
this.handler.onMetaClick(this.item);
expect(this.onSetCursorPosition).toHaveBeenCalledWith(this.item);
});
});
describe('onShiftClick', function() {
it('should expand selection', function() {
this.handler.onShiftClick(this.item);
expect(this.dataSource.selection.expandTo).toHaveBeenCalledWith(this.item);
});
it('should focus the keyboard on the clicked item', function() {
this.handler.onShiftClick(this.item);
expect(this.onSetCursorPosition).toHaveBeenCalledWith(this.item);
});
});
describe('onEnter', () =>
it('should focus the item with the current keyboard selection', function() {
this.handler.onEnter();
expect(this.onFocusItem).toHaveBeenCalledWith(this.itemKeyboardFocus);
}));
describe('onSelectKeyboardItem (x key on keyboard)', function() {
describe('on the root view', () =>
it('should toggle the selection of the keyboard item', function() {
this.isRootSheet = true;
this.handler.onSelectKeyboardItem();
expect(this.dataSource.selection.toggle).toHaveBeenCalledWith(this.itemKeyboardFocus);
}));
describe('on the thread view', () =>
it('should toggle the selection of the focused item', function() {
this.isRootSheet = false;
this.handler.onSelectKeyboardItem();
expect(this.dataSource.selection.toggle).toHaveBeenCalledWith(this.itemFocus);
}));
});
describe('onShift', function() {
describe('on the root view', function() {
beforeEach(function() {
this.isRootSheet = true;
});
it('should shift the keyboard item', function() {
this.handler.onShift(1, {});
expect(this.onSetCursorPosition).toHaveBeenCalledWith(this.itemAfterKeyboardFocus);
});
it('should walk selection if the select option is passed', function() {
this.handler.onShift(1, { select: true });
expect(this.dataSource.selection.walk).toHaveBeenCalledWith({
current: this.itemKeyboardFocus,
next: this.itemAfterKeyboardFocus,
});
});
});
describe('on the thread view', function() {
beforeEach(function() {
this.isRootSheet = false;
});
it('should shift the focused item', function() {
this.handler.onShift(1, {});
expect(this.onFocusItem).toHaveBeenCalledWith(this.itemAfterFocus);
});
});
});
});