123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168 |
- /**
- * Copyright (c) 2006-2017, JGraph Ltd
- * Copyright (c) 2006-2017, Gaudenz Alder
- */
- (function()
- {
- // Adds scrollbars for menus that exceed the page height
- var mxPopupMenuShowMenu = mxPopupMenu.prototype.showMenu;
- mxPopupMenu.prototype.showMenu = function()
- {
- mxPopupMenuShowMenu.apply(this, arguments);
-
- this.div.style.overflowY = 'auto';
- this.div.style.overflowX = 'hidden';
- var h0 = Math.max(document.body.clientHeight, document.documentElement.clientHeight);
- this.div.style.maxHeight = (h0 - 10) + 'px';
- };
-
- Menus.prototype.createHelpLink = function(href)
- {
- var link = document.createElement('span');
- link.setAttribute('title', mxResources.get('help'));
- link.style.cssText = 'color:blue;text-decoration:underline;margin-left:8px;cursor:help;';
-
- var icon = document.createElement('img');
- mxUtils.setOpacity(icon, 50);
- icon.style.height = '16px';
- icon.style.width = '16px';
- icon.setAttribute('border', '0');
- icon.setAttribute('valign', 'bottom');
- icon.setAttribute('src', Editor.helpImage);
- link.appendChild(icon);
-
- mxEvent.addGestureListeners(link, mxUtils.bind(this, function(evt)
- {
- if (this.editorUi.menubar != null)
- {
- this.editorUi.menubar.hideMenu();
- }
-
- this.editorUi.openLink(href);
- mxEvent.consume(evt);
- }));
-
- return link;
- };
- Menus.prototype.addLinkToItem = function(item, href)
- {
- if (item != null)
- {
- item.firstChild.nextSibling.appendChild(this.createHelpLink(href));
- }
- };
- var menusInit = Menus.prototype.init;
- Menus.prototype.init = function()
- {
- menusInit.apply(this, arguments);
- var editorUi = this.editorUi;
- var graph = editorUi.editor.graph;
- var isGraphEnabled = mxUtils.bind(graph, graph.isEnabled);
- var googleEnabled = ((urlParams['embed'] != '1' && urlParams['gapi'] != '0') ||
- (urlParams['embed'] == '1' && urlParams['gapi'] == '1')) && mxClient.IS_SVG &&
- isLocalStorage && (document.documentMode == null || document.documentMode >= 10);
- var dropboxEnabled = ((urlParams['embed'] != '1' && urlParams['db'] != '0') || (urlParams['embed'] == '1' && urlParams['db'] == '1')) &&
- mxClient.IS_SVG && (document.documentMode == null || document.documentMode > 9);
- var oneDriveEnabled = (window.location.hostname == 'www.draw.io' || window.location.hostname == 'test.draw.io' ||
- window.location.hostname == 'drive.draw.io' || window.location.hostname == 'legacy.draw.io') &&
- (((urlParams['embed'] != '1' && urlParams['od'] != '0') || (urlParams['embed'] == '1' &&
- urlParams['od'] == '1')) && !navigator.userAgent.match(/(iPad|iPhone|iPod)/g) &&
- (navigator.userAgent.indexOf('MSIE') < 0 || document.documentMode >= 10));
- var trelloEnabled = ((urlParams['embed'] != '1' && urlParams['tr'] != '0') || (urlParams['embed'] == '1' && urlParams['tr'] == '1')) &&
- mxClient.IS_SVG && (document.documentMode == null || document.documentMode > 9);
- if (!mxClient.IS_SVG && !editorUi.isOffline())
- {
- var img = new Image();
- img.src = IMAGE_PATH + '/help.png';
- }
-
- editorUi.actions.addAction('new...', function()
- {
- var compact = editorUi.isOffline();
- var dlg = new NewDialog(editorUi, compact);
- editorUi.showDialog(dlg.container, (compact) ? 350 : 620, (compact) ? 70 : 440, true, true, function(cancel)
- {
- if (cancel && editorUi.getCurrentFile() == null)
- {
- editorUi.showSplash();
- }
- });
-
- dlg.init();
- });
- editorUi.actions.put('exportSvg', new Action(mxResources.get('formatSvg') + '...', function()
- {
- editorUi.showExportDialog(mxResources.get('formatSvg'), true, mxResources.get('export'),
- 'https://support.draw.io/display/DO/Exporting+Files',
- mxUtils.bind(this, function(scale, transparentBackground, ignoreSelection, addShadow,
- editable, embedImages, border, cropImage, currentPage, linkTarget)
- {
- var val = parseInt(scale);
-
- if (!isNaN(val) && val > 0)
- {
- editorUi.exportSvg(val / 100, transparentBackground, ignoreSelection, addShadow,
- editable, embedImages, border, !cropImage, currentPage, linkTarget);
- }
- }), true, null, 'svg');
- }));
-
- editorUi.actions.put('insertTemplate', new Action(mxResources.get('template') + '...', function()
- {
- var dlg = new NewDialog(editorUi, null, false, function(xml)
- {
- editorUi.hideDialog();
-
- if (xml != null)
- {
- var insertPoint = editorUi.editor.graph.getFreeInsertPoint();
- graph.setSelectionCells(editorUi.importXml(xml,
- Math.max(insertPoint.x, 20),
- Math.max(insertPoint.y, 20), true));
- graph.scrollCellToVisible(graph.getSelectionCell());
- }
- }, null, null, null, null, null, null, null, null, null, null,
- false, mxResources.get('insert'));
- editorUi.showDialog(dlg.container, 620, 440, true, true);
- })).isEnabled = isGraphEnabled;
-
- editorUi.actions.put('exportXml', new Action(mxResources.get('formatXml') + '...', function()
- {
- var div = document.createElement('div');
- div.style.whiteSpace = 'nowrap';
- var noPages = editorUi.pages == null || editorUi.pages.length <= 1;
-
- var hd = document.createElement('h3');
- mxUtils.write(hd, mxResources.get('formatXml'));
- hd.style.cssText = 'width:100%;text-align:center;margin-top:0px;margin-bottom:4px';
- div.appendChild(hd);
-
- var selection = editorUi.addCheckbox(div, mxResources.get('selectionOnly'),
- false, graph.isSelectionEmpty());
- var pages = editorUi.addCheckbox(div, mxResources.get((noPages) ? 'compressed' : 'allPages'), true);
- pages.style.marginBottom = '16px';
-
- mxEvent.addListener(selection, 'change', function()
- {
- if (selection.checked)
- {
- pages.setAttribute('disabled', 'disabled');
- }
- else
- {
- pages.removeAttribute('disabled');
- }
- });
-
- var dlg = new CustomDialog(editorUi, div, mxUtils.bind(this, function()
- {
- editorUi.downloadFile('xml', (noPages) ? !pages.checked : null, null,
- !selection.checked, (!noPages) ? !pages.checked : null);
- }), null, mxResources.get('export'));
-
- editorUi.showDialog(dlg.container, 300, 146, true, true);
- }));
-
- editorUi.actions.put('exportUrl', new Action(mxResources.get('url') + '...', function()
- {
- editorUi.showPublishLinkDialog(mxResources.get('url'), true, null, null,
- function(linkTarget, linkColor, allPages, lightbox, editLink, layers)
- {
- var dlg = new EmbedDialog(editorUi, editorUi.createLink(linkTarget,
- linkColor, allPages, lightbox, editLink, layers, null, true));
- editorUi.showDialog(dlg.container, 440, 240, true, true);
- dlg.init();
- });
- }));
-
- editorUi.actions.put('exportHtml', new Action(mxResources.get('formatHtmlEmbedded') + '...', function()
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.getPublicUrl(editorUi.getCurrentFile(), function(url)
- {
- editorUi.spinner.stop();
-
- editorUi.showHtmlDialog(mxResources.get('export'), null, url, function(publicUrl, zoomEnabled,
- initialZoom, linkTarget, linkColor, fit, allPages, layers, lightbox, editLink)
- {
- editorUi.createHtml(publicUrl, zoomEnabled, initialZoom, linkTarget, linkColor,
- fit, allPages, layers, lightbox, editLink, mxUtils.bind(this, function(html, scriptTag)
- {
- var basename = editorUi.getBaseFilename(allPages);
- var result = '<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=5,IE=9" ><![endif]-->\n' +
- '<!DOCTYPE html>\n<html>\n<head>\n<title>' + mxUtils.htmlEntities(basename) + '</title>\n' +
- '<meta charset="utf-8"/>\n</head>\n<body>' + html + '\n' + scriptTag + '\n</body>\n</html>';
- editorUi.saveData(basename + '.html', 'html', result, 'text/html');
- }));
- });
- });
- }
- }));
-
- editorUi.actions.put('exportPdf', new Action(mxResources.get('formatPdf') + '...', function()
- {
- if (editorUi.isOffline() || editorUi.printPdfExport)
- {
- // Export PDF action for chrome OS (same as print with different dialog title)
- editorUi.showDialog(new PrintDialog(editorUi, mxResources.get('formatPdf')).container, 360,
- (editorUi.pages != null && editorUi.pages.length > 1) ?
- 420 : 360, true, true);
- }
- else
- {
- var noPages = editorUi.pages == null || editorUi.pages.length <= 1;
- var div = document.createElement('div');
- div.style.whiteSpace = 'nowrap';
-
- var hd = document.createElement('h3');
- mxUtils.write(hd, mxResources.get('formatPdf'));
- hd.style.cssText = 'width:100%;text-align:center;margin-top:0px;margin-bottom:4px';
- div.appendChild(hd);
-
- var cropEnableFn = function()
- {
- if (allPages != this && this.checked)
- {
- crop.removeAttribute('disabled');
- }
- else
- {
- crop.setAttribute('disabled', 'disabled');
- crop.checked = false;
- }
- };
-
- var dlgH = 146;
-
- if (editorUi.pdfPageExport && !noPages)
- {
- var allPages = editorUi.addRadiobox(div, 'pages', mxResources.get('allPages'), true);
- var currentPage = editorUi.addRadiobox(div, 'pages', mxResources.get('currentPage', null, 'Current Page'), false);
- var selection = editorUi.addRadiobox(div, 'pages', mxResources.get('selectionOnly'), false, graph.isSelectionEmpty());
- var crop = editorUi.addCheckbox(div, mxResources.get('crop'), false, true);
-
- mxEvent.addListener(allPages, 'change', cropEnableFn);
- mxEvent.addListener(currentPage, 'change', cropEnableFn);
- mxEvent.addListener(selection, 'change', cropEnableFn);
- dlgH = 205;
- }
- else
- {
- var selection = editorUi.addCheckbox(div, mxResources.get('selectionOnly'),
- false, graph.isSelectionEmpty());
- var crop = editorUi.addCheckbox(div, mxResources.get('crop'),
- !graph.pageVisible || !editorUi.pdfPageExport,
- !editorUi.pdfPageExport);
-
- // Crop is only enabled if selection only is selected
- if (!editorUi.pdfPageExport)
- {
- mxEvent.addListener(selection, 'change', cropEnableFn);
- }
- }
-
- var dlg = new CustomDialog(editorUi, div, mxUtils.bind(this, function()
- {
- editorUi.downloadFile('pdf', null, null, !selection.checked, noPages? true : !allPages.checked, !crop.checked);
- }), null, mxResources.get('export'));
- editorUi.showDialog(dlg.container, 300, dlgH, true, true);
- }
- }));
-
- editorUi.actions.addAction('open...', function()
- {
- editorUi.pickFile();
- });
-
- editorUi.actions.addAction('close', function()
- {
- var currentFile = editorUi.getCurrentFile();
-
- function fn()
- {
- editorUi.fileLoaded(null);
- };
-
- if (currentFile != null && currentFile.isModified())
- {
- editorUi.confirm(mxResources.get('allChangesLost'), null, fn,
- mxResources.get('cancel'), mxResources.get('discardChanges'));
- }
- else
- {
- fn();
- }
- });
-
- editorUi.actions.addAction('editShape...', mxUtils.bind(this, function()
- {
- var cells = graph.getSelectionCells();
-
- if (graph.getSelectionCount() == 1)
- {
- var cell = graph.getSelectionCell();
- var state = graph.view.getState(cell);
-
- if (state != null && state.shape != null && state.shape.stencil != null)
- {
- var dlg = new EditShapeDialog(editorUi, cell, mxResources.get('editShape') + ':', 630, 400);
- editorUi.showDialog(dlg.container, 640, 480, true, false);
- dlg.init();
- }
- }
- }));
-
- editorUi.actions.addAction('revisionHistory...', function()
- {
- if (!editorUi.isRevisionHistorySupported())
- {
- editorUi.showError(mxResources.get('error'), mxResources.get('notAvailable'), mxResources.get('ok'));
- }
- else if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.getRevisions(mxUtils.bind(this, function(revs, restoreFn)
- {
- editorUi.spinner.stop();
- var dlg = new RevisionDialog(editorUi, revs, restoreFn);
- editorUi.showDialog(dlg.container, 640, 480, true, true);
- dlg.init();
- }), mxUtils.bind(this, function(err)
- {
- editorUi.handleError(err);
- }));
- }
- });
-
- editorUi.actions.addAction('createRevision', function()
- {
- editorUi.actions.get('save').funct();
- }, null, null, Editor.ctrlKey + '+S');
-
- var action = editorUi.actions.addAction('synchronize', function()
- {
- editorUi.synchronizeCurrentFile(DrawioFile.SYNC == 'none');
- }, null, null, 'Alt+Shift+S');
-
- // Changes the label if synchronization is disabled
- if (DrawioFile.SYNC == 'none')
- {
- action.label = mxResources.get('refresh');
- }
- editorUi.actions.addAction('upload...', function()
- {
- var file = editorUi.getCurrentFile();
-
- if (file != null)
- {
- // Data is pulled from global variable after tab loads
- // LATER: Change to use message passing to deal with potential cross-domain
- window.drawdata = editorUi.getFileData();
- var filename = (file.getTitle() != null) ? file.getTitle() : editorUi.defaultFilename;
- editorUi.openLink(window.location.protocol + '//' + window.location.host + '/?create=drawdata&' +
- ((editorUi.mode == App.MODE_DROPBOX) ? 'mode=dropbox&' : '') +
- 'title=' + encodeURIComponent(filename), null, true);
- }
- });
- if (typeof(MathJax) !== 'undefined')
- {
- var action = editorUi.actions.addAction('mathematicalTypesetting', function()
- {
- var change = new ChangePageSetup(editorUi);
- change.ignoreColor = true;
- change.ignoreImage = true;
- change.mathEnabled = !editorUi.isMathEnabled();
-
- graph.model.execute(change);
- });
-
- action.setToggleAction(true);
- action.setSelectedCallback(function() { return editorUi.isMathEnabled(); });
- action.isEnabled = isGraphEnabled;
- }
-
- if (isLocalStorage || mxClient.IS_CHROMEAPP)
- {
- var action = editorUi.actions.addAction('showStartScreen', function()
- {
- mxSettings.setShowStartScreen(!mxSettings.getShowStartScreen());
- mxSettings.save();
- });
-
- action.setToggleAction(true);
- action.setSelectedCallback(function() { return mxSettings.getShowStartScreen(); });
- }
- var autosaveAction = editorUi.actions.addAction('autosave', function()
- {
- editorUi.editor.setAutosave(!editorUi.editor.autosave);
- });
-
- autosaveAction.setToggleAction(true);
- autosaveAction.setSelectedCallback(function()
- {
- return autosaveAction.isEnabled() && editorUi.editor.autosave;
- });
- editorUi.actions.addAction('editGeometry...', function()
- {
- var cells = graph.getSelectionCells();
- var vertices = [];
-
- for (var i = 0; i < cells.length; i++)
- {
- if (graph.getModel().isVertex(cells[i]))
- {
- vertices.push(cells[i]);
- }
- }
-
- if (vertices.length > 0)
- {
- var dlg = new EditGeometryDialog(editorUi, vertices);
- editorUi.showDialog(dlg.container, 200, 250, true, true);
- dlg.init();
- }
- }, null, null, Editor.ctrlKey + '+Shift+M');
- var copiedStyles = ['rounded', 'shadow', 'dashed', 'dashPattern', 'fontFamily', 'fontSize', 'fontColor', 'fontStyle',
- 'align', 'verticalAlign', 'strokeColor', 'strokeWidth', 'fillColor', 'gradientColor', 'swimlaneFillColor',
- 'textOpacity', 'gradientDirection', 'glass', 'labelBackgroundColor', 'labelBorderColor', 'opacity',
- 'spacing', 'spacingTop', 'spacingLeft', 'spacingBottom', 'spacingRight', 'endFill', 'endArrow',
- 'endSize', 'targetPerimeterSpacing', 'startFill', 'startArrow', 'startSize', 'sourcePerimeterSpacing',
- 'arcSize'];
-
- editorUi.actions.addAction('copyStyle', function()
- {
- var state = graph.view.getState(graph.getSelectionCell());
-
- if (graph.isEnabled() && state != null)
- {
- editorUi.copiedStyle = mxUtils.clone(state.style);
-
- // Handles special case for value "none"
- var cellStyle = graph.getModel().getStyle(state.cell);
- var tokens = (cellStyle != null) ? cellStyle.split(';') : [];
-
- for (var j = 0; j < tokens.length; j++)
- {
- var tmp = tokens[j];
- var pos = tmp.indexOf('=');
-
- if (pos >= 0)
- {
- var key = tmp.substring(0, pos);
- var value = tmp.substring(pos + 1);
-
- if (editorUi.copiedStyle[key] == null && value == 'none')
- {
- editorUi.copiedStyle[key] = 'none';
- }
- }
- }
- }
- }, null, null, Editor.ctrlKey + '+Shift+C');
- editorUi.actions.addAction('pasteStyle', function()
- {
- if (graph.isEnabled() && !graph.isSelectionEmpty() && editorUi.copiedStyle != null)
- {
- graph.getModel().beginUpdate();
-
- try
- {
- var cells = graph.getSelectionCells();
-
- for (var i = 0; i < cells.length; i++)
- {
- var state = graph.view.getState(cells[i]);
-
- for (var j = 0; j < copiedStyles.length; j++)
- {
- var key = copiedStyles[j];
- var value = editorUi.copiedStyle[key];
-
- if (state.style[key] != value)
- {
- graph.setCellStyles(key, value, [cells[i]]);
- }
- }
- }
- }
- finally
- {
- graph.getModel().endUpdate();
- }
- }
- }, null, null, Editor.ctrlKey + '+Shift+V');
-
- editorUi.actions.put('pageBackgroundImage', new Action(mxResources.get('backgroundImage') + '...', function()
- {
- if (!editorUi.isOffline())
- {
- var apply = function(image)
- {
- editorUi.setBackgroundImage(image);
- };
-
- var dlg = new BackgroundImageDialog(editorUi, apply);
- editorUi.showDialog(dlg.container, 320, 170, true, true);
- dlg.init();
- }
- }));
-
- editorUi.actions.put('exportPng', new Action(mxResources.get('formatPng') + '...', function()
- {
- if (editorUi.isExportToCanvas())
- {
- editorUi.showExportDialog(mxResources.get('image'), false, mxResources.get('export'),
- 'https://support.draw.io/display/DO/Exporting+Files',
- mxUtils.bind(this, function(scale, transparentBackground, ignoreSelection,
- addShadow, editable, embedImages, border, cropImage, currentPage)
- {
- var val = parseInt(scale);
-
- if (!isNaN(val) && val > 0)
- {
- editorUi.exportImage(val / 100, transparentBackground, ignoreSelection,
- addShadow, editable, border, !cropImage, currentPage);
- }
- }), true, true, 'png');
- }
- else if (!editorUi.isOffline() && (!mxClient.IS_IOS || !navigator.standalone))
- {
- editorUi.showRemoteExportDialog(mxResources.get('export'), null, mxUtils.bind(this, function(ignoreSelection, editable, transparent)
- {
- editorUi.downloadFile((editable) ? 'xmlpng' : 'png', null, null, ignoreSelection, null, null, transparent);
- }));
- }
- }));
-
- editorUi.actions.put('exportJpg', new Action(mxResources.get('formatJpg') + '...', function()
- {
- if (editorUi.isExportToCanvas())
- {
- editorUi.showExportDialog(mxResources.get('image'), false, mxResources.get('export'),
- 'https://support.draw.io/display/DO/Exporting+Files',
- mxUtils.bind(this, function(scale, transparentBackground, ignoreSelection,
- addShadow, editable, embedImages, border, cropImage, currentPage)
- {
- var val = parseInt(scale);
-
- if (!isNaN(val) && val > 0)
- {
- editorUi.exportImage(val / 100, false, ignoreSelection,
- addShadow, false, border, !cropImage, false, 'jpeg');
- }
- }), true, false, 'jpeg');
- }
- else if (!editorUi.isOffline() && (!mxClient.IS_IOS || !navigator.standalone))
- {
- editorUi.showRemoteExportDialog(mxResources.get('export'), null, mxUtils.bind(this, function(ignoreSelection, editable)
- {
- editorUi.downloadFile('jpeg', null, null, ignoreSelection);
- }), true);
- }
- }));
-
- action = editorUi.actions.put('shadowVisible', new Action(mxResources.get('shadow'), function()
- {
- graph.setShadowVisible(!graph.shadowVisible);
- }));
- action.setToggleAction(true);
- action.setSelectedCallback(function() { return graph.shadowVisible; });
- var showingAbout = false;
-
- editorUi.actions.put('about', new Action(mxResources.get('aboutDrawio') + '...', function()
- {
- if (!showingAbout)
- {
- editorUi.showDialog(new AboutDialog(editorUi).container, 220, 300, true, true, function()
- {
- showingAbout = false;
- });
-
- showingAbout = true;
- }
-
- }, null, null, 'F1'));
-
- editorUi.actions.addAction('userManual...', function()
- {
- editorUi.openLink('https://support.draw.io/display/DO/Draw.io+Online+User+Manual');
- });
- editorUi.actions.addAction('support...', function()
- {
- editorUi.openLink('https://about.draw.io/support/');
- });
- editorUi.actions.addAction('exportOptionsDisabled...', function()
- {
- editorUi.handleError({message: mxResources.get('exportOptionsDisabledDetails')},
- mxResources.get('exportOptionsDisabled'));
- });
- editorUi.actions.addAction('keyboardShortcuts...', function()
- {
- if (mxClient.IS_CHROMEAPP || EditorUi.isElectronApp)
- {
- editorUi.openLink('https://www.draw.io/shortcuts.svg');
- }
- else if (mxClient.IS_SVG)
- {
- editorUi.openLink('shortcuts.svg');
- }
- else
- {
- editorUi.openLink('https://www.draw.io/?lightbox=1#Uhttps%3A%2F%2Fwww.draw.io%2Fshortcuts.svg');
- }
- });
- editorUi.actions.addAction('feedback...', function()
- {
- var dlg = new FeedbackDialog(editorUi);
- editorUi.showDialog(dlg.container, 610, 360, true, true);
- dlg.init();
- });
- editorUi.actions.addAction('quickStart...', function()
- {
- editorUi.openLink('https://www.youtube.com/watch?v=Z0D96ZikMkc');
- });
-
- action = editorUi.actions.addAction('tags...', mxUtils.bind(this, function()
- {
- if (this.tagsWindow == null)
- {
- this.tagsWindow = new TagsWindow(editorUi, document.body.offsetWidth - 380, 230, 300, 120);
- this.tagsWindow.window.addListener('show', function()
- {
- editorUi.fireEvent(new mxEventObject('tags'));
- });
- this.tagsWindow.window.addListener('hide', function()
- {
- editorUi.fireEvent(new mxEventObject('tags'));
- });
- this.tagsWindow.window.setVisible(true);
- editorUi.fireEvent(new mxEventObject('tags'));
- }
- else
- {
- this.tagsWindow.window.setVisible(!this.tagsWindow.window.isVisible());
- }
- }));
- action.setToggleAction(true);
- action.setSelectedCallback(mxUtils.bind(this, function() { return this.tagsWindow != null && this.tagsWindow.window.isVisible(); }));
-
- action = editorUi.actions.addAction('find...', mxUtils.bind(this, function()
- {
- if (this.findWindow == null)
- {
- this.findWindow = new FindWindow(editorUi, document.body.offsetWidth - 300, 110, 240, 140);
- this.findWindow.window.addListener('show', function()
- {
- editorUi.fireEvent(new mxEventObject('find'));
- });
- this.findWindow.window.addListener('hide', function()
- {
- editorUi.fireEvent(new mxEventObject('find'));
- });
- this.findWindow.window.setVisible(true);
- editorUi.fireEvent(new mxEventObject('find'));
- }
- else
- {
- this.findWindow.window.setVisible(!this.findWindow.window.isVisible());
- }
- }));
- action.setToggleAction(true);
- action.setSelectedCallback(mxUtils.bind(this, function() { return this.findWindow != null && this.findWindow.window.isVisible(); }));
-
- editorUi.actions.put('exportVsdx', new Action(mxResources.get('formatVsdx') + ' (beta)...', function()
- {
- editorUi.exportVisio();
- }));
-
- // Adds language menu to options only if localStorage is available for
- // storing the choice. We do not want to use cookies for older browsers.
- // Note that the URL param lang=XX is available for setting the language
- // in older browsers. URL param has precedence over the saved setting.
- if (mxClient.IS_CHROMEAPP || (isLocalStorage && urlParams['offline'] != '1'))
- {
- this.put('language', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- var addLangItem = mxUtils.bind(this, function (id)
- {
- var lang = (id == '') ? mxResources.get('automatic') : mxLanguageMap[id];
- var item = null;
-
- if (lang != '')
- {
- item = menu.addItem(lang, null, mxUtils.bind(this, function()
- {
- mxSettings.setLanguage(id);
- mxSettings.save();
-
- // Shows dialog in new language
- mxClient.language = id;
- mxResources.loadDefaultBundle = false;
- mxResources.add(RESOURCE_BASE);
-
- editorUi.alert(mxResources.get('restartForChangeRequired'));
- }), parent);
-
- if (id == mxLanguage || (id == '' && mxLanguage == null))
- {
- menu.addCheckmark(item, Editor.checkmarkImage);
- }
- }
-
- return item;
- });
-
- var item = addLangItem('');
- menu.addSeparator(parent);
- // LATER: Sort menu by language name
- for(var langId in mxLanguageMap)
- {
- addLangItem(langId);
- }
- })));
- // Extends the menubar with the language menu
- var menusCreateMenuBar = Menus.prototype.createMenubar;
- Menus.prototype.createMenubar = function(container)
- {
- var menubar = menusCreateMenuBar.apply(this, arguments);
-
- if (menubar != null)
- {
- var langMenu = this.get('language');
-
- if (langMenu != null)
- {
- var elt = menubar.addMenu('', langMenu.funct);
- elt.setAttribute('title', mxResources.get('language'));
- elt.style.width = '16px';
- elt.style.paddingTop = '2px';
- elt.style.paddingLeft = '4px';
- elt.style.zIndex = '1';
- elt.style.position = 'absolute';
- elt.style.display = 'block';
- elt.style.cursor = 'pointer';
- elt.style.right = '17px';
-
- if (uiTheme == 'atlas')
- {
- elt.style.top = '6px';
- elt.style.right = '15px';
- }
- else if (uiTheme == 'min')
- {
- elt.style.top = '2px';
- }
- else
- {
- elt.style.top = '0px';
- }
-
- if (!mxClient.IS_VML)
- {
- var icon = document.createElement('div');
- icon.style.backgroundImage = 'url(' + Editor.globeImage + ')';
- icon.style.backgroundPosition = 'center center';
- icon.style.backgroundRepeat = 'no-repeat';
- icon.style.backgroundSize = '19px 19px';
- icon.style.position = 'absolute';
- icon.style.height = '19px';
- icon.style.width = '19px';
- icon.style.marginTop = '2px';
- icon.style.zIndex = '1';
- elt.appendChild(icon);
- mxUtils.setOpacity(elt, 40);
-
- if (uiTheme == 'atlas' || uiTheme == 'dark')
- {
- elt.style.opacity = '0.85';
- elt.style.filter = 'invert(100%)';
- }
- }
- else
- {
- elt.innerHTML = '<div class="geIcon geSprite geSprite-globe"/>';
- }
-
- document.body.appendChild(elt);
- }
- }
- return menubar;
- };
- }
-
- editorUi.customLayoutConfig = [{'layout': 'mxHierarchicalLayout',
- 'config':
- {'orientation': 'west',
- 'intraCellSpacing': 30,
- 'interRankCellSpacing': 100,
- 'interHierarchySpacing': 60,
- 'parallelEdgeSpacing': 10}}];
-
- // Adds action
- editorUi.actions.addAction('runLayout', function()
- {
- var graph = editorUi.editor.graph;
-
- var dlg = new TextareaDialog(editorUi, 'Run Layouts:',
- JSON.stringify(editorUi.customLayoutConfig, null, 2),
- function(newValue)
- {
- if (newValue.length > 0)
- {
- try
- {
- var json = JSON.parse(newValue);
-
- for (var i = 0; i < json.length; i++)
- {
- var layout = new window[json[i].layout](graph);
-
- if (json[i].config != null)
- {
- for (var key in json[i].config)
- {
- layout[key] = json[i].config[key];
- }
- }
-
- editorUi.executeLayout(function()
- {
- var selectionCells = graph.getSelectionCells();
- layout.execute(graph.getDefaultParent(), selectionCells.length == 0 ?
- null : selectionCells);
- }, i == json.length - 1);
- }
-
- editorUi.customLayoutConfig = json;
- }
- catch (e)
- {
- editorUi.handleError(e);
- console.error(e);
- }
- }
- });
-
- dlg.textarea.style.width = '600px';
- dlg.textarea.style.height = '380px';
- editorUi.showDialog(dlg.container, 620, 460, true, true);
- dlg.init();
- });
-
- var layoutMenu = this.get('layout');
- var layoutMenuFunct = layoutMenu.funct;
-
- layoutMenu.funct = function(menu, parent)
- {
- layoutMenuFunct.apply(this, arguments);
-
- menu.addSeparator(parent);
- editorUi.menus.addMenuItem(menu, 'runLayout', parent, null, null, mxResources.get('apply') + '...');
- };
-
- this.put('help', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- if (!mxClient.IS_CHROMEAPP && editorUi.isOffline())
- {
- this.addMenuItems(menu, ['about'], parent);
- }
- else
- {
- // No translation for menu item since help is english only
- var item = menu.addItem('Search:', null, null, parent, null, null, false);
- item.style.backgroundColor = (uiTheme == 'dark') ? '#505759' : 'whiteSmoke';
- item.style.cursor = 'default';
-
- var input = document.createElement('input');
- input.setAttribute('type', 'text');
- input.setAttribute('size', '25');
- input.style.marginLeft = '8px';
- mxEvent.addListener(input, 'keydown', mxUtils.bind(this, function(e)
- {
- var term = mxUtils.trim(input.value);
-
- if (e.keyCode == 13 && term.length > 0)
- {
- this.editorUi.openLink('https://desk.draw.io/support/search/solutions?term=' +
- encodeURIComponent(term));
- input.value = '';
- EditorUi.logEvent({category: 'SEARCH-HELP', action: 'search', label: term});
-
- if (this.editorUi.menubar != null)
- {
- window.setTimeout(mxUtils.bind(this, function()
- {
- this.editorUi.menubar.hideMenu();
- }), 0);
- }
- }
- else if (e.keyCode == 27)
- {
- input.value = '';
- }
- }));
-
- item.firstChild.nextSibling.appendChild(input);
-
- mxEvent.addGestureListeners(input, function(evt)
- {
- if (document.activeElement != input)
- {
- input.focus();
- }
-
- mxEvent.consume(evt);
- }, function(evt)
- {
- mxEvent.consume(evt);
- }, function(evt)
- {
- mxEvent.consume(evt);
- });
-
- window.setTimeout(function()
- {
- input.focus();
- }, 0);
-
- this.addMenuItems(menu, ['-', 'quickStart', 'userManual', 'keyboardShortcuts', '-'], parent);
-
- if (!mxClient.IS_CHROMEAPP)
- {
- this.addMenuItems(menu, ['feedback'], parent);
- }
- this.addMenuItems(menu, ['support', '-'], parent);
-
- if (!EditorUi.isElectronApp && !navigator.standalone && urlParams['embed'] != '1')
- {
- this.addMenuItems(menu, ['downloadDesktop'], parent);
- }
-
- if (!navigator.standalone && urlParams['embed'] != '1')
- {
- this.addMenuItems(menu, ['useOffline'], parent);
- }
-
- this.addMenuItems(menu, ['-', 'about'], parent);
- }
-
- if (urlParams['test'] == '1')
- {
- menu.addSeparator(parent);
- this.addSubmenu('testDevelop', menu, parent);
- }
-
- if (urlParams['ruler'] == '1')
- {
- mxResources.parse('rulerInch=Ruler unit: Inches');
- editorUi.actions.addAction('rulerInch', mxUtils.bind(this, function()
- {
- editorUi.vRuler.setUnit(mxRuler.prototype.INCHES);
- editorUi.hRuler.setUnit(mxRuler.prototype.INCHES);
- editorUi.vRuler.drawRuler(true);
- editorUi.hRuler.drawRuler(true);
- }));
- mxResources.parse('rulerCM=Ruler unit: CMs');
- editorUi.actions.addAction('rulerCM', mxUtils.bind(this, function()
- {
- editorUi.vRuler.setUnit(mxRuler.prototype.CENTIMETER);
- editorUi.hRuler.setUnit(mxRuler.prototype.CENTIMETER);
- editorUi.vRuler.drawRuler(true);
- editorUi.hRuler.drawRuler(true);
- }));
- mxResources.parse('rulerPixel=Ruler unit: Pixels');
- editorUi.actions.addAction('rulerPixel', mxUtils.bind(this, function()
- {
- editorUi.vRuler.setUnit(mxRuler.prototype.PIXELS);
- editorUi.hRuler.setUnit(mxRuler.prototype.PIXELS);
- editorUi.vRuler.drawRuler(true);
- editorUi.hRuler.drawRuler(true);
- }));
- this.addMenuItems(menu, ['-', 'rulerInch', 'rulerCM', 'rulerPixel'], parent);
- }
- })));
-
- // Only visible in test mode
- if (urlParams['test'] == '1')
- {
- mxResources.parse('testDevelop=Develop');
- mxResources.parse('showBoundingBox=Show bounding box');
- mxResources.parse('createSidebarEntry=Create Sidebar Entry');
- mxResources.parse('testCheckFile=Check File');
- mxResources.parse('testDiff=Diff');
- mxResources.parse('testInspect=Inspect');
- mxResources.parse('testShowConsole=Show Console');
- mxResources.parse('testXmlImageExport=XML Image Export');
- mxResources.parse('testDownloadRtModel=Export RT model');
- mxResources.parse('testImportRtModel=Import RT model');
- editorUi.actions.addAction('createSidebarEntry', mxUtils.bind(this, function()
- {
- if (!graph.isSelectionEmpty())
- {
- editorUi.showTextDialog('Create Sidebar Entry', 'sb.createVertexTemplateFromData(\'' +
- Graph.compress(mxUtils.getXml(graph.encodeCells(graph.getSelectionCells()))) +
- '\', width, height, \'Title\');');
- }
- }));
-
- editorUi.actions.addAction('showBoundingBox', mxUtils.bind(this, function()
- {
- var b = graph.getGraphBounds();
- var tr = graph.view.translate;
- var s = graph.view.scale;
- graph.insertVertex(graph.getDefaultParent(), null, '',
- b.x / s - tr.x, b.y / s - tr.y, b.width / s, b.height / s,
- 'fillColor=none;strokeColor=red;');
- }));
-
- editorUi.actions.addAction('testCheckFile', mxUtils.bind(this, function()
- {
- var xml = (editorUi.pages != null && editorUi.getCurrentFile() != null) ?
- editorUi.getCurrentFile().getAnonymizedXmlForPages(editorUi.pages) : '';
- var dlg = new TextareaDialog(editorUi, 'Paste Data:', xml,
- function(newValue)
- {
- if (newValue.length > 0)
- {
- try
- {
- if (newValue.charAt(0) != '<')
- {
- newValue = Graph.decompress(newValue);
- mxLog.debug('See console for uncompressed XML');
- console.log('xml', newValue);
- }
-
- var doc = mxUtils.parseXml(newValue);
- var pages = editorUi.getPagesForNode(doc.documentElement, 'mxGraphModel');
-
- if (pages != null && pages.length > 0)
- {
- try
- {
- var checksum = editorUi.getHashValueForPages(pages);
- mxLog.debug('Checksum: ', checksum);
- }
- catch (e)
- {
- mxLog.debug('Error: ', e.message);
- }
- }
- else
- {
- mxLog.debug('No pages found for checksum');
- }
- // Checks for duplicates
- function checkModel(node)
- {
- var pageId = node.parentNode.id;
- var all = node.childNodes;
- var allIds = {};
- var childs = {};
- var root = null;
- var dups = {};
-
- for (var i = 0; i < all.length; i++)
- {
- var el = all[i];
-
- if (el.id != null && el.id.length > 0)
- {
- if (allIds[el.id] == null)
- {
- allIds[el.id] = el.id;
- var pid = el.getAttribute('parent');
-
- if (pid == null)
- {
- if (root != null)
- {
- mxLog.debug(pageId + ': Multiple roots: ' + el.id);
- }
- else
- {
- root = el.id;
- }
- }
- else
- {
- if (childs[pid] == null)
- {
- childs[pid] = [];
- }
-
- childs[pid].push(el.id);
- }
- }
- else
- {
- dups[el.id] = el.id;
- }
- }
- }
-
- if (Object.keys(dups).length > 0)
- {
- var log = pageId + ': ' + Object.keys(dups).length + ' Duplicates: ' + Object.keys(dups).join(', ');
- mxLog.debug(log + ' (see console)');
- }
- else
- {
- mxLog.debug(pageId + ': Checked');
- }
-
- // Checks tree for cycles
- var visited = {};
-
- function visit(id)
- {
- if (visited[id] == null)
- {
- visited[id] = true;
-
- if (childs[id] != null)
- {
- while (childs[id].length > 0)
- {
- var temp = childs[id].pop();
- visit(temp);
- }
-
- delete childs[id];
- }
- }
- else
- {
- mxLog.debug(pageId + ': Visited: ' + id);
- }
- };
-
- if (root == null)
- {
- mxLog.debug(pageId + ': No root');
- }
- else
- {
- visit(root);
-
- if (Object.keys(visited).length != Object.keys(allIds).length)
- {
- mxLog.debug(pageId + ': Invalid tree: (see console)');
- console.log(pageId + ': Invalid tree', childs);
- }
- }
- };
-
- var roots = doc.getElementsByTagName('root');
-
- for (var i = 0; i < roots.length; i++)
- {
- checkModel(roots[i]);
- }
-
- mxLog.show();
- }
- catch (e)
- {
- editorUi.handleError(e);
- console.error(e);
- }
- }
- });
-
- dlg.textarea.style.width = '600px';
- dlg.textarea.style.height = '380px';
- editorUi.showDialog(dlg.container, 620, 460, true, true);
- dlg.init();
- }));
-
- editorUi.actions.addAction('testDiff', mxUtils.bind(this, function()
- {
- if (editorUi.pages != null)
- {
- var dlg = new TextareaDialog(editorUi, 'Paste Data:', '',
- function(newValue)
- {
- if (newValue.length > 0)
- {
- try
- {
- console.log(JSON.stringify(editorUi.diffPages(editorUi.pages,
- editorUi.getPagesForNode(mxUtils.parseXml(newValue).
- documentElement)), null, 2));
-
- }
- catch (e)
- {
- editorUi.handleError(e);
- console.error(e);
- }
- }
- });
-
- dlg.textarea.style.width = '600px';
- dlg.textarea.style.height = '380px';
- editorUi.showDialog(dlg.container, 620, 460, true, true);
- dlg.init();
- }
- else
- {
- editorUi.alert('No pages');
- }
- }));
-
- editorUi.actions.addAction('testInspect', mxUtils.bind(this, function()
- {
- console.log(editorUi, graph.getModel());
- }));
-
- editorUi.actions.addAction('testXmlImageExport', mxUtils.bind(this, function()
- {
- var bg = '#ffffff';
- var scale = 1;
- var b = 1;
-
- var imgExport = new mxImageExport();
- var bounds = graph.getGraphBounds();
- var vs = graph.view.scale;
-
- // New image export
- var xmlDoc = mxUtils.createXmlDocument();
- var root = xmlDoc.createElement('output');
- xmlDoc.appendChild(root);
-
- // Renders graph. Offset will be multiplied with state's scale when painting state.
- var xmlCanvas = new mxXmlCanvas2D(root);
- xmlCanvas.translate(Math.floor((b / scale - bounds.x) / vs), Math.floor((b / scale - bounds.y) / vs));
- xmlCanvas.scale(scale / vs);
-
- var stateCounter = 0;
-
- var canvasSave = xmlCanvas.save;
- xmlCanvas.save = function()
- {
- stateCounter++;
- canvasSave.apply(this, arguments);
- };
-
- var canvasRestore = xmlCanvas.restore;
- xmlCanvas.restore = function()
- {
- stateCounter--;
- canvasRestore.apply(this, arguments);
- };
-
- var exportDrawShape = imgExport.drawShape;
- imgExport.drawShape = function(state)
- {
- mxLog.debug('entering shape', state, stateCounter);
- exportDrawShape.apply(this, arguments);
- mxLog.debug('leaving shape', state, stateCounter);
- };
-
- imgExport.drawState(graph.getView().getState(graph.model.root), xmlCanvas);
-
- // Puts request data together
- var w = Math.ceil(bounds.width * scale / vs + 2 * b);
- var h = Math.ceil(bounds.height * scale / vs + 2 * b);
-
- mxLog.show();
- mxLog.debug(mxUtils.getXml(root));
- mxLog.debug('stateCounter', stateCounter);
- }));
-
- editorUi.actions.addAction('testDownloadRtModel...', mxUtils.bind(this, function()
- {
- if (editorUi.drive == null)
- {
- editorUi.handleError({message: mxResources.get('serviceUnavailableOrBlocked')});
- }
- else
- {
- editorUi.drive.execute(mxUtils.bind(this, function()
- {
- var fileId =prompt('File ID', '');
-
- if (fileId != null && fileId.length > 0 &&
- editorUi.spinner.spin(document.body, mxResources.get('export')))
- {
- // LATER: Download full model dump with history
- var req = new mxXmlRequest('https://www.googleapis.com/drive/v2/files/' +
- fileId + '/realtime?supportsTeamDrives=true', null, 'GET');
-
- // Adds auth token
- req.setRequestHeaders = function(request)
- {
- mxXmlRequest.prototype.setRequestHeaders.apply(this, arguments);
- var token = gapi.auth.getToken().access_token;
- request.setRequestHeader('authorization', 'Bearer ' + token);
- };
-
- req.send(function(req)
- {
- editorUi.spinner.stop();
-
- if (req.getStatus() >= 200 && req.getStatus() <= 299)
- {
- editorUi.saveLocalFile(req.getText(), 'json-' + fileId +'.txt', 'text/plain');
- }
- else
- {
- editorUi.handleError({message: mxResources.get('fileNotFound')},
- mxResources.get('errorLoadingFile'));
- }
- });
- }
- }));
- }
- }));
-
- editorUi.actions.addAction('testShowConsole', function()
- {
- if (!mxLog.isVisible())
- {
- mxLog.show();
- }
- else
- {
- mxLog.window.fit();
- }
-
- mxLog.window.div.style.zIndex = mxPopupMenu.prototype.zIndex - 1;
- });
-
- this.put('testDevelop', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- this.addMenuItems(menu, ['createSidebarEntry', 'showBoundingBox', '-',
- 'testCheckFile', 'testDiff', '-', 'testInspect', '-',
- 'testXmlImageExport', '-', 'testDownloadRtModel'], parent);
- menu.addItem(mxResources.get('testImportRtModel') + '...', null, function()
- {
- var input = document.createElement('input');
- input.setAttribute('type', 'file');
-
- mxEvent.addListener(input, 'change', mxUtils.bind(this, function()
- {
- if (input.files != null)
- {
- var reader = new FileReader();
-
- reader.onload = mxUtils.bind(this, function(e)
- {
- try
- {
- editorUi.openLocalFile(mxUtils.getXml(editorUi.drive.convertJsonToXml(
- JSON.parse(e.target.result).data)), input.files[0].name, true);
- }
- catch (err)
- {
- editorUi.handleError(err, mxResources.get('errorLoadingFile'));
- }
- });
-
- reader.readAsText(input.files[0]);
- }
- }));
-
- input.click();
- }, parent);
-
- this.addMenuItems(menu, ['-', 'testShowConsole'], parent);
- })));
- }
- editorUi.actions.addAction('shapes...', function()
- {
- if (mxClient.IS_CHROMEAPP || !editorUi.isOffline())
- {
- editorUi.showDialog(new MoreShapesDialog(editorUi, true).container, 640, (isLocalStorage) ?
- ((mxClient.IS_IOS) ? 480 : 460) : 440, true, true);
- }
- else
- {
- editorUi.showDialog(new MoreShapesDialog(editorUi, false).container, 360, (isLocalStorage) ?
- ((mxClient.IS_IOS) ? 300 : 280) : 260, true, true);
- }
- });
- editorUi.actions.addAction('createShape...', function()
- {
- var file = editorUi.getCurrentFile();
-
- if (graph.isEnabled())
- {
- var cell = new mxCell('', new mxGeometry(0, 0, 120, 120), editorUi.defaultCustomShapeStyle);
- cell.vertex = true;
-
- var dlg = new EditShapeDialog(editorUi, cell, mxResources.get('editShape') + ':', 630, 400);
- editorUi.showDialog(dlg.container, 640, 480, true, false);
- dlg.init();
- }
- });
-
- editorUi.actions.put('embedHtml', new Action(mxResources.get('html') + '...', function()
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.getPublicUrl(editorUi.getCurrentFile(), function(url)
- {
- editorUi.spinner.stop();
-
- editorUi.showHtmlDialog(mxResources.get('create'), 'https://desk.draw.io/support/solutions/articles/16000042542',
- url, function(publicUrl, zoomEnabled, initialZoom, linkTarget, linkColor, fit, allPages, layers, lightbox, editLink)
- {
- editorUi.createHtml(publicUrl, zoomEnabled, initialZoom, linkTarget, linkColor,
- fit, allPages, layers, lightbox, editLink, mxUtils.bind(this, function(html, scriptTag)
- {
- var dlg = new EmbedDialog(editorUi, html + '\n' + scriptTag, null, null, function()
- {
- var wnd = window.open();
- var doc = wnd.document;
-
- if (doc != null)
- {
- if (document.compatMode === 'CSS1Compat')
- {
- doc.writeln('<!DOCTYPE html>');
- }
-
- doc.writeln('<html>');
- doc.writeln('<head><title>' + encodeURIComponent(mxResources.get('preview')) +
- '</title><meta charset="utf-8"></head>');
- doc.writeln('<body>');
- doc.writeln(html);
-
- var direct = mxClient.IS_IE || mxClient.IS_EDGE || document.documentMode != null;
-
- if (direct)
- {
- doc.writeln(scriptTag);
- }
-
- doc.writeln('</body>');
- doc.writeln('</html>');
- doc.close();
-
- // Adds script tag after closing page and delay to fix timing issues
- if (!direct)
- {
- var info = wnd.document.createElement('div');
- info.marginLeft = '26px';
- info.marginTop = '26px';
- mxUtils.write(info, mxResources.get('updatingDocument'));
-
- var img = wnd.document.createElement('img');
- img.setAttribute('src', window.location.protocol + '//' + window.location.hostname +
- '/' + IMAGE_PATH + '/spin.gif');
- img.style.marginLeft = '6px';
- info.appendChild(img);
-
- wnd.document.body.insertBefore(info, wnd.document.body.firstChild);
-
- window.setTimeout(function()
- {
- var script = document.createElement('script');
- script.type = 'text/javascript';
- script.src = /<script.*?src="(.*?)"/.exec(scriptTag)[1];
- doc.body.appendChild(script);
-
- info.parentNode.removeChild(info);
- }, 20);
- }
- }
- else
- {
- editorUi.handleError({message: mxResources.get('errorUpdatingPreview')});
- }
- });
- editorUi.showDialog(dlg.container, 440, 240, true, true);
- dlg.init();
- }));
- });
- });
- }
- }));
-
- editorUi.actions.put('liveImage', new Action('Live image...', function()
- {
- var current = editorUi.getCurrentFile();
-
- if (current != null && editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.getPublicUrl(editorUi.getCurrentFile(), function(url)
- {
- editorUi.spinner.stop();
-
- if (url != null)
- {
- var dlg = new EmbedDialog(editorUi, '<img src="' + ((current.constructor != DriveFile) ?
- url : 'https://drive.google.com/uc?id=' + current.getId()) + '"/>');
- editorUi.showDialog(dlg.container, 440, 240, true, true);
- dlg.init();
- }
- else
- {
- editorUi.handleError({message: mxResources.get('invalidPublicUrl')});
- }
- });
- }
- }));
-
- editorUi.actions.put('embedImage', new Action(mxResources.get('image') + '...', function()
- {
- editorUi.showEmbedImageDialog(function(fit, shadow, retina, lightbox, editLink, layers)
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.createEmbedImage(fit, shadow, retina, lightbox, editLink, layers, function(result)
- {
- editorUi.spinner.stop();
- var dlg = new EmbedDialog(editorUi, result);
- editorUi.showDialog(dlg.container, 440, 240, true, true);
- dlg.init();
- }, function(err)
- {
- editorUi.spinner.stop();
- editorUi.handleError(err);
- });
- }
- }, mxResources.get('image'), mxResources.get('retina'), editorUi.isExportToCanvas());
- }));
- editorUi.actions.put('embedSvg', new Action(mxResources.get('formatSvg') + '...', function()
- {
- editorUi.showEmbedImageDialog(function(fit, shadow, image, lightbox, editLink, layers)
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.createEmbedSvg(fit, shadow, image, lightbox, editLink, layers, function(result)
- {
- editorUi.spinner.stop();
-
- var dlg = new EmbedDialog(editorUi, result);
- editorUi.showDialog(dlg.container, 440, 240, true, true);
- dlg.init();
- }, function(err)
- {
- editorUi.spinner.stop();
- editorUi.handleError(err);
- });
- }
- }, mxResources.get('formatSvg'), mxResources.get('image'),
- true, 'https://desk.draw.io/support/solutions/articles/16000042548');
- }));
-
- editorUi.actions.put('embedIframe', new Action(mxResources.get('iframe') + '...', function()
- {
- var bounds = graph.getGraphBounds();
-
- editorUi.showPublishLinkDialog(mxResources.get('iframe'), null, '100%',
- (Math.ceil((bounds.y + bounds.height - graph.view.translate.y) / graph.view.scale) + 2),
- function(linkTarget, linkColor, allPages, lightbox, editLink, layers, width, height)
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.getPublicUrl(editorUi.getCurrentFile(), function(url)
- {
- editorUi.spinner.stop();
-
- var dlg = new EmbedDialog(editorUi, '<iframe frameborder="0" style="width:' + width +
- ';height:' + height + ';" src="' + editorUi.createLink(linkTarget, linkColor,
- allPages, lightbox, editLink, layers, url) + '"></iframe>');
- editorUi.showDialog(dlg.container, 440, 240, true, true);
- dlg.init();
- });
- }
- }, true);
- }));
-
- editorUi.actions.put('publishLink', new Action(mxResources.get('link') + '...', function()
- {
- editorUi.showPublishLinkDialog(null, null, null, null,
- function(linkTarget, linkColor, allPages, lightbox, editLink, layers)
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.getPublicUrl(editorUi.getCurrentFile(), function(url)
- {
- editorUi.spinner.stop();
- var dlg = new EmbedDialog(editorUi, editorUi.createLink(linkTarget,
- linkColor, allPages, lightbox, editLink, layers, url));
- editorUi.showDialog(dlg.container, 440, 240, true, true);
- dlg.init();
- });
- }
- });
- }));
- editorUi.actions.addAction('googleDocs...', function()
- {
- editorUi.openLink('http://docsaddon.draw.io');
- });
- editorUi.actions.addAction('googleSlides...', function()
- {
- editorUi.openLink('https://slidesaddon.draw.io');
- });
- editorUi.actions.addAction('googleSites...', function()
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.getPublicUrl(editorUi.getCurrentFile(), function(url)
- {
- editorUi.spinner.stop();
- var dlg = new GoogleSitesDialog(editorUi, url);
- editorUi.showDialog(dlg.container, 420, 256, true, true);
- dlg.init();
- });
- }
- });
- // Adds plugins menu item only if localStorage is available for storing the plugins
- if (isLocalStorage || mxClient.IS_CHROMEAPP)
- {
- var action = editorUi.actions.addAction('scratchpad', function()
- {
- editorUi.toggleScratchpad();
- });
-
- action.setToggleAction(true);
- action.setSelectedCallback(function() { return editorUi.scratchpad != null; });
- editorUi.actions.addAction('plugins...', function()
- {
- editorUi.showDialog(new PluginsDialog(editorUi).container, 360, 170, true, false);
- });
- }
-
- var action = editorUi.actions.addAction('search', function()
- {
- var visible = editorUi.sidebar.isEntryVisible('search');
- editorUi.sidebar.showPalette('search', !visible);
-
- if (isLocalStorage)
- {
- mxSettings.settings.search = !visible;
- mxSettings.save();
- }
- });
-
- action.setToggleAction(true);
- action.setSelectedCallback(function() { return editorUi.sidebar.isEntryVisible('search'); });
-
- if (urlParams['embed'] == '1')
- {
- editorUi.actions.get('save').funct = function(exit)
- {
- if (graph.isEditing())
- {
- graph.stopEditing();
- }
-
- var data = (urlParams['pages'] != '0' || (editorUi.pages != null && editorUi.pages.length > 1)) ?
- editorUi.getFileData(true) : mxUtils.getXml(editorUi.editor.getGraphXml());
-
- if (urlParams['proto'] == 'json')
- {
- var msg = editorUi.createLoadMessage('save');
- msg.xml = data;
-
- if (exit)
- {
- msg.exit = true;
- }
-
- data = JSON.stringify(msg);
- }
-
- var parent = window.opener || window.parent;
- parent.postMessage(data, '*');
-
- if (urlParams['modified'] != '0' && urlParams['keepmodified'] != '1')
- {
- editorUi.editor.modified = false;
- editorUi.editor.setStatus('');
- }
-
- //Add support to saving files if embedded mode is running with files
- var file = editorUi.getCurrentFile();
-
- if (file != null)
- {
- editorUi.saveFile();
- }
- };
-
- editorUi.actions.addAction('saveAndExit', function()
- {
- editorUi.actions.get('save').funct(true);
- });
-
- editorUi.actions.addAction('exit', function()
- {
- var fn = function()
- {
- editorUi.editor.modified = false;
- var msg = (urlParams['proto'] == 'json') ? JSON.stringify({event: 'exit',
- modified: editorUi.editor.modified}) : '';
- var parent = window.opener || window.parent;
- parent.postMessage(msg, '*');
- }
-
- if (!editorUi.editor.modified)
- {
- fn();
- }
- else
- {
- editorUi.confirm(mxResources.get('allChangesLost'), null, fn,
- mxResources.get('cancel'), mxResources.get('discardChanges'));
- }
- });
- }
-
- this.put('exportAs', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- if (editorUi.isExportToCanvas())
- {
- this.addMenuItems(menu, ['exportPng'], parent);
-
- if (editorUi.jpgSupported)
- {
- this.addMenuItems(menu, ['exportJpg'], parent);
- }
- }
-
- // Disabled for standalone mode in iOS because new tab cannot be closed
- else if (!editorUi.isOffline() && (!mxClient.IS_IOS || !navigator.standalone))
- {
- this.addMenuItems(menu, ['exportPng', 'exportJpg'], parent);
- }
-
- this.addMenuItems(menu, ['exportSvg', '-'], parent);
-
- // Redirects export to PDF to print in Chrome App
- if (editorUi.isOffline() || editorUi.printPdfExport)
- {
- this.addMenuItems(menu, ['exportPdf'], parent);
- }
- // Disabled for standalone mode in iOS because new tab cannot be closed
- else if (!editorUi.isOffline() && (!mxClient.IS_IOS || !navigator.standalone))
- {
- this.addMenuItems(menu, ['exportPdf'], parent);
- }
- if (!mxClient.IS_IE && (typeof(VsdxExport) !== 'undefined' || !editorUi.isOffline()))
- {
- this.addMenuItems(menu, ['exportVsdx'], parent);
- }
- this.addMenuItems(menu, ['-', 'exportHtml', 'exportXml', 'exportUrl'], parent);
- if (!editorUi.isOffline())
- {
- menu.addSeparator(parent);
- this.addMenuItem(menu, 'export', parent).firstChild.nextSibling.innerHTML = mxResources.get('advanced') + '...';
- }
- })));
- this.put('importFrom', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- var doImportFile = mxUtils.bind(this, function(data, mime, filename)
- {
- // Gets insert location
- var view = graph.view;
- var bds = graph.getGraphBounds();
- var x = graph.snap(Math.ceil(Math.max(0, bds.x / view.scale - view.translate.x) + 4 * graph.gridSize));
- var y = graph.snap(Math.ceil(Math.max(0, (bds.y + bds.height) / view.scale - view.translate.y) + 4 * graph.gridSize));
- if (data.substring(0, 11) == 'data:image/')
- {
- editorUi.loadImage(data, mxUtils.bind(this, function(img)
- {
- var resizeImages = true;
-
- var doInsert = mxUtils.bind(this, function()
- {
- editorUi.resizeImage(img, data, mxUtils.bind(this, function(data2, w2, h2)
- {
- var s = (resizeImages) ? Math.min(1, Math.min(editorUi.maxImageSize / w2, editorUi.maxImageSize / h2)) : 1;
-
- editorUi.importFile(data, mime, x, y, Math.round(w2 * s), Math.round(h2 * s), filename, function(cells)
- {
- editorUi.spinner.stop();
- graph.setSelectionCells(cells);
- graph.scrollCellToVisible(graph.getSelectionCell());
- });
- }), resizeImages);
- });
-
- if (data.length > editorUi.resampleThreshold)
- {
- editorUi.confirmImageResize(function(doResize)
- {
- resizeImages = doResize;
- doInsert();
- });
- }
- else
- {
- doInsert();
- }
- }), mxUtils.bind(this, function()
- {
- editorUi.handleError({message: mxResources.get('cannotOpenFile')});
- }));
- }
- else
- {
- editorUi.importFile(data, mime, x, y, 0, 0, filename, function(cells)
- {
- editorUi.spinner.stop();
- graph.setSelectionCells(cells);
- graph.scrollCellToVisible(graph.getSelectionCell());
- });
- }
- });
-
- var getMimeType = mxUtils.bind(this, function(filename)
- {
- var mime = 'text/xml';
-
- if (/\.png$/i.test(filename))
- {
- mime = 'image/png';
- }
- else if (/\.jpe?g$/i.test(filename))
- {
- mime = 'image/jpg';
- }
- else if (/\.gif$/i.test(filename))
- {
- mime = 'image/gif';
- }
-
- return mime;
- });
-
- function pickFileFromService(service)
- {
- // Drive requires special arguments for libraries and bypassing realtime
- service.pickFile(function(id)
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- // NOTE The third argument in getFile says denyConvert to match
- // the existing signature in the original DriveClient which has
- // as slightly different semantic, but works the same way.
- service.getFile(id, function(file)
- {
- var mime = (file.getData().substring(0, 11) == 'data:image/') ? getMimeType(file.getTitle()) : 'text/xml';
-
- // Imports SVG as images
- if (/\.svg$/i.test(file.getTitle()) && !editorUi.editor.isDataSvg(file.getData()))
- {
- file.setData(editorUi.createSvgDataUri(file.getData()));
- mime = 'image/svg+xml';
- }
-
- doImportFile(file.getData(), mime, file.getTitle());
- },
- function(resp)
- {
- editorUi.handleError(resp, (resp != null) ? mxResources.get('errorLoadingFile') : null);
- }, service == editorUi.drive);
- }
- }, true);
- };
-
- if (typeof(google) != 'undefined' && typeof(google.picker) != 'undefined')
- {
- if (editorUi.drive != null)
- {
- // Requires special arguments for libraries and realtime
- menu.addItem(mxResources.get('googleDrive') + '...', null, function()
- {
- pickFileFromService(editorUi.drive);
- }, parent);
- }
- else if (googleEnabled && typeof window.DriveClient === 'function')
- {
- menu.addItem(mxResources.get('googleDrive') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
- }
- if (editorUi.oneDrive != null)
- {
- menu.addItem(mxResources.get('oneDrive') + '...', null, function()
- {
- pickFileFromService(editorUi.oneDrive);
- }, parent);
- }
- else if (oneDriveEnabled && typeof window.OneDriveClient === 'function')
- {
- menu.addItem(mxResources.get('oneDrive') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
- if (editorUi.dropbox != null)
- {
- menu.addItem(mxResources.get('dropbox') + '...', null, function()
- {
- pickFileFromService(editorUi.dropbox);
- }, parent);
- }
- else if (dropboxEnabled && typeof window.DropboxClient === 'function')
- {
- menu.addItem(mxResources.get('dropbox') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
-
- if (editorUi.gitHub != null)
- {
- menu.addItem(mxResources.get('github') + '...', null, function()
- {
- pickFileFromService(editorUi.gitHub);
- }, parent);
- }
- if (editorUi.trello != null)
- {
- menu.addItem(mxResources.get('trello') + '...', null, function()
- {
- pickFileFromService(editorUi.trello);
- }, parent);
- }
- else if (trelloEnabled && typeof window.TrelloClient === 'function')
- {
- menu.addItem(mxResources.get('trello') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
-
- menu.addSeparator(parent);
- if (isLocalStorage && urlParams['browser'] != '0')
- {
- menu.addItem(mxResources.get('browser') + '...', null, function()
- {
- editorUi.importLocalFile(false);
- }, parent);
- }
- menu.addItem(mxResources.get('device') + '...', null, function()
- {
- editorUi.importLocalFile(true);
- }, parent);
- if (!editorUi.isOffline())
- {
- menu.addSeparator(parent);
-
- menu.addItem(mxResources.get('url') + '...', null, function()
- {
- var dlg = new FilenameDialog(editorUi, '', mxResources.get('import'), function(fileUrl)
- {
- if (fileUrl != null && fileUrl.length > 0 && editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- var mime = (/(\.png)($|\?)/i.test(fileUrl)) ? 'image/png' : 'text/xml';
-
- // Uses proxy to avoid CORS issues
- editorUi.loadUrl(PROXY_URL + '?url=' + encodeURIComponent(fileUrl), function(data)
- {
- doImportFile(data, mime, fileUrl);
- },
- function ()
- {
- editorUi.spinner.stop();
- editorUi.handleError(null, mxResources.get('errorLoadingFile'));
- }, mime == 'image/png');
- }
- }, mxResources.get('url'));
- editorUi.showDialog(dlg.container, 300, 80, true, true);
- dlg.init();
- }, parent);
- }
- }))).isEnabled = isGraphEnabled;
- this.put('theme', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- var theme = mxSettings.getUi();
- var item = menu.addItem(mxResources.get('automatic'), null, function()
- {
- mxSettings.setUi('');
- mxSettings.save();
- editorUi.alert(mxResources.get('restartForChangeRequired'));
- }, parent);
-
- if (theme != 'kennedy' && theme != 'atlas' &&
- theme != 'dark' && theme != 'min')
- {
- menu.addCheckmark(item, Editor.checkmarkImage);
- }
- menu.addSeparator(parent);
-
- item = menu.addItem(mxResources.get('kennedy'), null, function()
- {
- mxSettings.setUi('kennedy');
- mxSettings.save();
- editorUi.alert(mxResources.get('restartForChangeRequired'));
- }, parent);
- if (theme == 'kennedy')
- {
- menu.addCheckmark(item, Editor.checkmarkImage);
- }
- item = menu.addItem(mxResources.get('minimal'), null, function()
- {
- mxSettings.setUi('min');
- mxSettings.save();
- editorUi.alert(mxResources.get('restartForChangeRequired'));
- }, parent);
-
- if (theme == 'min')
- {
- menu.addCheckmark(item, Editor.checkmarkImage);
- }
-
- item = menu.addItem(mxResources.get('atlas'), null, function()
- {
- mxSettings.setUi('atlas');
- mxSettings.save();
- editorUi.alert(mxResources.get('restartForChangeRequired'));
- }, parent);
-
- if (theme == 'atlas')
- {
- menu.addCheckmark(item, Editor.checkmarkImage);
- }
-
- item = menu.addItem(mxResources.get('dark'), null, function()
- {
- mxSettings.setUi('dark');
- mxSettings.save();
- editorUi.alert(mxResources.get('restartForChangeRequired'));
- }, parent);
-
- if (theme == 'dark')
- {
- menu.addCheckmark(item, Editor.checkmarkImage);
- }
- })));
- var renameAction = this.editorUi.actions.addAction('rename...', mxUtils.bind(this, function()
- {
- var file = this.editorUi.getCurrentFile();
-
- if (file != null)
- {
- var filename = (file.getTitle() != null) ? file.getTitle() : this.editorUi.defaultFilename;
-
- var dlg = new FilenameDialog(this.editorUi, filename, mxResources.get('rename'), mxUtils.bind(this, function(title)
- {
- if (title != null && title.length > 0 && file != null && title != file.getTitle() &&
- this.editorUi.spinner.spin(document.body, mxResources.get('renaming')))
- {
- // Delete old file, save new file in dropbox if autosize is enabled
- file.rename(title, mxUtils.bind(this, function(resp)
- {
- this.editorUi.spinner.stop();
- }),
- mxUtils.bind(this, function(resp)
- {
- this.editorUi.handleError(resp, (resp != null) ? mxResources.get('errorRenamingFile') : null);
- }));
- }
- }), (file.constructor == DriveFile || file.constructor == StorageFile) ?
- mxResources.get('diagramName') : null, function(name)
- {
- if (name != null && name.length > 0)
- {
- return true;
- }
-
- editorUi.showError(mxResources.get('error'), mxResources.get('invalidName'), mxResources.get('ok'));
-
- return false;
- }, null, null, null, null, editorUi.editor.fileExtensions);
- this.editorUi.showDialog(dlg.container, 340, 90, true, true);
- dlg.init();
- }
- }));
-
- renameAction.isEnabled = function()
- {
- return this.enabled && isGraphEnabled.apply(this, arguments);
- }
-
- renameAction.visible = urlParams['embed'] != '1';
-
- editorUi.actions.addAction('makeCopy...', mxUtils.bind(this, function()
- {
- var file = editorUi.getCurrentFile();
-
- if (file != null)
- {
- var title = editorUi.getCopyFilename(file);
- if (file.constructor == DriveFile)
- {
- var dlg = new CreateDialog(editorUi, title, mxUtils.bind(this, function(newTitle, mode)
- {
- // Mode is "download" if Create button is pressed, means use Google Drive
- if (mode == 'download')
- {
- mode = App.MODE_GOOGLE;
- }
-
- if (newTitle != null && newTitle.length > 0)
- {
- if (mode == App.MODE_GOOGLE)
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('saving')))
- {
- // Saveas does not update the file descriptor in Google Drive
- file.saveAs(newTitle, mxUtils.bind(this, function(resp)
- {
- // Replaces file descriptor in-place and saves
- file.desc = resp;
-
- // Makes sure the latest XML is in the file
- file.save(false, mxUtils.bind(this, function()
- {
- editorUi.spinner.stop();
- file.setModified(false);
- file.addAllSavedStatus();
- }), mxUtils.bind(this, function(resp)
- {
- editorUi.handleError(resp);
- }));
- }), mxUtils.bind(this, function(resp)
- {
- editorUi.handleError(resp);
- }));
- }
- }
- else
- {
- editorUi.createFile(newTitle, editorUi.getFileData(true), null, mode);
- }
- }
- }), mxUtils.bind(this, function()
- {
- editorUi.hideDialog();
- }), mxResources.get('makeCopy'), mxResources.get('create'), null,
- null, null, null, true, null, null, null, null,
- editorUi.editor.fileExtensions);
- editorUi.showDialog(dlg.container, 420, 380, true, true);
- dlg.init();
- }
- else
- {
- // Creates a copy with no predefined storage
- editorUi.editor.editAsNew(this.editorUi.getFileData(true), title);
- }
- }
- }));
-
- editorUi.actions.addAction('moveToFolder...', mxUtils.bind(this, function()
- {
- var file = editorUi.getCurrentFile();
-
- if (file.getMode() == App.MODE_GOOGLE || file.getMode() == App.MODE_ONEDRIVE)
- {
- var isInRoot = false;
-
- if (file.getMode() == App.MODE_GOOGLE && file.desc.parents != null)
- {
- for (var i = 0; i < file.desc.parents.length; i++)
- {
- if (file.desc.parents[i].isRoot)
- {
- isInRoot = true;
- break;
- }
- }
- }
-
- editorUi.pickFolder(file.getMode(), mxUtils.bind(this, function(folderId)
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('moving')))
- {
- file.move(folderId, mxUtils.bind(this, function(resp)
- {
- editorUi.spinner.stop();
- }), mxUtils.bind(this, function(resp)
- {
- editorUi.handleError(resp);
- }));
- }
- }), null, true, isInRoot);
- }
- }));
-
- this.put('publish', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- this.addMenuItems(menu, ['publishLink'], parent);
- })));
- editorUi.actions.put('useOffline', new Action(mxResources.get('useOffline') + '...', function()
- {
- editorUi.openLink('https://app.draw.io/')
- }));
-
- editorUi.actions.put('downloadDesktop', new Action(mxResources.get('downloadDesktop') + '...', function()
- {
- editorUi.openLink('https://get.draw.io/')
- }));
- this.editorUi.actions.addAction('share...', mxUtils.bind(this, function()
- {
- try
- {
- var file = editorUi.getCurrentFile();
-
- if (file != null)
- {
- editorUi.drive.showPermissions(file.getId());
- }
- }
- catch (e)
- {
- editorUi.handleError(e);
- }
- }));
- this.put('embed', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- var file = editorUi.getCurrentFile();
-
- if (file != null && (file.getMode() == App.MODE_GOOGLE ||
- file.getMode() == App.MODE_GITHUB) && /(\.png)$/i.test(file.getTitle()))
- {
- this.addMenuItems(menu, ['liveImage', '-'], parent);
- }
-
- this.addMenuItems(menu, ['embedImage', 'embedSvg', '-', 'embedHtml'], parent);
-
- if (!navigator.standalone && !editorUi.isOffline())
- {
- this.addMenuItems(menu, ['embedIframe'], parent);
- }
- if (urlParams['embed'] != '1' && !editorUi.isOffline())
- {
- this.addMenuItems(menu, ['-', 'googleDocs', 'googleSlides'], parent);
- }
- })));
- var addInsertItem = function(menu, parent, title, method)
- {
- if (method != 'plantUml' || (EditorUi.enablePlantUml && !editorUi.isOffline()))
- {
- menu.addItem(title, null, mxUtils.bind(this, function()
- {
- if (method == 'fromText' || method == 'formatSql' || method == 'plantUml')
- {
- var dlg = new ParseDialog(editorUi, title, method);
- editorUi.showDialog(dlg.container, 620, 420, true, false);
- editorUi.dialog.container.style.overflow = 'auto';
- dlg.init();
- }
- else
- {
- var dlg = new CreateGraphDialog(editorUi, title, method);
- editorUi.showDialog(dlg.container, 620, 420, true, false);
- // Executed after dialog is added to dom
- dlg.init();
- }
- }), parent, null, isGraphEnabled());
- }
- };
-
- var insertVertex = function(value, w, h, style)
- {
- var pt = (graph.isMouseInsertPoint()) ? graph.getInsertPoint() : graph.getFreeInsertPoint();
- var cell = new mxCell(value, new mxGeometry(pt.x, pt.y, w, h), style);
- cell.vertex = true;
-
- graph.getModel().beginUpdate();
- try
- {
- cell = graph.addCell(cell);
- graph.fireEvent(new mxEventObject('cellsInserted', 'cells', [cell]));
- }
- finally
- {
- graph.getModel().endUpdate();
- }
-
- graph.scrollCellToVisible(cell);
- graph.setSelectionCell(cell);
- graph.container.focus();
- if (graph.editAfterInsert)
- {
- graph.startEditing(cell);
- }
-
- return cell;
- };
-
- editorUi.actions.put('exportSvg', new Action(mxResources.get('formatSvg') + '...', function()
- {
- editorUi.showExportDialog(mxResources.get('formatSvg'), true, mxResources.get('export'),
- 'https://support.draw.io/display/DO/Exporting+Files',
- mxUtils.bind(this, function(scale, transparentBackground, ignoreSelection, addShadow,
- editable, embedImages, border, cropImage, currentPage, linkTarget)
- {
- var val = parseInt(scale);
-
- if (!isNaN(val) && val > 0)
- {
- editorUi.exportSvg(val / 100, transparentBackground, ignoreSelection, addShadow,
- editable, embedImages, border, !cropImage, currentPage, linkTarget);
- }
- }), true, null, 'svg');
- }));
-
- editorUi.actions.put('insertText', new Action(mxResources.get('text'), function()
- {
- if (graph.isEnabled() && !graph.isCellLocked(graph.getDefaultParent()))
- {
- graph.startEditingAtCell(insertVertex('Text', 40, 20, 'text;html=1;resizable=0;autosize=1;' +
- 'align=center;verticalAlign=middle;points=[];fillColor=none;strokeColor=none;rounded=0;'));
- }
- }), null, null, Editor.ctrlKey + '+Shift+X').isEnabled = isGraphEnabled;
-
- editorUi.actions.put('insertRectangle', new Action(mxResources.get('rectangle'), function()
- {
- if (graph.isEnabled() && !graph.isCellLocked(graph.getDefaultParent()))
- {
- insertVertex('', 120, 60, 'whiteSpace=wrap;html=1;');
- }
- }), null, null, Editor.ctrlKey + '+K').isEnabled = isGraphEnabled;
- editorUi.actions.put('insertEllipse', new Action(mxResources.get('ellipse'), function()
- {
- if (graph.isEnabled() && !graph.isCellLocked(graph.getDefaultParent()))
- {
- insertVertex('', 80, 80, 'ellipse;whiteSpace=wrap;html=1;');
- }
- }), null, null, Editor.ctrlKey + '+Shift+K').isEnabled = isGraphEnabled;
-
- editorUi.actions.put('insertRhombus', new Action(mxResources.get('rhombus'), function()
- {
- if (graph.isEnabled() && !graph.isCellLocked(graph.getDefaultParent()))
- {
- insertVertex('', 80, 80, 'rhombus;whiteSpace=wrap;html=1;');
- }
- })).isEnabled = isGraphEnabled;
-
- var addInsertMenuItems = mxUtils.bind(this, function(menu, parent, methods)
- {
- for (var i = 0; i < methods.length; i++)
- {
- if (methods[i] == '-')
- {
- menu.addSeparator(parent);
- }
- else
- {
- addInsertItem(menu, parent, mxResources.get(methods[i]) + '...', methods[i]);
- }
- }
- });
- this.put('insert', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- this.addMenuItems(menu, ['insertRectangle', 'insertEllipse', 'insertRhombus', '-',
- 'insertText', 'insertLink', '-', 'insertImage'], parent);
- if (editorUi.insertTemplateEnabled && !editorUi.isOffline())
- {
- this.addMenuItems(menu, ['insertTemplate', '-'], parent);
- }
-
- this.addSubmenu('insertLayout', menu, parent, mxResources.get('layout'));
- menu.addSeparator(parent);
- addInsertMenuItems(menu, parent, ['fromText', 'plantUml', '-', 'formatSql']);
- menu.addItem(mxResources.get('csv') + '...', null, function()
- {
- editorUi.showImportCsvDialog();
- }, parent, null, isGraphEnabled());
- })));
- this.put('insertLayout', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- addInsertMenuItems(menu, parent, ['horizontalFlow', 'verticalFlow', '-', 'horizontalTree',
- 'verticalTree', 'radialTree', '-', 'organic', 'circle']);
- })));
- this.put('openRecent', new Menu(function(menu, parent)
- {
- var recent = editorUi.getRecent();
- if (recent != null)
- {
- for (var i = 0; i < recent.length; i++)
- {
- (function(entry)
- {
- var modeKey = entry.mode;
-
- // Google and oneDrive use different keys
- if (modeKey == App.MODE_GOOGLE)
- {
- modeKey = 'googleDrive';
- }
- else if (modeKey == App.MODE_ONEDRIVE)
- {
- modeKey = 'oneDrive';
- }
-
- menu.addItem(entry.title + ' (' + mxResources.get(modeKey) + ')', null, function()
- {
- editorUi.loadFile(entry.id);
- }, parent);
- })(recent[i]);
- }
- menu.addSeparator(parent);
- }
- menu.addItem(mxResources.get('reset'), null, function()
- {
- editorUi.resetRecent();
- }, parent);
- }));
-
- this.put('openFrom', new Menu(function(menu, parent)
- {
- if (editorUi.drive != null)
- {
- menu.addItem(mxResources.get('googleDrive') + '...', null, function()
- {
- editorUi.pickFile(App.MODE_GOOGLE);
- }, parent);
- }
- else if (googleEnabled && typeof window.DriveClient === 'function')
- {
- menu.addItem(mxResources.get('googleDrive') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
-
- if (editorUi.oneDrive != null)
- {
- menu.addItem(mxResources.get('oneDrive') + '...', null, function()
- {
- editorUi.pickFile(App.MODE_ONEDRIVE);
- }, parent);
- }
- else if (oneDriveEnabled && typeof window.OneDriveClient === 'function')
- {
- menu.addItem(mxResources.get('oneDrive') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
-
- if (editorUi.dropbox != null)
- {
- menu.addItem(mxResources.get('dropbox') + '...', null, function()
- {
- editorUi.pickFile(App.MODE_DROPBOX);
- }, parent);
- }
- else if (dropboxEnabled && typeof window.DropboxClient === 'function')
- {
- menu.addItem(mxResources.get('dropbox') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
- if (editorUi.gitHub != null)
- {
- menu.addItem(mxResources.get('github') + '...', null, function()
- {
- editorUi.pickFile(App.MODE_GITHUB);
- }, parent);
- }
- if (editorUi.trello != null)
- {
- menu.addItem(mxResources.get('trello') + '...', null, function()
- {
- editorUi.pickFile(App.MODE_TRELLO);
- }, parent);
- }
- else if (trelloEnabled && typeof window.TrelloClient === 'function')
- {
- menu.addItem(mxResources.get('trello') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
-
- menu.addSeparator(parent);
- if (isLocalStorage && urlParams['browser'] != '0')
- {
- menu.addItem(mxResources.get('browser') + '...', null, function()
- {
- editorUi.pickFile(App.MODE_BROWSER);
- }, parent);
- }
-
- //if (!mxClient.IS_IOS)
- {
- menu.addItem(mxResources.get('device') + '...', null, function()
- {
- editorUi.pickFile(App.MODE_DEVICE);
- }, parent);
- }
- if (!editorUi.isOffline())
- {
- menu.addSeparator(parent);
-
- menu.addItem(mxResources.get('url') + '...', null, function()
- {
- var dlg = new FilenameDialog(editorUi, '', mxResources.get('open'), function(fileUrl)
- {
- if (fileUrl != null && fileUrl.length > 0)
- {
- if (editorUi.getCurrentFile() == null)
- {
- window.location.hash = '#U' + encodeURIComponent(fileUrl);
- }
- else
- {
- window.openWindow(((mxClient.IS_CHROMEAPP) ?
- 'https://www.draw.io/' : 'https://' + location.host + '/') +
- window.location.search + '#U' + encodeURIComponent(fileUrl));
- }
- }
- }, mxResources.get('url'));
- editorUi.showDialog(dlg.container, 300, 80, true, true);
- dlg.init();
- }, parent);
- }
- }));
-
- if (Editor.enableCustomLibraries)
- {
- this.put('newLibrary', new Menu(function(menu, parent)
- {
- if (typeof(google) != 'undefined' && typeof(google.picker) != 'undefined')
- {
- if (editorUi.drive != null)
- {
- menu.addItem(mxResources.get('googleDrive') + '...', null, function()
- {
- editorUi.showLibraryDialog(null, null, null, null, App.MODE_GOOGLE);
- }, parent);
- }
- else if (googleEnabled && typeof window.DriveClient === 'function')
- {
- menu.addItem(mxResources.get('googleDrive') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
- }
- if (editorUi.oneDrive != null)
- {
- menu.addItem(mxResources.get('oneDrive') + '...', null, function()
- {
- editorUi.showLibraryDialog(null, null, null, null, App.MODE_ONEDRIVE);
- }, parent);
- }
- else if (oneDriveEnabled && typeof window.OneDriveClient === 'function')
- {
- menu.addItem(mxResources.get('oneDrive') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
- if (editorUi.dropbox != null)
- {
- menu.addItem(mxResources.get('dropbox') + '...', null, function()
- {
- editorUi.showLibraryDialog(null, null, null, null, App.MODE_DROPBOX);
- }, parent);
- }
- else if (dropboxEnabled && typeof window.DropboxClient === 'function')
- {
- menu.addItem(mxResources.get('dropbox') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
-
- if (editorUi.gitHub != null)
- {
- menu.addItem(mxResources.get('github') + '...', null, function()
- {
- editorUi.showLibraryDialog(null, null, null, null, App.MODE_GITHUB);
- }, parent);
- }
-
- if (editorUi.trello != null)
- {
- menu.addItem(mxResources.get('trello') + '...', null, function()
- {
- editorUi.showLibraryDialog(null, null, null, null, App.MODE_TRELLO);
- }, parent);
- }
- else if (trelloEnabled && typeof window.TrelloClient === 'function')
- {
- menu.addItem(mxResources.get('trello') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
-
- menu.addSeparator(parent);
-
- if (isLocalStorage && urlParams['browser'] != '0')
- {
- menu.addItem(mxResources.get('browser') + '...', null, function()
- {
- editorUi.showLibraryDialog(null, null, null, null, App.MODE_BROWSER);
- }, parent);
- }
-
- //if (!mxClient.IS_IOS)
- {
- menu.addItem(mxResources.get('device') + '...', null, function()
- {
- editorUi.showLibraryDialog(null, null, null, null, App.MODE_DEVICE);
- }, parent);
- }
- }));
-
- this.put('openLibraryFrom', new Menu(function(menu, parent)
- {
- if (typeof(google) != 'undefined' && typeof(google.picker) != 'undefined')
- {
- if (editorUi.drive != null)
- {
- menu.addItem(mxResources.get('googleDrive') + '...', null, function()
- {
- editorUi.pickLibrary(App.MODE_GOOGLE);
- }, parent);
- }
- else if (googleEnabled && typeof window.DriveClient === 'function')
- {
- menu.addItem(mxResources.get('googleDrive') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
- }
- if (editorUi.oneDrive != null)
- {
- menu.addItem(mxResources.get('oneDrive') + '...', null, function()
- {
- editorUi.pickLibrary(App.MODE_ONEDRIVE);
- }, parent);
- }
- else if (oneDriveEnabled && typeof window.OneDriveClient === 'function')
- {
- menu.addItem(mxResources.get('oneDrive') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
- if (editorUi.dropbox != null)
- {
- menu.addItem(mxResources.get('dropbox') + '...', null, function()
- {
- editorUi.pickLibrary(App.MODE_DROPBOX);
- }, parent);
- }
- else if (dropboxEnabled && typeof window.DropboxClient === 'function')
- {
- menu.addItem(mxResources.get('dropbox') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
-
- if (editorUi.gitHub != null)
- {
- menu.addItem(mxResources.get('github') + '...', null, function()
- {
- editorUi.pickLibrary(App.MODE_GITHUB);
- }, parent);
- }
-
- if (editorUi.trello != null)
- {
- menu.addItem(mxResources.get('trello') + '...', null, function()
- {
- editorUi.pickLibrary(App.MODE_TRELLO);
- }, parent);
- }
- else if (trelloEnabled && typeof window.TrelloClient === 'function')
- {
- menu.addItem(mxResources.get('trello') + ' (' + mxResources.get('loading') + '...)', null, function()
- {
- // do nothing
- }, parent, null, false);
- }
-
- menu.addSeparator(parent);
-
- if (isLocalStorage && urlParams['browser'] != '0')
- {
- menu.addItem(mxResources.get('browser') + '...', null, function()
- {
- editorUi.pickLibrary(App.MODE_BROWSER);
- }, parent);
- }
-
- //if (!mxClient.IS_IOS)
- {
- menu.addItem(mxResources.get('device') + '...', null, function()
- {
- editorUi.pickLibrary(App.MODE_DEVICE);
- }, parent);
- }
-
- if (!editorUi.isOffline())
- {
- menu.addSeparator(parent);
-
- menu.addItem(mxResources.get('url') + '...', null, function()
- {
- var dlg = new FilenameDialog(editorUi, '', mxResources.get('open'), function(fileUrl)
- {
- if (fileUrl != null && fileUrl.length > 0 && editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- var realUrl = fileUrl;
-
- if (!editorUi.editor.isCorsEnabledForUrl(fileUrl))
- {
- realUrl = PROXY_URL + '?url=' + encodeURIComponent(fileUrl);
- }
-
- // Uses proxy to avoid CORS issues
- mxUtils.get(realUrl, function(req)
- {
- if (req.getStatus() >= 200 && req.getStatus() <= 299)
- {
- editorUi.spinner.stop();
-
- try
- {
- editorUi.loadLibrary(new UrlLibrary(this, req.getText(), fileUrl));
- }
- catch (e)
- {
- editorUi.handleError(e, mxResources.get('errorLoadingFile'));
- }
- }
- else
- {
- editorUi.spinner.stop();
- editorUi.handleError(null, mxResources.get('errorLoadingFile'));
- }
- }, function()
- {
- editorUi.spinner.stop();
- editorUi.handleError(null, mxResources.get('errorLoadingFile'));
- });
- }
- }, mxResources.get('url'));
- editorUi.showDialog(dlg.container, 300, 80, true, true);
- dlg.init();
- }, parent);
- }
-
- if (urlParams['confLib'] == '1')
- {
- menu.addSeparator(parent);
-
- menu.addItem(mxResources.get('confluenceCloud') + '...', null, function()
- {
- editorUi.showRemotelyStoredLibrary(mxResources.get('libraries'));
- }, parent);
- }
- }));
- }
-
- // Overrides edit menu to add find and editGeometry
- this.put('edit', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- this.addMenuItems(menu, ['undo', 'redo', '-', 'cut', 'copy', 'paste', 'delete', '-', 'duplicate', '-',
- 'find', '-', 'editData', 'editTooltip', '-', 'editStyle', 'editGeometry', '-',
- 'edit', '-', 'editLink', 'openLink', '-',
- 'selectVertices', 'selectEdges', 'selectAll', 'selectNone', '-', 'lockUnlock']);
- })));
- var action = editorUi.actions.addAction('comments', mxUtils.bind(this, function()
- {
- if (this.commentsWindow == null)
- {
- // LATER: Check outline window for initial placement
- this.commentsWindow = new CommentsWindow(editorUi, document.body.offsetWidth - 380, 120, 300, 350);
- //TODO Are these events needed?
- this.commentsWindow.window.addListener('show', function()
- {
- editorUi.fireEvent(new mxEventObject('comments'));
- });
- this.commentsWindow.window.addListener('hide', function()
- {
- editorUi.fireEvent(new mxEventObject('comments'));
- });
- this.commentsWindow.window.setVisible(true);
- editorUi.fireEvent(new mxEventObject('comments'));
- }
- else
- {
- this.commentsWindow.window.setVisible(!this.commentsWindow.window.isVisible());
- this.commentsWindow.refreshCommentsTime();
- }
- }));
- action.setToggleAction(true);
- action.setSelectedCallback(mxUtils.bind(this, function() { return this.commentsWindow != null && this.commentsWindow.window.isVisible(); }));
- // Destroys comments window to force update or disable if not supported
- editorUi.editor.addListener('fileLoaded', mxUtils.bind(this, function()
- {
- if (this.commentsWindow != null)
- {
- this.commentsWindow.destroy();
- this.commentsWindow = null;
- }
- }));
-
- // Extends toolbar dropdown to add comments
- var viewPanelsMenu = this.get('viewPanels');
- var viewPanelsFunct = viewPanelsMenu.funct;
-
- viewPanelsMenu.funct = function(menu, parent)
- {
- viewPanelsFunct.apply(this, arguments);
-
- if (editorUi.commentsSupported())
- {
- editorUi.menus.addMenuItems(menu, ['comments'], parent);
- }
- };
- // Overrides view menu to add search and scratchpad
- this.put('view', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- this.addMenuItems(menu, ((this.editorUi.format != null) ? ['formatPanel'] : []).
- concat(['outline', 'layers']).concat((editorUi.commentsSupported()) ?
- ['comments', '-'] : ['-']));
-
- this.addMenuItems(menu, ['-', 'search'], parent);
-
- if (isLocalStorage || mxClient.IS_CHROMEAPP)
- {
- var item = this.addMenuItem(menu, 'scratchpad', parent);
-
- if (!editorUi.isOffline() || mxClient.IS_CHROMEAPP || EditorUi.isElectronApp)
- {
- this.addLinkToItem(item, 'https://desk.draw.io/support/solutions/articles/16000042367');
- }
- }
-
- this.addMenuItems(menu, ['shapes', '-', 'pageView', 'pageScale', '-',
- 'scrollbars', 'tooltips', '-',
- 'grid', 'guides'], parent);
-
- if (mxClient.IS_SVG && (document.documentMode == null || document.documentMode > 9))
- {
- this.addMenuItem(menu, 'shadowVisible', parent);
- }
-
- this.addMenuItems(menu, ['-', 'connectionArrows', 'connectionPoints', '-',
- 'resetView', 'zoomIn', 'zoomOut'], parent);
- })));
-
- this.put('extras', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- if (urlParams['embed'] != '1')
- {
- this.addSubmenu('theme', menu, parent);
- menu.addSeparator(parent);
- }
-
- this.addMenuItems(menu, ['copyConnect', 'collapseExpand', '-'], parent);
- if (typeof(MathJax) !== 'undefined')
- {
- var item = this.addMenuItem(menu, 'mathematicalTypesetting', parent);
-
- if (!editorUi.isOffline() || mxClient.IS_CHROMEAPP || EditorUi.isElectronApp)
- {
- this.addLinkToItem(item, 'https://desk.draw.io/support/solutions/articles/16000032875');
- }
- }
-
- if (urlParams['embed'] != '1')
- {
- this.addMenuItems(menu, ['autosave'], parent);
- }
- this.addMenuItems(menu, ['-', 'createShape', 'editDiagram'], parent);
- menu.addSeparator(parent);
-
- if (urlParams['embed'] != '1' && (isLocalStorage || mxClient.IS_CHROMEAPP))
- {
- this.addMenuItems(menu, ['showStartScreen'], parent);
- }
- if (!editorUi.isOfflineApp() && isLocalStorage)
- {
- this.addMenuItem(menu, 'plugins', parent);
- }
- menu.addSeparator(parent);
- this.addMenuItem(menu, 'tags', parent);
-
- // Adds trailing separator in case new plugin entries are added
- menu.addSeparator(parent);
-
- if (urlParams['newTempDlg'] == '1')
- {
- editorUi.actions.addAction('templates', function()
- {
- var tempDlg = new TemplatesDialog();
- editorUi.showDialog(tempDlg.container, tempDlg.width, tempDlg.height, true, false, null, false, true);
- tempDlg.init(editorUi, function(xml){console.log(xml)}, null,
- null, null, "user", function(callback, username)
- {
- setTimeout(function(){
- username? callback([
- {url: '123', title: 'Test 1Test 1Test 1Test 1Test 1Test 1Test 11Test 1Test 11Test 1Test 1dgdsgdfg fdg dfgdfg dfg dfg'},
- {url: '123', title: 'Test 2', imgUrl: 'https://www.google.com.eg/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'},
- {url: '123', title: 'Test 3', changedBy: 'Ashraf Teleb', lastModifiedOn: 'Yesterday'},
- {url: '123', title: 'Test 4'},
- {url: '123', title: 'Test 5'},
- {url: '123', title: 'Test 6'}
- ]) : callback([
- {url: '123', title: 'Test 4', imgUrl: 'https://images.pexels.com/photos/459225/pexels-photo-459225.jpeg'},
- {url: '123', title: 'Test 5'},
- {url: '123', title: 'Test 6'},
- {url: '123', title: 'Test 1Test 1Test 1Test 1Test 1Test 1Test 11Test 1Test 11Test 1Test 1dgdsgdfg fdg dfgdfg dfg dfg'},
- {url: '123', title: 'Test 2', imgUrl: 'https://www.google.com.eg/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'},
- {url: '123', title: 'Test 3', changedBy: 'Ashraf Teleb', lastModifiedOn: 'Yesterday'}
- ]);
- console.log(username);
- }, 1000);
- }, function(str, callback, username)
- {
- setTimeout(function(){
- callback(username? [
- {url: '123', title: str +'Test 1Test 1Test 1Test 1Test 1Test 1Test 1'},
- {url: '123', title: str +'Test 2'},
- {url: '123', title: str +'Test 3'},
- {url: '123', title: str +'Test 4'},
- {url: '123', title: str +'Test 5'},
- {url: '123', title: str +'Test 6'}
- ]: [
- {url: '123', title: str +'Test 5'},
- {url: '123', title: str +'Test 6'},
- {url: '123', title: str +'Test 1Test 1Test 1Test 1Test 1Test 1Test 1'},
- {url: '123', title: str +'Test 2'},
- {url: '123', title: str +'Test 3'},
- {url: '123', title: str +'Test 4'}
- ]);
- }, 2000);
- }, null);
- });
- this.addMenuItem(menu, 'templates', parent);
- }
- })));
- this.put('file', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- if (urlParams['embed'] == '1')
- {
- this.addSubmenu('importFrom', menu, parent);
- this.addSubmenu('exportAs', menu, parent);
- this.addSubmenu('embed', menu, parent);
- if (urlParams['libraries'] == '1')
- {
- this.addMenuItems(menu, ['-'], parent);
- this.addSubmenu('newLibrary', menu, parent);
- this.addSubmenu('openLibraryFrom', menu, parent);
- }
-
- if (editorUi.isRevisionHistorySupported())
- {
- this.addMenuItems(menu, ['-', 'revisionHistory'], parent);
- }
-
- this.addMenuItems(menu, ['-', 'pageSetup', 'print', '-', 'rename', 'save'], parent);
-
- if (urlParams['saveAndExit'] == '1')
- {
- this.addMenuItems(menu, ['saveAndExit'], parent);
- }
-
- this.addMenuItems(menu, ['exit'], parent);
- }
- else
- {
- var file = this.editorUi.getCurrentFile();
-
- if (file != null && file.constructor == DriveFile)
- {
- if (file.isRestricted())
- {
- this.addMenuItems(menu, ['exportOptionsDisabled'], parent);
- }
-
- this.addMenuItems(menu, ['save', '-', 'share'], parent);
-
- var item = this.addMenuItem(menu, 'synchronize', parent);
-
- if (!editorUi.isOffline() || mxClient.IS_CHROMEAPP || EditorUi.isElectronApp)
- {
- this.addLinkToItem(item, 'https://desk.draw.io/support/solutions/articles/16000087947');
- }
-
- menu.addSeparator(parent);
- }
- else
- {
- this.addMenuItems(menu, ['new'], parent);
- }
-
- this.addSubmenu('openFrom', menu, parent);
- if (isLocalStorage)
- {
- this.addSubmenu('openRecent', menu, parent);
- }
-
- if (file != null && file.constructor == DriveFile)
- {
- this.addMenuItems(menu, ['new', '-', 'rename', 'makeCopy', 'moveToFolder'], parent);
- }
- else
- {
- if (!mxClient.IS_CHROMEAPP && !EditorUi.isElectronApp &&
- file != null && file.constructor != LocalFile)
- {
- menu.addSeparator(parent);
- var item = this.addMenuItem(menu, 'synchronize', parent);
-
- if (!editorUi.isOffline() || mxClient.IS_CHROMEAPP || EditorUi.isElectronApp)
- {
- this.addLinkToItem(item, 'https://desk.draw.io/support/solutions/articles/16000087947');
- }
- }
-
- this.addMenuItems(menu, ['-', 'save', 'saveAs'], parent);
-
- this.addMenuItems(menu, ['-', 'rename'], parent);
- if (editorUi.isOfflineApp())
- {
- if (navigator.onLine && urlParams['stealth'] != '1')
- {
- this.addMenuItems(menu, ['upload'], parent);
- }
- }
- else
- {
- this.addMenuItems(menu, ['makeCopy'], parent);
-
- if (file != null && file.constructor == OneDriveFile)
- {
- this.addMenuItems(menu, ['moveToFolder'], parent);
- }
- }
- }
-
- menu.addSeparator(parent);
- this.addSubmenu('importFrom', menu, parent);
- this.addSubmenu('exportAs', menu, parent);
- menu.addSeparator(parent);
- this.addSubmenu('embed', menu, parent);
- this.addSubmenu('publish', menu, parent);
- menu.addSeparator(parent);
- this.addSubmenu('newLibrary', menu, parent);
- this.addSubmenu('openLibraryFrom', menu, parent);
-
- if (editorUi.isRevisionHistorySupported())
- {
- this.addMenuItems(menu, ['-', 'revisionHistory'], parent);
- }
-
- this.addMenuItems(menu, ['-', 'pageSetup'], parent);
-
- // Cannot use print in standalone mode on iOS as we cannot open new windows
- if (!mxClient.IS_IOS || !navigator.standalone)
- {
- this.addMenuItems(menu, ['print'], parent);
- }
-
- this.addMenuItems(menu, ['-', 'close']);
- }
- })));
- };
- })();
|