123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469 |
- var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
- describe('UndoRedo', function () {
- var id = 'testContainer';
- beforeEach(function () {
- this.$container = $('<div id="' + id + '"></div>').appendTo('body');
- });
- afterEach(function () {
- if (this.$container) {
- destroy();
- this.$container.remove();
- }
- });
- describe('core features', function () {
- describe('Array data', function () {
- describe('undo', function () {
- it('should undo single change', function () {
- handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var HOT = getInstance();
- setDataAtCell(0, 0, 'X1');
- expect(getDataAtCell(0, 0)).toBe('X1');
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('A1');
- });
- it('should undo single change on cell with validator', function (done) {
- handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var HOT = getInstance();
- setDataAtCell(0, 0, 'X1');
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('X1');
- HOT.undo();
- }, 200);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('A1');
- done();
- }, 400);
- });
- it('should undo creation of a single row', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row');
- expect(countRows()).toEqual(3);
- HOT.undo();
- expect(countRows()).toEqual(2);
- });
- it('should undo creation of multiple rows', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row', 0, 5);
- expect(countRows()).toEqual(7);
- HOT.undo();
- expect(countRows()).toEqual(2);
- });
- it('should undo creation of multiple rows with minSpareRows', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 1),
- minSpareRows: 2
- });
- expect(getData()).toEqual([['A1'], ['A2'], [null], [null]]);
- setDataAtCell(2, 0, 'A3');
- setDataAtCell(4, 0, 'A4');
- expect(getData()).toEqual([['A1'], ['A2'], ['A3'], [null], ['A4'], [null], [null]]);
- HOT.undo();
- HOT.undo();
- expect(getData()).toEqual([['A1'], ['A2'], [null], [null]]);
- });
- it('should undo removal of single row', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(3, 2)
- });
- expect(countRows()).toEqual(3);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- alter('remove_row', 1);
- expect(countRows()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A3');
- expect(getDataAtCell(1, 1)).toEqual('B3');
- HOT.undo();
- expect(countRows()).toEqual(3);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- });
- it('should undo removal of multiple rows', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(4, 2)
- });
- expect(countRows()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- expect(getDataAtCell(3, 0)).toEqual('A4');
- expect(getDataAtCell(3, 1)).toEqual('B4');
- alter('remove_row', 1, 2);
- expect(countRows()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A4');
- expect(getDataAtCell(1, 1)).toEqual('B4');
- HOT.undo();
- expect(countRows()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- expect(getDataAtCell(3, 0)).toEqual('A4');
- expect(getDataAtCell(3, 1)).toEqual('B4');
- });
- it('should undo creation of a single column (colHeaders: undefined)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 3)
- });
- expect(countCols()).toEqual(3);
- alter('insert_col');
- expect(countCols()).toEqual(4);
- HOT.undo();
- expect(countCols()).toEqual(3);
- });
- it('should undo creation of a single column (colHeaders: true)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 3),
- colHeaders: true
- });
- expect(countCols()).toEqual(3);
- expect(getColHeader()).toEqual(['A', 'B', 'C']);
- alter('insert_col');
- expect(countCols()).toEqual(4);
- expect(getColHeader()).toEqual(['A', 'B', 'C', 'D']);
- HOT.undo();
- expect(countCols()).toEqual(3);
- expect(getColHeader()).toEqual(['A', 'B', 'C']);
- });
- it('should undo creation of a single column (colHeaders: Array)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 3),
- colHeaders: ['Header1', 'Header2', 'Header3']
- });
- expect(countCols()).toEqual(3);
- expect(getColHeader()).toEqual(['Header1', 'Header2', 'Header3']);
- alter('insert_col', 1);
- expect(countCols()).toEqual(4);
- expect(getColHeader()).toEqual(['Header1', 'B', 'Header2', 'Header3']);
- HOT.undo();
- expect(countCols()).toEqual(3);
- expect(getColHeader()).toEqual(['Header1', 'Header2', 'Header3']);
- });
- it('should undo creation of multiple columns (colHeaders: undefined)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- expect(countCols()).toEqual(2);
- alter('insert_col', 1, 5);
- expect(countCols()).toEqual(7);
- HOT.undo();
- expect(countCols()).toEqual(2);
- });
- it('should undo creation of multiple columns (colHeaders: true)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2),
- colHeaders: true
- });
- expect(countCols()).toEqual(2);
- expect(getColHeader()).toEqual(['A', 'B']);
- alter('insert_col', 1, 5);
- expect(countCols()).toEqual(7);
- expect(getColHeader()).toEqual(['A', 'B', 'C', 'D', 'E', 'F', 'G']);
- HOT.undo();
- expect(countCols()).toEqual(2);
- expect(getColHeader()).toEqual(['A', 'B']);
- });
- it('should undo creation of multiple columns (colHeaders: Array)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2),
- colHeaders: ['Header1', 'Header2']
- });
- expect(countCols()).toEqual(2);
- expect(getColHeader()).toEqual(['Header1', 'Header2']);
- alter('insert_col', 1, 5);
- expect(countCols()).toEqual(7);
- expect(getColHeader()).toEqual(['Header1', 'B', 'C', 'D', 'E', 'F', 'Header2']);
- HOT.undo();
- expect(countCols()).toEqual(2);
- expect(getColHeader()).toEqual(['Header1', 'Header2']);
- });
- it('should undo creation of multiple columns with minSpareCols', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(1, 1),
- minSpareCols: 2
- });
- expect(getData()).toEqual([['A1', null, null]]);
- setDataAtCell(0, 1, 'B1');
- setDataAtCell(0, 3, 'C1');
- expect(getData()).toEqual([['A1', 'B1', null, 'C1', null, null]]);
- HOT.undo();
- HOT.undo();
- expect(getData()).toEqual([['A1', null, null]]);
- });
- it('should undo removal of single column (colHeaders: undefined)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 3)
- });
- expect(countCols()).toEqual(3);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(0, 2)).toEqual('C1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(1, 2)).toEqual('C2');
- alter('remove_col', 1);
- expect(countCols()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('C1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('C2');
- HOT.undo();
- expect(countCols()).toEqual(3);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(0, 2)).toEqual('C1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(1, 2)).toEqual('C2');
- });
- it('should undo removal of single column (colHeaders: true)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2),
- colHeaders: true
- });
- expect(countCols()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getColHeader()).toEqual(['A', 'B']);
- alter('remove_col');
- expect(countCols()).toEqual(1);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toBeNull();
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toBeNull();
- expect(getColHeader()).toEqual(['A']);
- HOT.undo();
- expect(countCols()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getColHeader()).toEqual(['A', 'B']);
- });
- it('should undo removal of single column (colHeaders: Array)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2),
- colHeaders: ['Header1', 'Header2']
- });
- expect(countCols()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getColHeader()).toEqual(['Header1', 'Header2']);
- alter('remove_col');
- expect(countCols()).toEqual(1);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toBeNull();
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toBeNull();
- expect(getColHeader()).toEqual(['Header1']);
- HOT.undo();
- expect(countCols()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getColHeader()).toEqual(['Header1', 'Header2']);
- });
- it('should undo removal of multiple columns (colHeaders: undefined)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 4)
- });
- expect(countCols()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(0, 2)).toEqual('C1');
- expect(getDataAtCell(0, 3)).toEqual('D1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(1, 2)).toEqual('C2');
- expect(getDataAtCell(1, 3)).toEqual('D2');
- alter('remove_col', 1, 2);
- expect(countCols()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('D1');
- expect(getDataAtCell(0, 2)).toBeNull();
- expect(getDataAtCell(0, 3)).toBeNull();
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('D2');
- expect(getDataAtCell(1, 2)).toBeNull();
- expect(getDataAtCell(1, 3)).toBeNull();
- HOT.undo();
- expect(countCols()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(0, 2)).toEqual('C1');
- expect(getDataAtCell(0, 3)).toEqual('D1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(1, 2)).toEqual('C2');
- expect(getDataAtCell(1, 3)).toEqual('D2');
- });
- it('should undo removal of multiple columns (colHeaders: true)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 4),
- colHeaders: true
- });
- expect(countCols()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(0, 2)).toEqual('C1');
- expect(getDataAtCell(0, 3)).toEqual('D1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(1, 2)).toEqual('C2');
- expect(getDataAtCell(1, 3)).toEqual('D2');
- expect(getColHeader()).toEqual(['A', 'B', 'C', 'D']);
- alter('remove_col', 1, 3);
- expect(countCols()).toEqual(1);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toBeNull();
- expect(getDataAtCell(0, 2)).toBeNull();
- expect(getDataAtCell(0, 3)).toBeNull();
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toBeNull();
- expect(getDataAtCell(1, 2)).toBeNull();
- expect(getDataAtCell(1, 3)).toBeNull();
- expect(getColHeader()).toEqual(['A']);
- HOT.undo();
- expect(countCols()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(0, 2)).toEqual('C1');
- expect(getDataAtCell(0, 3)).toEqual('D1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(1, 2)).toEqual('C2');
- expect(getDataAtCell(1, 3)).toEqual('D2');
- expect(getColHeader()).toEqual(['A', 'B', 'C', 'D']);
- });
- it('should undo removal of multiple columns (colHeaders: Array)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 4),
- colHeaders: ['Header1', 'Header2', 'Header3', 'Header4']
- });
- expect(countCols()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(0, 2)).toEqual('C1');
- expect(getDataAtCell(0, 3)).toEqual('D1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(1, 2)).toEqual('C2');
- expect(getDataAtCell(1, 3)).toEqual('D2');
- expect(getColHeader()).toEqual(['Header1', 'Header2', 'Header3', 'Header4']);
- alter('remove_col', 1, 2);
- expect(countCols()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('D1');
- expect(getDataAtCell(0, 2)).toBeNull();
- expect(getDataAtCell(0, 3)).toBeNull();
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('D2');
- expect(getDataAtCell(1, 2)).toBeNull();
- expect(getDataAtCell(1, 3)).toBeNull();
- expect(getColHeader()).toEqual(['Header1', 'Header4']);
- HOT.undo();
- expect(countCols()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(0, 2)).toEqual('C1');
- expect(getDataAtCell(0, 3)).toEqual('D1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(1, 2)).toEqual('C2');
- expect(getDataAtCell(1, 3)).toEqual('D2');
- expect(getColHeader()).toEqual(['Header1', 'Header2', 'Header3', 'Header4']);
- });
- it('should undo removal of multiple columns (with a used manualColumnMove)', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 7),
- manualColumnMove: [3, 2, 0, 6, 1, 5, 4]
- });
- expect(countCols()).toEqual(7);
- expect(getDataAtRow(0)).toEqual(['D1', 'C1', 'A1', 'G1', 'B1', 'F1', 'E1']);
- alter('remove_col', 1, 3);
- expect(countCols()).toEqual(4);
- expect(getDataAtRow(0)).toEqual(['D1', 'B1', 'F1', 'E1']);
- // HOT.undo();
- //
- // expect(countCols()).toEqual(7);
- // expect(getDataAtRow(0)).toEqual(['D1', 'C1', 'A1', 'G1', 'B1', 'F1', 'E1']);
- });
- it('should undo multiple changes', function () {
- handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var HOT = getInstance();
- setDataAtCell(0, 0, 'X1');
- setDataAtCell(1, 0, 'X2');
- setDataAtCell(0, 1, 'Y1');
- setDataAtCell(1, 1, 'Y2');
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('Y2');
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('A2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('A1');
- expect(getDataAtCell(1, 0)).toBe('A2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('A1');
- expect(getDataAtCell(1, 0)).toBe('A2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- });
- it('should undo multiple changes in cells with validators', function (done) {
- handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var HOT = getInstance();
- setDataAtCell(0, 0, 'X1');
- setDataAtCell(1, 0, 'X2');
- setDataAtCell(0, 1, 'Y1');
- setDataAtCell(1, 1, 'Y2');
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('Y2');
- HOT.undo();
- }, 200);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.undo();
- }, 400);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.undo();
- }, 600);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('A2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.undo();
- }, 800);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('A1');
- expect(getDataAtCell(1, 0)).toBe('A2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.undo();
- }, 1000);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('A1');
- expect(getDataAtCell(1, 0)).toBe('A2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- done();
- }, 1200);
- });
- it('should undo multiple row creations', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row');
- alter('insert_row');
- alter('insert_row');
- alter('insert_row');
- expect(countRows()).toEqual(6);
- HOT.undo();
- expect(countRows()).toEqual(5);
- HOT.undo();
- expect(countRows()).toEqual(4);
- HOT.undo();
- expect(countRows()).toEqual(3);
- HOT.undo();
- expect(countRows()).toEqual(2);
- HOT.undo();
- expect(countRows()).toEqual(2);
- });
- it('should undo multiple row removals', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(4, 2)
- });
- expect(countRows()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- expect(getDataAtCell(3, 0)).toEqual('A4');
- expect(getDataAtCell(3, 1)).toEqual('B4');
- alter('remove_row');
- alter('remove_row');
- alter('remove_row');
- expect(countRows()).toEqual(1);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- HOT.undo();
- expect(countRows()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- HOT.undo();
- expect(countRows()).toEqual(3);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- HOT.undo();
- expect(countRows()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- expect(getDataAtCell(3, 0)).toEqual('A4');
- expect(getDataAtCell(3, 1)).toEqual('B4');
- HOT.undo();
- expect(countRows()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- expect(getDataAtCell(3, 0)).toEqual('A4');
- expect(getDataAtCell(3, 1)).toEqual('B4');
- });
- it('should undo changes only for table where the change actually took place', function () {
- this.$container2 = $('<div id="' + id + '-2"></div>').appendTo('body');
- var hot1 = handsontable({
- data: [[1], [2], [3]]
- });
- this.$container2.handsontable({
- data: [['A'], ['B'], ['C']]
- });
- var hot2 = this.$container2.handsontable('getInstance');
- hot1.setDataAtCell(0, 0, 4);
- expect(hot1.getDataAtCell(0, 0)).toEqual(4);
- expect(hot2.getDataAtCell(0, 0)).toEqual('A');
- hot2.undo();
- expect(hot2.getDataAtCell(0, 0)).toEqual('A');
- expect(hot1.getDataAtCell(0, 0)).toEqual(4);
- hot1.undo();
- expect(hot2.getDataAtCell(0, 0)).toEqual('A');
- expect(hot1.getDataAtCell(0, 0)).toEqual(1);
- hot2.destroy();
- this.$container2.remove();
- });
- });
- describe('redo', function () {
- it('should redo single change', function () {
- handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var HOT = getInstance();
- setDataAtCell(0, 0, 'new value');
- expect(getDataAtCell(0, 0)).toBe('new value');
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('A1');
- HOT.redo();
- expect(getDataAtCell(0, 0)).toBe('new value');
- });
- it('should redo single change in cell with validator', function (done) {
- handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var HOT = getInstance();
- setDataAtCell(0, 0, 'new value');
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('new value');
- HOT.undo();
- }, 200);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('A1');
- HOT.redo();
- }, 400);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('new value');
- done();
- }, 600);
- });
- it('should redo creation of a single row', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row');
- expect(countRows()).toEqual(3);
- HOT.undo();
- expect(countRows()).toEqual(2);
- HOT.redo();
- expect(countRows()).toEqual(3);
- });
- it('should redo creation of multiple rows', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row', 0, 5);
- expect(countRows()).toEqual(7);
- HOT.undo();
- expect(countRows()).toEqual(2);
- HOT.redo();
- expect(countRows()).toEqual(7);
- });
- it('should redo removal of single row', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(3, 2)
- });
- expect(countRows()).toEqual(3);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- alter('remove_row', 1);
- expect(countRows()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A3');
- expect(getDataAtCell(1, 1)).toEqual('B3');
- HOT.undo();
- expect(countRows()).toEqual(3);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- HOT.redo();
- expect(countRows()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A3');
- expect(getDataAtCell(1, 1)).toEqual('B3');
- });
- it('should redo removal of multiple rows', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(4, 2)
- });
- expect(countRows()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- expect(getDataAtCell(3, 0)).toEqual('A4');
- expect(getDataAtCell(3, 1)).toEqual('B4');
- alter('remove_row', 1, 2);
- expect(countRows()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A4');
- expect(getDataAtCell(1, 1)).toEqual('B4');
- HOT.undo();
- expect(countRows()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- expect(getDataAtCell(3, 0)).toEqual('A4');
- expect(getDataAtCell(3, 1)).toEqual('B4');
- HOT.redo();
- expect(countRows()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A4');
- expect(getDataAtCell(1, 1)).toEqual('B4');
- });
- it('should redo creation of a single column', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- expect(countCols()).toEqual(2);
- alter('insert_col');
- expect(countCols()).toEqual(3);
- HOT.undo();
- expect(countCols()).toEqual(2);
- HOT.redo();
- expect(countCols()).toEqual(3);
- });
- it('should redo creation of multiple columns', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- expect(countCols()).toEqual(2);
- alter('insert_col', 1, 5);
- expect(countCols()).toEqual(7);
- HOT.undo();
- expect(countCols()).toEqual(2);
- HOT.redo();
- expect(countCols()).toEqual(7);
- });
- it('should redo removal of single column', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- expect(countCols()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- alter('remove_col');
- expect(countCols()).toEqual(1);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toBeNull();
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toBeNull();
- HOT.undo();
- expect(countCols()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- HOT.redo();
- expect(countCols()).toEqual(1);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toBeNull();
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toBeNull();
- });
- it('should redo removal of multiple columns', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 4)
- });
- expect(countCols()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(0, 2)).toEqual('C1');
- expect(getDataAtCell(0, 3)).toEqual('D1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(1, 2)).toEqual('C2');
- expect(getDataAtCell(1, 3)).toEqual('D2');
- alter('remove_col', 1, 3);
- expect(countCols()).toEqual(1);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toBeNull();
- expect(getDataAtCell(0, 2)).toBeNull();
- expect(getDataAtCell(0, 3)).toBeNull();
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toBeNull();
- expect(getDataAtCell(1, 2)).toBeNull();
- expect(getDataAtCell(1, 3)).toBeNull();
- HOT.undo();
- expect(countCols()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(0, 2)).toEqual('C1');
- expect(getDataAtCell(0, 3)).toEqual('D1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(1, 2)).toEqual('C2');
- expect(getDataAtCell(1, 3)).toEqual('D2');
- HOT.redo();
- expect(countCols()).toEqual(1);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toBeNull();
- expect(getDataAtCell(0, 2)).toBeNull();
- expect(getDataAtCell(0, 3)).toBeNull();
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toBeNull();
- expect(getDataAtCell(1, 2)).toBeNull();
- expect(getDataAtCell(1, 3)).toBeNull();
- });
- it('should redo multiple changes', function () {
- handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var HOT = getInstance();
- setDataAtCell(0, 0, 'X1');
- setDataAtCell(1, 0, 'X2');
- setDataAtCell(0, 1, 'Y1');
- setDataAtCell(1, 1, 'Y2');
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('Y2');
- HOT.undo();
- HOT.undo();
- HOT.undo();
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('A1');
- expect(getDataAtCell(1, 0)).toBe('A2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.redo();
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('A2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.redo();
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.redo();
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.redo();
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('Y2');
- HOT.redo();
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('Y2');
- });
- it('should redo multiple changes in cell with validator', function (done) {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- setDataAtCell(0, 0, 'X1');
- setDataAtCell(1, 0, 'X2');
- setDataAtCell(0, 1, 'Y1');
- setDataAtCell(1, 1, 'Y2');
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('Y2');
- HOT.undo();
- }, 200);
- setTimeout(function () {
- HOT.undo();
- }, 400);
- setTimeout(function () {
- HOT.undo();
- }, 600);
- setTimeout(function () {
- HOT.undo();
- }, 800);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('A1');
- expect(getDataAtCell(1, 0)).toBe('A2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.redo();
- }, 1000);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('A2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.redo();
- }, 1200);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('B1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.redo();
- }, 1400);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('B2');
- HOT.redo();
- }, 1600);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('Y2');
- HOT.redo();
- }, 1800);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('X1');
- expect(getDataAtCell(1, 0)).toBe('X2');
- expect(getDataAtCell(0, 1)).toBe('Y1');
- expect(getDataAtCell(1, 1)).toBe('Y2');
- done();
- }, 2000);
- });
- it('should redo multiple row creations', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row');
- alter('insert_row');
- alter('insert_row');
- alter('insert_row');
- expect(countRows()).toEqual(6);
- HOT.undo();
- HOT.undo();
- HOT.undo();
- HOT.undo();
- expect(countRows()).toEqual(2);
- HOT.redo();
- expect(countRows()).toEqual(3);
- HOT.redo();
- expect(countRows()).toEqual(4);
- HOT.redo();
- expect(countRows()).toEqual(5);
- HOT.redo();
- expect(countRows()).toEqual(6);
- HOT.redo();
- expect(countRows()).toEqual(6);
- });
- it('should undo multiple row removals', function () {
- var HOT = handsontable({
- data: Handsontable.helper.createSpreadsheetData(4, 2)
- });
- expect(countRows()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- expect(getDataAtCell(3, 0)).toEqual('A4');
- expect(getDataAtCell(3, 1)).toEqual('B4');
- alter('remove_row');
- alter('remove_row');
- alter('remove_row');
- expect(countRows()).toEqual(1);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- HOT.undo();
- HOT.undo();
- HOT.undo();
- expect(countRows()).toEqual(4);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- expect(getDataAtCell(3, 0)).toEqual('A4');
- expect(getDataAtCell(3, 1)).toEqual('B4');
- HOT.redo();
- expect(countRows()).toEqual(3);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- expect(getDataAtCell(2, 0)).toEqual('A3');
- expect(getDataAtCell(2, 1)).toEqual('B3');
- HOT.redo();
- expect(countRows()).toEqual(2);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- expect(getDataAtCell(1, 0)).toEqual('A2');
- expect(getDataAtCell(1, 1)).toEqual('B2');
- HOT.redo();
- expect(countRows()).toEqual(1);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- HOT.redo();
- expect(countRows()).toEqual(1);
- expect(getDataAtCell(0, 0)).toEqual('A1');
- expect(getDataAtCell(0, 1)).toEqual('B1');
- });
- it('should redo changes only for table where the change actually took place', function () {
- this.$container2 = $('<div id="' + id + '-2"></div>').appendTo('body');
- var hot1 = handsontable({
- data: [[1], [2], [3]]
- });
- this.$container2.handsontable({
- data: [['A'], ['B'], ['C']]
- });
- var hot2 = this.$container2.handsontable('getInstance');
- hot1.setDataAtCell(0, 0, 4);
- expect(hot1.getDataAtCell(0, 0)).toEqual(4);
- expect(hot2.getDataAtCell(0, 0)).toEqual('A');
- hot1.undo();
- expect(hot1.getDataAtCell(0, 0)).toEqual(1);
- expect(hot2.getDataAtCell(0, 0)).toEqual('A');
- hot2.redo();
- expect(hot1.getDataAtCell(0, 0)).toEqual(1);
- expect(hot2.getDataAtCell(0, 0)).toEqual('A');
- hot1.redo();
- expect(hot1.getDataAtCell(0, 0)).toEqual(4);
- expect(hot2.getDataAtCell(0, 0)).toEqual('A');
- hot2.destroy();
- this.$container2.remove();
- });
- });
- });
- describe('Object data', function () {
- function createObjectData() {
- return [{ name: 'Timothy', surname: 'Dalton' }, { name: 'Sean', surname: 'Connery' }, { name: 'Roger', surname: 'Moore' }];
- }
- describe('undo', function () {
- it('should undo single change', function () {
- handsontable({
- data: createObjectData()
- });
- var HOT = getInstance();
- setDataAtRowProp(0, 0, 'Pearce');
- expect(getDataAtRowProp(0, 0)).toBe('Pearce');
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('Timothy');
- });
- it('should undo single change in cell with validator', function (done) {
- handsontable({
- data: createObjectData()
- });
- var HOT = getInstance();
- setDataAtRowProp(0, 0, 'Pearce');
- setTimeout(function () {
- expect(getDataAtRowProp(0, 0)).toBe('Pearce');
- HOT.undo();
- }, 200);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('Timothy');
- done();
- }, 400);
- });
- it('should undo creation of a single row', function () {
- var HOT = handsontable({
- data: createObjectData().slice(0, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row');
- expect(countRows()).toEqual(3);
- HOT.undo();
- expect(countRows()).toEqual(2);
- });
- it('should undo creation of multiple rows', function () {
- var HOT = handsontable({
- data: createObjectData().slice(0, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row', 0, 5);
- expect(countRows()).toEqual(7);
- HOT.undo();
- expect(countRows()).toEqual(2);
- });
- it('should undo removal of single row', function () {
- var HOT = handsontable({
- data: createObjectData().slice(0, 2)
- });
- expect(countRows()).toEqual(2);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- alter('remove_row');
- expect(countRows()).toEqual(1);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBeNull();
- expect(getDataAtRowProp(1, 'surname')).toBeNull();
- HOT.undo();
- expect(countRows()).toEqual(2);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- });
- it('should undo removal of multiple rows', function () {
- var HOT = handsontable({
- data: createObjectData()
- });
- expect(countRows()).toEqual(3);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- expect(getDataAtRowProp(2, 'name')).toEqual('Roger');
- expect(getDataAtRowProp(2, 'surname')).toEqual('Moore');
- alter('remove_row', 1, 2);
- expect(countRows()).toEqual(1);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBeNull();
- expect(getDataAtRowProp(1, 'surname')).toBeNull();
- expect(getDataAtRowProp(2, 'name')).toBeNull();
- expect(getDataAtRowProp(2, 'surname')).toBeNull();
- HOT.undo();
- expect(countRows()).toEqual(3);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- expect(getDataAtRowProp(2, 'name')).toEqual('Roger');
- expect(getDataAtRowProp(2, 'surname')).toEqual('Moore');
- });
- it('should undo multiple changes', function () {
- handsontable({
- data: createObjectData().slice(0, 2)
- });
- var HOT = getInstance();
- setDataAtRowProp(0, 'name', 'Pierce');
- setDataAtRowProp(0, 'surname', 'Brosnan');
- setDataAtRowProp(1, 'name', 'Daniel');
- setDataAtRowProp(1, 'surname', 'Craig');
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Craig');
- HOT.undo();
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.undo();
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.undo();
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.undo();
- expect(getDataAtRowProp(0, 'name')).toBe('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toBe('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.undo();
- expect(getDataAtRowProp(0, 'name')).toBe('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toBe('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- });
- it('should undo multiple changes in cells with validators', function (done) {
- handsontable({
- data: createObjectData().slice(0, 2)
- });
- var HOT = getInstance();
- setDataAtRowProp(0, 'name', 'Pierce');
- setDataAtRowProp(0, 'surname', 'Brosnan');
- setDataAtRowProp(1, 'name', 'Daniel');
- setDataAtRowProp(1, 'surname', 'Craig');
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Craig');
- HOT.undo();
- }, 200);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.undo();
- }, 400);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.undo();
- }, 600);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.undo();
- }, 800);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toBe('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.undo();
- }, 1000);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toBe('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- done();
- }, 1200);
- });
- it('should undo multiple row creations', function () {
- var HOT = handsontable({
- data: createObjectData().slice(0, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row');
- alter('insert_row');
- alter('insert_row');
- alter('insert_row');
- expect(countRows()).toEqual(6);
- HOT.undo();
- expect(countRows()).toEqual(5);
- HOT.undo();
- expect(countRows()).toEqual(4);
- HOT.undo();
- expect(countRows()).toEqual(3);
- HOT.undo();
- expect(countRows()).toEqual(2);
- HOT.undo();
- expect(countRows()).toEqual(2);
- });
- it('should undo multiple row removals', function () {
- var HOT = handsontable({
- data: createObjectData()
- });
- expect(countRows()).toEqual(3);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- expect(getDataAtRowProp(2, 'name')).toEqual('Roger');
- expect(getDataAtRowProp(2, 'surname')).toEqual('Moore');
- alter('remove_row');
- alter('remove_row');
- expect(countRows()).toEqual(1);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- HOT.undo();
- expect(countRows()).toEqual(2);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- HOT.undo();
- expect(countRows()).toEqual(3);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- expect(getDataAtRowProp(2, 'name')).toEqual('Roger');
- expect(getDataAtRowProp(2, 'surname')).toEqual('Moore');
- HOT.undo();
- expect(countRows()).toEqual(3);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- expect(getDataAtRowProp(2, 'name')).toEqual('Roger');
- expect(getDataAtRowProp(2, 'surname')).toEqual('Moore');
- });
- });
- describe('redo', function () {
- it('should redo single change', function () {
- handsontable({
- data: createObjectData()
- });
- var HOT = getInstance();
- setDataAtRowProp(0, 0, 'Pearce');
- expect(getDataAtRowProp(0, 0)).toBe('Pearce');
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('Timothy');
- HOT.redo();
- expect(getDataAtRowProp(0, 0)).toBe('Pearce');
- });
- it('should redo single change in cell with validator', function (done) {
- handsontable({
- data: createObjectData()
- });
- var HOT = getInstance();
- setDataAtRowProp(0, 0, 'Pearce');
- setTimeout(function () {
- expect(getDataAtRowProp(0, 0)).toBe('Pearce');
- HOT.undo();
- }, 200);
- setTimeout(function () {
- expect(getDataAtCell(0, 0)).toBe('Timothy');
- HOT.redo();
- }, 400);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 0)).toBe('Pearce');
- done();
- }, 600);
- });
- it('should redo creation of a single row', function () {
- var HOT = handsontable({
- data: createObjectData().slice(0, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row');
- expect(countRows()).toEqual(3);
- HOT.undo();
- expect(countRows()).toEqual(2);
- HOT.redo();
- expect(countRows()).toEqual(3);
- });
- it('should redo creation of multiple rows', function () {
- var HOT = handsontable({
- data: createObjectData().slice(0, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row', 0, 5);
- expect(countRows()).toEqual(7);
- HOT.undo();
- expect(countRows()).toEqual(2);
- HOT.redo();
- expect(countRows()).toEqual(7);
- });
- it('should redo removal of single row', function () {
- var HOT = handsontable({
- data: createObjectData().slice(0, 2)
- });
- expect(countRows()).toEqual(2);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- alter('remove_row');
- expect(countRows()).toEqual(1);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBeNull();
- expect(getDataAtRowProp(1, 'surname')).toBeNull();
- HOT.undo();
- expect(countRows()).toEqual(2);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- HOT.redo();
- expect(countRows()).toEqual(1);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBeNull();
- expect(getDataAtRowProp(1, 'surname')).toBeNull();
- });
- it('should redo removal of multiple rows', function () {
- var HOT = handsontable({
- data: createObjectData()
- });
- expect(countRows()).toEqual(3);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- expect(getDataAtRowProp(2, 'name')).toEqual('Roger');
- expect(getDataAtRowProp(2, 'surname')).toEqual('Moore');
- alter('remove_row', 1, 2);
- expect(countRows()).toEqual(1);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBeNull();
- expect(getDataAtRowProp(1, 'surname')).toBeNull();
- expect(getDataAtRowProp(2, 'name')).toBeNull();
- expect(getDataAtRowProp(2, 'surname')).toBeNull();
- HOT.undo();
- expect(countRows()).toEqual(3);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- expect(getDataAtRowProp(2, 'name')).toEqual('Roger');
- expect(getDataAtRowProp(2, 'surname')).toEqual('Moore');
- HOT.redo();
- expect(countRows()).toEqual(1);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBeNull();
- expect(getDataAtRowProp(1, 'surname')).toBeNull();
- expect(getDataAtRowProp(2, 'name')).toBeNull();
- expect(getDataAtRowProp(2, 'surname')).toBeNull();
- });
- it('should redo multiple changes', function () {
- handsontable({
- data: createObjectData().slice(0, 2)
- });
- var HOT = getInstance();
- setDataAtRowProp(0, 'name', 'Pierce');
- setDataAtRowProp(0, 'surname', 'Brosnan');
- setDataAtRowProp(1, 'name', 'Daniel');
- setDataAtRowProp(1, 'surname', 'Craig');
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Craig');
- HOT.undo();
- HOT.undo();
- HOT.undo();
- HOT.undo();
- expect(getDataAtRowProp(0, 'name')).toBe('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toBe('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.redo();
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.redo();
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.redo();
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.redo();
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Craig');
- HOT.redo();
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Craig');
- });
- it('should redo multiple changes in cells with validators', function (done) {
- handsontable({
- data: createObjectData().slice(0, 2)
- });
- var HOT = getInstance();
- setDataAtRowProp(0, 'name', 'Pierce');
- setDataAtRowProp(0, 'surname', 'Brosnan');
- setDataAtRowProp(1, 'name', 'Daniel');
- setDataAtRowProp(1, 'surname', 'Craig');
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Craig');
- HOT.undo();
- }, 200);
- setTimeout(function () {
- HOT.undo();
- }, 400);
- setTimeout(function () {
- HOT.undo();
- }, 600);
- setTimeout(function () {
- HOT.undo();
- }, 800);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toBe('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.redo();
- }, 1000);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Dalton');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.redo();
- }, 1200);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Sean');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.redo();
- }, 1400);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Connery');
- HOT.redo();
- }, 1600);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Craig');
- HOT.redo();
- }, 1800);
- setTimeout(function () {
- expect(getDataAtRowProp(0, 'name')).toBe('Pierce');
- expect(getDataAtRowProp(0, 'surname')).toBe('Brosnan');
- expect(getDataAtRowProp(1, 'name')).toBe('Daniel');
- expect(getDataAtRowProp(1, 'surname')).toBe('Craig');
- done();
- }, 2000);
- });
- it('should redo multiple row creations', function () {
- var HOT = handsontable({
- data: createObjectData().slice(0, 2)
- });
- expect(countRows()).toEqual(2);
- alter('insert_row');
- alter('insert_row');
- alter('insert_row');
- alter('insert_row');
- expect(countRows()).toEqual(6);
- HOT.undo();
- HOT.undo();
- HOT.undo();
- HOT.undo();
- expect(countRows()).toEqual(2);
- HOT.redo();
- expect(countRows()).toEqual(3);
- HOT.redo();
- expect(countRows()).toEqual(4);
- HOT.redo();
- expect(countRows()).toEqual(5);
- HOT.redo();
- expect(countRows()).toEqual(6);
- HOT.redo();
- expect(countRows()).toEqual(6);
- });
- it('should undo multiple row removals', function () {
- var HOT = handsontable({
- data: createObjectData()
- });
- expect(countRows()).toEqual(3);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- expect(getDataAtRowProp(2, 'name')).toEqual('Roger');
- expect(getDataAtRowProp(2, 'surname')).toEqual('Moore');
- alter('remove_row');
- alter('remove_row');
- expect(countRows()).toEqual(1);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- HOT.undo();
- HOT.undo();
- HOT.undo();
- expect(countRows()).toEqual(3);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- expect(getDataAtRowProp(2, 'name')).toEqual('Roger');
- expect(getDataAtRowProp(2, 'surname')).toEqual('Moore');
- HOT.redo();
- expect(countRows()).toEqual(2);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- expect(getDataAtRowProp(1, 'name')).toEqual('Sean');
- expect(getDataAtRowProp(1, 'surname')).toEqual('Connery');
- HOT.redo();
- expect(countRows()).toEqual(1);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- HOT.redo();
- expect(countRows()).toEqual(1);
- expect(getDataAtRowProp(0, 'name')).toEqual('Timothy');
- expect(getDataAtRowProp(0, 'surname')).toEqual('Dalton');
- });
- });
- });
- });
- describe('plugin features', function () {
- describe('cell alignment', function () {
- it('should undo a sequence of aligning cells', function () {
- var hot = handsontable({
- data: Handsontable.helper.createSpreadsheetData(9, 9),
- contextMenu: true,
- colWidths: [50, 50, 50, 50, 50, 50, 50, 50, 50],
- rowHeights: [50, 50, 50, 50, 50, 50, 50, 50, 50]
- });
- // top 3 rows center
- selectCell(0, 0, 2, 8);
- hot.getPlugin('contextMenu').executeCommand('alignment:center');
- // middle 3 rows unchanged - left
- // bottom 3 rows right
- selectCell(6, 0, 8, 8);
- hot.getPlugin('contextMenu').executeCommand('alignment:right');
- // left 3 columns - middle
- selectCell(0, 0, 8, 2);
- hot.getPlugin('contextMenu').executeCommand('alignment:middle');
- // middle 3 columns unchanged - top
- // right 3 columns - bottom
- selectCell(0, 6, 8, 8);
- hot.getPlugin('contextMenu').executeCommand('alignment:bottom');
- var cellMeta = hot.getCellMeta(0, 0);
- expect(cellMeta.className.indexOf('htCenter')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htMiddle')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(0, 7);
- expect(cellMeta.className.indexOf('htCenter')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htBottom')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(5, 1);
- expect(cellMeta.className.indexOf('htMiddle')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(5, 7);
- expect(cellMeta.className.indexOf('htBottom')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(7, 1);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htMiddle')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(7, 5);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(7, 7);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htBottom')).toBeGreaterThan(-1);
- hot.undo();
- cellMeta = hot.getCellMeta(0, 7);
- expect(cellMeta.className.indexOf('htCenter')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htBottom')).toEqual(-1);
- cellMeta = hot.getCellMeta(5, 7);
- expect(cellMeta.className.indexOf('htBottom')).toEqual(-1);
- cellMeta = hot.getCellMeta(7, 7);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htBottom')).toEqual(-1);
- hot.undo();
- cellMeta = hot.getCellMeta(0, 0);
- expect(cellMeta.className.indexOf('htCenter')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htMiddle')).toEqual(-1);
- cellMeta = hot.getCellMeta(5, 1);
- expect(cellMeta.className.indexOf('htMiddle')).toEqual(-1);
- cellMeta = hot.getCellMeta(7, 1);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htMiddle')).toEqual(-1);
- hot.undo();
- cellMeta = hot.getCellMeta(7, 1);
- expect(cellMeta.className.indexOf('htRight')).toEqual(-1);
- expect(cellMeta.className.indexOf('htMiddle')).toEqual(-1);
- cellMeta = hot.getCellMeta(7, 5);
- expect(cellMeta.className.indexOf('htRight')).toEqual(-1);
- cellMeta = hot.getCellMeta(7, 7);
- expect(cellMeta.className.indexOf('htRight')).toEqual(-1);
- expect(cellMeta.className.indexOf('htBottom')).toEqual(-1);
- hot.undo();
- // check if all cells are either non-adjusted or adjusted to the left (as default)
- var finish;
- for (var i = 0; i < 9; i++) {
- for (var j = 0; j < 9; j++) {
- cellMeta = hot.getCellMeta(i, j);
- finish = cellMeta.className === void 0 || cellMeta.className.trim() === '' || cellMeta.className.trim() === 'htLeft';
- expect(finish).toBe(true);
- }
- }
- });
- it('should redo a sequence of aligning cells', function () {
- var hot = handsontable({
- data: Handsontable.helper.createSpreadsheetData(9, 9),
- contextMenu: true,
- colWidths: [50, 50, 50, 50, 50, 50, 50, 50, 50],
- rowHeights: [50, 50, 50, 50, 50, 50, 50, 50, 50]
- });
- // top 3 rows center
- selectCell(0, 0, 2, 8);
- hot.getPlugin('contextMenu').executeCommand('alignment:center');
- // middle 3 rows unchanged - left
- // bottom 3 rows right
- selectCell(6, 0, 8, 8);
- hot.getPlugin('contextMenu').executeCommand('alignment:right');
- // left 3 columns - middle
- selectCell(0, 0, 8, 2);
- hot.getPlugin('contextMenu').executeCommand('alignment:middle');
- // middle 3 columns unchanged - top
- // right 3 columns - bottom
- selectCell(0, 6, 8, 8);
- hot.getPlugin('contextMenu').executeCommand('alignment:bottom');
- var cellMeta = hot.getCellMeta(0, 0);
- expect(cellMeta.className.indexOf('htCenter')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htMiddle')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(0, 7);
- expect(cellMeta.className.indexOf('htCenter')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htBottom')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(5, 1);
- expect(cellMeta.className.indexOf('htMiddle')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(5, 7);
- expect(cellMeta.className.indexOf('htBottom')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(7, 1);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htMiddle')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(7, 5);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(7, 7);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htBottom')).toBeGreaterThan(-1);
- hot.undo();
- hot.undo();
- hot.undo();
- hot.undo();
- // check if all cells are either non-adjusted or adjusted to the left (as default)
- var finish;
- for (var i = 0; i < 9; i++) {
- for (var j = 0; j < 9; j++) {
- cellMeta = hot.getCellMeta(i, j);
- finish = cellMeta.className === void 0 || cellMeta.className.trim() === '' || cellMeta.className.trim() === 'htLeft';
- expect(finish).toBe(true);
- }
- }
- hot.redo();
- cellMeta = hot.getCellMeta(0, 0);
- expect(cellMeta.className.indexOf('htCenter')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(1, 5);
- expect(cellMeta.className.indexOf('htCenter')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(2, 8);
- expect(cellMeta.className.indexOf('htCenter')).toBeGreaterThan(-1);
- hot.redo();
- cellMeta = hot.getCellMeta(6, 0);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(7, 5);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(8, 8);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- hot.redo();
- cellMeta = hot.getCellMeta(0, 0);
- expect(cellMeta.className.indexOf('htMiddle')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htCenter')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(5, 1);
- expect(cellMeta.className.indexOf('htMiddle')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(8, 2);
- expect(cellMeta.className.indexOf('htMiddle')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- hot.redo();
- cellMeta = hot.getCellMeta(0, 6);
- expect(cellMeta.className.indexOf('htBottom')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htCenter')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(5, 7);
- expect(cellMeta.className.indexOf('htBottom')).toBeGreaterThan(-1);
- cellMeta = hot.getCellMeta(8, 8);
- expect(cellMeta.className.indexOf('htBottom')).toBeGreaterThan(-1);
- expect(cellMeta.className.indexOf('htRight')).toBeGreaterThan(-1);
- });
- });
- it('should exposed new methods when plugin is enabled', function () {
- var hot = handsontable({
- undo: false
- });
- expect(hot.undo).toBeUndefined();
- expect(hot.redo).toBeUndefined();
- expect(hot.isUndoAvailable).toBeUndefined();
- expect(hot.isRedoAvailable).toBeUndefined();
- expect(hot.clearUndo).toBeUndefined();
- updateSettings({
- undo: true
- });
- expect(_typeof(hot.undo)).toEqual('function');
- expect(_typeof(hot.redo)).toEqual('function');
- expect(_typeof(hot.isUndoAvailable)).toEqual('function');
- expect(_typeof(hot.isRedoAvailable)).toEqual('function');
- expect(_typeof(hot.clearUndo)).toEqual('function');
- });
- it('should remove exposed methods when plugin is disbaled', function () {
- var hot = handsontable({
- undo: true
- });
- expect(_typeof(hot.undo)).toEqual('function');
- expect(_typeof(hot.redo)).toEqual('function');
- expect(_typeof(hot.isUndoAvailable)).toEqual('function');
- expect(_typeof(hot.isRedoAvailable)).toEqual('function');
- expect(_typeof(hot.clearUndo)).toEqual('function');
- updateSettings({
- undo: false
- });
- expect(hot.undo).toBeUndefined();
- expect(hot.redo).toBeUndefined();
- expect(hot.isUndoAvailable).toBeUndefined();
- expect(hot.isRedoAvailable).toBeUndefined();
- expect(hot.clearUndo).toBeUndefined();
- });
- describe('Keyboard shortcuts', function () {
- it('should undo single change after hitting CTRL+Z', function () {
- handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var HOT = getInstance();
- selectCell(0, 0);
- setDataAtCell(0, 0, 'new value');
- this.$container.simulate('keydown', { ctrlKey: true, keyCode: 'Z'.charCodeAt(0) });
- expect(getDataAtCell(0, 0)).toBe('A1');
- });
- it('should redo single change after hitting CTRL+Y', function () {
- handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var HOT = getInstance();
- selectCell(0, 0);
- setDataAtCell(0, 0, 'new value');
- expect(getDataAtCell(0, 0)).toBe('new value');
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('A1');
- this.$container.simulate('keydown', { ctrlKey: true, keyCode: 'Y'.charCodeAt(0) });
- expect(getDataAtCell(0, 0)).toBe('new value');
- });
- it('should redo single change after hitting CTRL+SHIFT+Z', function () {
- handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var HOT = getInstance();
- selectCell(0, 0);
- setDataAtCell(0, 0, 'new value');
- expect(getDataAtCell(0, 0)).toBe('new value');
- HOT.undo();
- expect(getDataAtCell(0, 0)).toBe('A1');
- this.$container.simulate('keydown', { ctrlKey: true, shiftKey: true, keyCode: 'Z'.charCodeAt(0) });
- expect(getDataAtCell(0, 0)).toBe('new value');
- });
- });
- });
- describe('Hooks', function () {
- it('should fire a `beforeUndo` hook after the undo process begins', function (done) {
- var beforeUndoSpy = jasmine.createSpy('beforeUndo');
- var hot = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var hookData = null;
- hot.addHook('beforeUndo', beforeUndoSpy);
- hot.addHook('beforeUndo', function (data) {
- hookData = data;
- });
- alter('remove_row', 1);
- setTimeout(function () {
- hot.undo();
- }, 10);
- setTimeout(function () {
- expect(beforeUndoSpy.calls.count()).toEqual(1);
- expect(hookData).not.toBe(null);
- expect(hookData.actionType).toEqual('remove_row');
- expect(hookData.data).toEqual([['A2', 'B2']]);
- done();
- }, 100);
- });
- it('should fire a `beforeRedo` hook before the redo process begins', function (done) {
- var beforeRedoSpy = jasmine.createSpy('beforeRedo');
- var hot = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var hookData = null;
- hot.addHook('beforeRedo', beforeRedoSpy);
- hot.addHook('beforeRedo', function (data) {
- hookData = data;
- });
- alter('remove_row', 1);
- setTimeout(function () {
- hot.undo();
- hot.redo();
- }, 10);
- setTimeout(function () {
- expect(beforeRedoSpy.calls.count()).toEqual(1);
- expect(hookData).not.toBe(null);
- expect(hookData.actionType).toEqual('remove_row');
- expect(hookData.data).toEqual([['A2', 'B2']]);
- done();
- }, 100);
- });
- it('should fire a `afterRedo` hook after the redo process begins', function (done) {
- var afterRedoSpy = jasmine.createSpy('afterRedo');
- var hot = handsontable({
- data: Handsontable.helper.createSpreadsheetData(2, 2)
- });
- var hookData = null;
- hot.addHook('beforeRedo', afterRedoSpy);
- hot.addHook('beforeRedo', function (data) {
- hookData = data;
- });
- alter('remove_row', 1);
- setTimeout(function () {
- hot.undo();
- hot.redo();
- }, 10);
- setTimeout(function () {
- expect(afterRedoSpy.calls.count()).toEqual(1);
- expect(hookData).not.toBe(null);
- expect(hookData.actionType).toEqual('remove_row');
- expect(hookData.data).toEqual([['A2', 'B2']]);
- done();
- }, 100);
- });
- });
- });
|