123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463 |
- /**
- * 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.addLinkToItem = function(item, href)
- {
- if (item != null)
- {
- var link = document.createElement('span');
- link.setAttribute('title', mxResources.get('help'));
- link.style.cssText = 'color:blue;text-decoration:underline;margin-left:12px;cursor:help;';
-
- var icon = document.createElement('img');
- icon.setAttribute('border', '0');
- icon.setAttribute('valign', 'bottom');
- icon.setAttribute('src', Editor.helpImage);
- link.appendChild(icon);
-
- mxEvent.addGestureListeners(link, mxUtils.bind(this, function(evt)
- {
- this.editorUi.menubar.hideMenu();
- window.open(href);
- mxEvent.consume(evt);
- }));
-
- item.firstChild.nextSibling.appendChild(link);
- }
- };
-
- 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));
- if (!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.get('print').funct = function()
- {
- editorUi.showDialog(new PrintDialog(editorUi).container, 360,
- (editorUi.pages != null && editorUi.pages.length > 1) ?
- 420 : 360, true, true);
- };
- // Export PDF action for chrome OS (same as print with different dialog title)
- editorUi.actions.addAction('exportPdf', function()
- {
- editorUi.showDialog(new PrintDialog(editorUi, mxResources.get('formatPdf')).container, 360,
- (editorUi.pages != null && editorUi.pages.length > 1) ?
- 420 : 360, true, true);
- });
-
- editorUi.actions.addAction('open...', function()
- {
- editorUi.pickFile();
- });
-
- editorUi.actions.addAction('close', function()
- {
- editorUi.fileLoaded(null);
- });
-
- 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()
- {
- var file = editorUi.getCurrentFile();
-
- if (file == null || (file.constructor != DriveFile && file.constructor != DropboxFile) ||
- (editorUi.drive == null && file.constructor == DriveFile) ||
- (editorUi.dropbox == null && file.constructor == DropboxFile))
- {
- editorUi.showError(mxResources.get('error'), mxResources.get('notAvailable'), mxResources.get('ok'));
- }
- else if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- if (file.constructor == DropboxFile)
- {
- // Limit is maximum number of entries to return
- editorUi.dropbox.client.revisions(file.stat.path, {limit: 100}, function(err, stats)
- {
- editorUi.spinner.stop();
-
- if (err == null)
- {
- var revs = [];
-
- for (var i = stats.length - 1; i >= 0; i--)
- {
- (function(stat)
- {
- revs.push({modifiedDate: stat.clientModifiedAt, fileSize: stat.size, getXml: function(success, error)
- {
- editorUi.dropbox.client.readFile('/' + file.stat.path, {versionTag: stat.versionTag}, mxUtils.bind(this, function(err2, data)
- {
- if (err2 == null)
- {
- success(data);
- }
- else
- {
- error(err2);
- }
- }));
- }, getUrl: function()
- {
- return editorUi.getUrl(window.location.pathname + '?rev=' + stat.versionTag + '&chrome=0&edit=_blank') + window.location.hash;
- }});
- })(stats[i]);
- }
-
- var dlg = new RevisionDialog(editorUi, revs);
- editorUi.showDialog(dlg.container, 640, 480, true, true);
- dlg.init();
- }
- else
- {
- editorUi.handleError(err);
- }
- });
- }
- // Google Drive File
- else
- {
- editorUi.drive.executeRequest(gapi.client.drive.revisions.list({'fileId': file.getId()}), function(resp)
- {
- editorUi.spinner.stop();
-
- for (var i = 0; i < resp.items.length; i++)
- {
- (function(item)
- {
- item.getXml = function(success, error)
- {
- // Workaround for vanished head revision is to use current head revision from descriptor
- editorUi.drive.executeRequest(gapi.client.drive.revisions.get({'fileId': file.getId(),
- 'revisionId': (resp.items[resp.items.length - 1] === item) ?
- file.desc.headRevisionId : item.id}), function(resp)
- {
- editorUi.drive.getXmlFile(resp, null, function(file2)
- {
- success(file2.getData());
- }, function(resp)
- {
- error(resp);
- });
- }, function(resp)
- {
- error(resp);
- });
- };
-
- item.getUrl = function()
- {
- return editorUi.getUrl(window.location.pathname + '?rev=' + item.id + '&chrome=0&edit=_blank') + window.location.hash;
- };
- })(resp.items[i]);
- }
-
- var dlg = new RevisionDialog(editorUi, resp.items);
- editorUi.showDialog(dlg.container, 640, 480, true, true);
- dlg.init();
- }, function(resp)
- {
- editorUi.spinner.stop();
- editorUi.handleError(resp);
- });
- }
- }
- });
-
- editorUi.actions.addAction('createRevision', function()
- {
- editorUi.actions.get('save').funct();
- }, null, null, 'Ctrl+S');
- 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;
- window.open(window.location.protocol + '//' + window.location.host + '/?create=drawdata&' +
- ((editorUi.mode == App.MODE_DROPBOX) ? 'mode=dropbox&' : '') +
- 'title=' + encodeURIComponent(filename));
- }
- });
- if (typeof(MathJax) !== 'undefined')
- {
- var action = editorUi.actions.addAction('mathematicalTypesetting', function()
- {
- editorUi.setMathEnabled(!editorUi.isMathEnabled());
- });
-
- action.setToggleAction(true);
- action.setSelectedCallback(function() { return editorUi.isMathEnabled(); });
- action.isEnabled = isGraphEnabled;
- }
-
- if (isLocalStorage)
- {
- 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, 180, 180, true, true);
- dlg.init();
- }
- }, null, null, 'Ctrl+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', 'startStill', 'startArrow', 'startSize'];
-
- 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, 'Ctrl+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, 'Ctrl+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();
- }
- }));
-
- action = editorUi.actions.put('shadowVisible', new Action(mxResources.get('shadow'), function()
- {
- graph.setShadowVisible(!graph.shadowVisible);
- }));
- action.setToggleAction(true);
- action.setSelectedCallback(function() { return graph.shadowVisible; });
- editorUi.actions.put('about', new Action(mxResources.get('aboutDrawio') + '...', function()
- {
- editorUi.showDialog(new AboutDialog(editorUi).container, 220, 300, true, true);
- }, null, null, 'F1'));
-
- editorUi.actions.addAction('userManual...', function()
- {
- window.open('https://support.draw.io/display/DO/Draw.io+Online+User+Manual');
- });
- editorUi.actions.addAction('support...', function()
- {
- window.open('https://support.draw.io/display/DO/draw.io+Online+Support');
- });
- editorUi.actions.addAction('exportOptionsDisabled...', function()
- {
- editorUi.handleError({message: mxResources.get('exportOptionsDisabledDetails')},
- mxResources.get('exportOptionsDisabled'));
- });
- editorUi.actions.addAction('keyboardShortcuts...', function()
- {
- if (mxClient.IS_CHROMEAPP)
- {
- window.open('https://www.draw.io/shortcuts.svg');
- }
- else if (mxClient.IS_SVG)
- {
- window.open('shortcuts.svg');
- }
- else
- {
- window.open('https://www.draw.io/?chrome=0&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()
- {
- window.open('https://www.youtube.com/watch?v=8OaMWa4R1SE&t=1');
- });
-
- action = editorUi.actions.addAction('tags...', mxUtils.bind(this, function()
- {
- if (this.tagsWindow == null)
- {
- this.tagsWindow = new TagsWindow(editorUi, document.body.offsetWidth - 380, 230, 280, 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, 204, 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(); }));
- // 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
- if (uiTheme != 'atlas')
- {
- 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.innerHTML = '<div class="geIcon geSprite geSprite-globe"/>';
- elt.style.zIndex = '1';
- elt.style.position = 'absolute';
- elt.style.top = '2px';
- elt.style.right = '17px';
- elt.style.display = 'block';
-
- if (!mxClient.IS_VML)
- {
- mxUtils.setOpacity(elt, 60);
- }
-
- document.body.appendChild(elt);
- }
- }
-
- return menubar;
- };
- }
- }
-
- this.put('help', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- if (!mxClient.IS_CHROMEAPP && editorUi.isOffline())
- {
- this.addMenuItems(menu, ['about']);
- }
- else
- {
- // No translation for menu item since help is english only
- var item = menu.addItem('Search', null, null, parent, null, null, false);
-
- var form = document.createElement('div');
- form.style.display = 'inline';
- form.innerHTML = ':<form style="display:inline;margin-left:8px;"' +
- 'target="_blank" method="get" action="https://desk.draw.io/support/search/solutions">' +
- '<input type="text" name="term" size="25"></form>';
- item.firstChild.nextSibling.appendChild(form);
- item.style.backgroundColor = 'whiteSmoke';
- item.style.cursor = 'default';
-
- var realForm = form.getElementsByTagName('form')[0]
- var input = form.getElementsByTagName('input')[0];
-
- if (input != null && realForm != null)
- {
- mxEvent.addListener(realForm, 'submit', function()
- {
- // Logs search terms for improving search results
- if (editorUi.enableLogging)
- {
- var img = new Image();
- var logDomain = window.DRAWIO_LOG_URL != null ? window.DRAWIO_LOG_URL : '';
- img.src = logDomain + '/log?severity=CONFIG&msg=helpsearch:' + encodeURIComponent(input.value) + '&v=' + encodeURIComponent(EditorUi.VERSION);
- }
-
- // Workaround for blocked submit on iOS/IE11
- window.setTimeout(function()
- {
- editorUi.menubar.hideMenu();
- }, 0);
- });
-
- mxEvent.addGestureListeners(item, function(evt)
- {
- if (document.activeElement != input)
- {
- input.focus();
- }
-
- mxEvent.consume(evt);
- }, function(evt)
- {
- mxEvent.consume(evt);
- }, function(evt)
- {
- mxEvent.consume(evt);
- });
- // Sets initial focus on input element
- window.setTimeout(function()
- {
- input.focus();
- }, 0);
- }
- this.addMenuItems(menu, ['-', 'quickStart', 'userManual', 'keyboardShortcuts', '-']);
-
- if (!mxClient.IS_CHROMEAPP)
- {
- this.addMenuItems(menu, ['feedback']);
- }
- this.addMenuItems(menu, ['support', '-', 'about']);
- }
- if (urlParams['test'] == '1')
- {
- // For showing the bounding box
- mxResources.parse('showBoundingBox=Show bounding box');
-
- this.editorUi.actions.addAction('showBoundingBox', mxUtils.bind(this, function()
- {
- var b = graph.getGraphBounds();
- var tr = graph.view.translate;
- var s = graph.view.scale;
- graph.insertVertex(parent, null, '', b.x / s - tr.x, b.y / s - tr.y, b.width / s, b.height / s, 'fillColor=none;strokeColor=red;');
- }));
- this.addMenuItems(menu, ['-', 'showBoundingBox'], parent);
- // For testing local XML export
- mxResources.parse('testXmlImageExport=XML Image Export');
-
- this.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);
- }));
-
- this.addMenuItems(menu, ['testXmlImageExport'], parent);
-
- mxResources.parse('animation=Animation');
-
- this.editorUi.actions.addAction('animation', mxUtils.bind(this, function()
- {
- if (this.animationWindow == null)
- {
- // LATER: Check outline window for initial placement
- this.animationWindow = new AnimationWindow(this.editorUi, (document.body.offsetWidth - 480) / 2,
- 120, 640, 480);
- this.animationWindow.window.setVisible(true);
- }
- else
- {
- this.animationWindow.window.setVisible(!this.animationWindow.window.isVisible());
- }
- }));
- this.addMenuItems(menu, ['animation'], parent);
- mxResources.parse('testShowRtModel=Show RT model');
- mxResources.parse('testDebugRtModel=Debug RT model');
- mxResources.parse('testDownloadRtModel=Download RT model');
-
- this.editorUi.actions.addAction('testShowRtModel', mxUtils.bind(this, function()
- {
- if (this.editorUi.getCurrentFile() != null && this.editorUi.getCurrentFile().realtime != null)
- {
- console.log('bytesUsed', this.editorUi.getCurrentFile().realtime.rtModel.bytesUsed);
- console.log('root', this.editorUi.getCurrentFile().realtime.dumpRoot());
- this.editorUi.getCurrentFile().realtime.check();
- }
- }));
-
- this.editorUi.actions.addAction('testDebugRtModel', mxUtils.bind(this, function()
- {
- gapi.drive.realtime.debug();
- }));
-
- this.editorUi.actions.addAction('testDownloadRtModel', mxUtils.bind(this, function()
- {
- var file = this.editorUi.getCurrentFile();
-
- if (file != null && file.realtime != null &&
- 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/' +
- file.getHash().substring(1) + '/realtime', 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(), 'realtime.txt', 'text/plain');
- }
- });
- }
- }));
- if (this.editorUi.getCurrentFile() != null && this.editorUi.getCurrentFile().realtime != null)
- {
- this.addMenuItems(menu, ['-', 'testShowRtModel', 'testDebugRtModel', 'testDownloadRtModel'], parent);
- }
-
- mxResources.parse('testShowConsole=Show Console');
- this.editorUi.actions.addAction('testShowConsole', function()
- {
- if (!mxLog.isVisible())
- {
- mxLog.show();
- }
- else
- {
- mxLog.window.fit();
- }
-
- mxLog.window.div.style.zIndex = mxPopupMenu.prototype.zIndex - 1;
- });
- this.addMenuItems(menu, ['-', 'testShowConsole']);
- }
- })));
- 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 (urlParams['embed'] == '1' || (file != null && file.isEditable()))
- {
- 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-how-to-embed-html-',
- url, function(publicUrl, zoomEnabled, initialZoom, linkTarget, linkColor, fit, allPages, layers, lightbox, edit)
- {
- editorUi.createHtml(publicUrl, zoomEnabled, initialZoom, linkTarget, linkColor,
- fit, allPages, layers, lightbox, edit, 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 (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);
- }
- });
- editorUi.showDialog(dlg.container, 440, 240, true, true);
- dlg.init();
- }));
- });
- });
- }
- }));
-
- editorUi.actions.put('liveImage', new Action('Live image...', function()
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.getPublicUrl(editorUi.getCurrentFile(), function(url)
- {
- editorUi.spinner.stop();
-
- if (url != null)
- {
- var encUrl = encodeURIComponent(url);
- var dlg = new EmbedDialog(editorUi, EXPORT_URL + '?format=png&url=' + encUrl, 0);
- 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, edit, layers)
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.createEmbedImage(fit, shadow, retina, lightbox, edit, 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, edit, layers)
- {
- if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
- {
- editorUi.createEmbedSvg(fit, shadow, image, lightbox, edit, 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-how-to-embed-svg-');
- }));
-
- 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, edit, 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, edit, layers, url) + '"></iframe>');
- editorUi.showDialog(dlg.container, 440, 240, true, true);
- dlg.init();
- });
- }
- });
- }));
-
- editorUi.actions.put('publishLink', new Action(mxResources.get('link') + '...', function()
- {
- editorUi.showPublishLinkDialog(null, null, null, null,
- function(linkTarget, linkColor, allPages, lightbox, edit, 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, edit, layers, url));
- editorUi.showDialog(dlg.container, 440, 240, true, true);
- dlg.init();
- });
- }
- });
- }));
- editorUi.actions.addAction('googleDocs...', function()
- {
- window.open('http://docsaddon.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 in file menu 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, 156, 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('');
- }
- };
-
- editorUi.actions.addAction('saveAndExit', function()
- {
- editorUi.actions.get('save').funct(true);
- });
-
- editorUi.actions.addAction('exit', function()
- {
- var fn = function()
- {
- 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'), fn);
- }
- });
- }
-
- this.put('exportAs', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- if (editorUi.isExportToCanvas())
- {
- menu.addItem(mxResources.get('formatPng') + '...', null, mxUtils.bind(this, function()
- {
- 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)
- {
- this.editorUi.exportImage(val / 100, transparentBackground, ignoreSelection,
- addShadow, editable, border, !cropImage, currentPage);
- }
- }), true);
- }), parent);
-
- if (editorUi.jpgSupported)
- {
- menu.addItem(mxResources.get('formatJpg') + '...', null, mxUtils.bind(this, function()
- {
- editorUi.showExportJpgDialog('https://support.draw.io/display/DO/Exporting+Files',
- mxUtils.bind(this, function(scale, ignoreSelection, addShadow, border, cropImage)
- {
- var val = parseInt(scale);
-
- if (!isNaN(val) && val > 0)
- {
- this.editorUi.exportImage(val / 100, false, ignoreSelection,
- addShadow, false, border, !cropImage, false, 'jpeg');
- }
- }), true);
- }), parent);
- }
- }
-
- // Disabled for standalone mode in iOS because new tab cannot be closed
- else if (!editorUi.isOffline() && (!mxClient.IS_IOS || !navigator.standalone))
- {
- menu.addItem(mxResources.get('image') + '...', null, mxUtils.bind(this, function()
- {
- editorUi.showRemoteExportDialog(mxResources.get('export'), null, mxUtils.bind(this, function(ignoreSelection, editable)
- {
- this.editorUi.downloadFile((editable) ? 'xmlpng' : 'png', null, null, ignoreSelection);
- }));
- }), parent);
- }
-
- menu.addItem(mxResources.get('formatSvg') + '...', null, mxUtils.bind(this, 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)
- {
- var val = parseInt(scale);
-
- if (!isNaN(val) && val > 0)
- {
- this.editorUi.exportSvg(val / 100, transparentBackground, ignoreSelection,
- addShadow, editable, embedImages, border, !cropImage, currentPage);
- }
- }), true);
- }), parent);
- menu.addSeparator(parent);
- // Redirects export to PDF to print in Chrome App
- if (mxClient.IS_CHROMEAPP)
- {
- menu.addItem(mxResources.get('formatPdf') + '...', null, this.editorUi.actions.get('exportPdf').funct, parent);
- }
- // Disabled for standalone mode in iOS because new tab cannot be closed
- else if (!editorUi.isOffline() && (!mxClient.IS_IOS || !navigator.standalone))
- {
- menu.addItem(mxResources.get('formatPdf') + '...', null, mxUtils.bind(this, function()
- {
- 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 selection = editorUi.addCheckbox(div, mxResources.get('selectionOnly'),
- false, graph.isSelectionEmpty());
- var crop = editorUi.addCheckbox(div, mxResources.get('crop'),
- !graph.pageVisible);
- crop.style.marginBottom = '16px';
-
- var dlg = new CustomDialog(editorUi, div, mxUtils.bind(this, function()
- {
- this.editorUi.downloadFile('pdf', null, null, !selection.checked, null, !crop.checked);
- }), null, mxResources.get('export'));
- this.editorUi.showDialog(dlg.container, 300, 146, true, true);
- }), parent);
- }
- menu.addItem(mxResources.get('formatHtmlEmbedded') + '...', null, mxUtils.bind(this, 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, edit)
- {
- editorUi.createHtml(publicUrl, zoomEnabled, initialZoom, linkTarget, linkColor,
- fit, allPages, layers, lightbox, edit, mxUtils.bind(this, function(html, scriptTag)
- {
- var basename = editorUi.getBaseFilename();
- 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');
- }));
- });
- });
- }
-
- //this.editorUi.downloadFile('html');
- }), parent);
- menu.addSeparator(parent);
- menu.addItem(mxResources.get('formatXml') + '...', null, mxUtils.bind(this, 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'));
- this.editorUi.showDialog(dlg.container, 300, 146, true, true);
- }), parent);
- menu.addItem(mxResources.get('url') + '...', null, mxUtils.bind(this, function()
- {
- editorUi.showPublishLinkDialog(mxResources.get('url'), true, null, null,
- function(linkTarget, linkColor, allPages, lightbox, edit, layers)
- {
- var dlg = new EmbedDialog(editorUi, editorUi.createLink(
- linkTarget, linkColor, allPages, lightbox, edit, layers, null, true));
- editorUi.showDialog(dlg.container, 440, 240, true, true);
- dlg.init();
- });
- }), parent);
-
- if (!editorUi.isOffline())
- {
- menu.addSeparator(parent);
- this.addMenuItem(menu, 'export', parent).firstChild.nextSibling.innerHTML = mxResources.get('advanced') + '...';
- }
- })));
- this.editorUi.actions.addAction('chatWindowTitle...', mxUtils.bind(this.editorUi, this.editorUi.toggleChat));
-
- this.put('importFrom', new Menu(function(menu, parent)
- {
- function importFile(device)
- {
- if (device && Graph.fileSupport && !mxClient.IS_IE && !mxClient.IS_IE11)
- {
- var input = document.createElement('input');
- input.setAttribute('type', 'file');
-
- mxEvent.addListener(input, 'change', function()
- {
- if (input.files != null)
- {
- // Using null for position will disable crop of input file
- editorUi.importFiles(input.files, null, null, editorUi.maxImageSize);
- }
- });
- input.click();
- }
- else
- {
- window.openNew = false;
- window.openKey = 'import';
-
- var prevValue = Editor.useLocalStorage;
- Editor.useLocalStorage = !device;
-
- // Closes dialog after open
- window.openFile = new OpenFile(function(cancel)
- {
- editorUi.hideDialog(cancel);
- });
-
- window.openFile.setConsumer(function(xml, filename)
- {
- graph.setSelectionCells(editorUi.importXml(xml));
- });
-
- // Removes openFile if dialog is closed
- editorUi.showDialog(new OpenDialog(editorUi).container, 360, 220, true, true, function()
- {
- window.openFile = null;
- });
-
- // Extends dialog close to show splash screen
- var dlg = editorUi.dialog;
- var dlgClose = dlg.close;
-
- editorUi.dialog.close = function(cancel)
- {
- Editor.useLocalStorage = prevValue;
- dlgClose.apply(dlg, arguments);
-
- if (cancel && editorUi.getCurrentFile() == null && urlParams['embed'] != '1')
- {
- editorUi.showSplash();
- }
- };
- }
- };
-
- 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 (mime.substring(0, 6) == 'image/')
- {
- editorUi.loadImage(data, mxUtils.bind(this, function(img)
- {
- editorUi.resizeImage(img, data, mxUtils.bind(this, function(data2, w2, h2)
- {
- var s = Math.min(1, Math.min(editorUi.maxImageSize / w2, editorUi.maxImageSize / h2));
- 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());
- });
- }), true);
- }), 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';
- }
-
- 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 = getMimeType(file.getTitle());
-
- // 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)
- {
- menu.addItem(mxResources.get('googleDrive') + ' (' + 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.dropbox != null)
- {
- menu.addItem(mxResources.get('dropbox') + '...', null, function()
- {
- pickFileFromService(editorUi.dropbox);
- }, parent);
- }
- else if (dropboxEnabled)
- {
- menu.addItem(mxResources.get('dropbox') + ' (' + 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)
- {
- menu.addItem(mxResources.get('oneDrive') + ' (' + 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()
- {
- importFile(false);
- }, parent);
- }
- if (!mxClient.IS_IOS)
- {
- menu.addItem(mxResources.get('device') + '...', null, function()
- {
- importFile(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);
- }
-
- menu.addItem(mxResources.get('csv') + '...', null, function()
- {
- editorUi.showImportCsvDialog();
- }, parent);
- })).isEnabled = isGraphEnabled;
- this.put('theme', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- var item = menu.addItem(mxResources.get('kennedy'), null, function()
- {
- mxSettings.setUi('');
- mxSettings.save();
- editorUi.alert(mxResources.get('restartForChangeRequired'));
- }, parent);
- if (uiTheme != 'atlas')
- {
- 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 (uiTheme == 'atlas')
- {
- menu.addCheckmark(item, Editor.checkmarkImage);
- }
- })));
- 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 && 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;
- });
- this.editorUi.showDialog(dlg.container, 300, 80, true, true);
- dlg.init();
- }
- })).isEnabled = isGraphEnabled;
-
- editorUi.actions.addAction('makeCopy...', mxUtils.bind(this, function()
- {
- var file = editorUi.getCurrentFile();
-
- if (file != null)
- {
- var title = (file.getTitle() != null) ? file.getTitle() : editorUi.defaultFilename;
-
- // Handles extension
- var extension = '';
- var dot = title.lastIndexOf('.');
-
- if (dot >= 0)
- {
- extension = title.substring(dot);
- title = title.substring(0, dot);
- }
-
- title = mxResources.get('copyOf', [title]) + extension;
-
- 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')))
- {
- // Makes sure the latest XML is in the file
- file.save(false, mxUtils.bind(this, function()
- {
- // Saveas does not update the file descriptor in Google Drive
- file.saveAs(newTitle, mxUtils.bind(this, function(resp)
- {
- editorUi.spinner.stop();
- var url = editorUi.getUrl();
- window.openWindow(url + '#G' + resp.id, null, mxUtils.bind(this, function()
- {
- window.location.hash = 'G' + resp.id;
- }));
- }), mxUtils.bind(this, function(resp)
- {
- editorUi.handleError(resp);
- }));
- }), mxUtils.bind(this, function(resp)
- {
- editorUi.handleError(resp);
- }));
- }
- }
- else
- {
- this.editorUi.createFile(newTitle, this.editorUi.getFileData(true), null, mode);
- }
- }
- }), mxUtils.bind(this, function()
- {
- editorUi.hideDialog();
- }), mxResources.get('makeCopy'), mxResources.get('create'), null,
- null, null, null, true);
- editorUi.showDialog(dlg.container, 420, 380, true, true);
- dlg.init();
- }
- else
- {
- // Creates a copy with no predefined storage
- editorUi.editor.editAsNew(editorUi.getEditBlankXml(), title);
- }
- }
- }));
-
- editorUi.actions.addAction('moveToFolder...', mxUtils.bind(this, function()
- {
- var file = editorUi.getCurrentFile();
-
- if (file.getMode() == App.MODE_GOOGLE || file.getMode() == App.MODE_ONEDRIVE)
- {
- 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);
- }));
- }
- }));
- }
- }));
-
- this.put('publish', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- this.addMenuItems(menu, ['publishLink'], parent);
- })));
- editorUi.actions.put('offline', new Action(mxResources.get('offline') + '...', function()
- {
- window.open('http://www.draw.io/app')
- }));
-
- editorUi.actions.put('chromeApp', new Action(mxResources.get('chromeApp') + '...', function()
- {
- window.open('https://chrome.google.com/webstore/detail/drawio-desktop/pebppomjfocnoigkeepgbmcifnnlndla')
- }));
- this.editorUi.actions.addAction('share...', mxUtils.bind(this, function()
- {
- var file = this.editorUi.getCurrentFile();
-
- if (file != null)
- {
- this.editorUi.drive.showPermissions(file.getId());
- }
- }));
- this.put('embed', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- if (urlParams['test'] == '1')
- {
- this.addMenuItems(menu, ['liveImage', '-'], parent);
- }
-
- this.addMenuItems(menu, ['embedImage', 'embedSvg', '-', 'embedHtml'], parent);
-
- if (!navigator.standalone && !editorUi.isOffline())
- {
- this.addMenuItems(menu, ['embedIframe'], parent);
- }
- if (!editorUi.isOffline())
- {
- this.addMenuItems(menu, ['-', 'googleSites', 'googleDocs'], parent);
- }
- })));
- // Overrides arrange menu to add insert submenu
- this.put('arrange', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- this.addMenuItems(menu, ['toFront', 'toBack', '-'], parent);
- this.addSubmenu('direction', menu, parent);
- this.addMenuItems(menu, ['turn', '-'], parent);
- this.addSubmenu('align', menu, parent);
- this.addSubmenu('distribute', menu, parent);
- menu.addSeparator(parent);
- this.addSubmenu('navigation', menu, parent);
- this.addSubmenu('layout', menu, parent);
- this.addMenuItems(menu, ['-', 'group', 'ungroup', 'removeFromGroup', '-', 'editGeometry', 'clearWaypoints', 'autosize'], parent);
- })));
-
- var methods = ['horizontalFlow', 'verticalFlow', '-', 'horizontalTree', 'verticalTree', '-', 'organic', 'circle', '-', 'fromText'];
- var addInsertItem = function(menu, parent, title, method)
- {
- menu.addItem(title, null, mxUtils.bind(this, function()
- {
- if (method == 'fromText')
- {
- var dlg = new ParseDialog(editorUi, title);
- 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);
- };
-
- editorUi.actions.addAction('insertText', function()
- {
- if (graph.isEnabled() && !graph.isCellLocked(graph.getDefaultParent()))
- {
- var pt = (graph.isMouseInsertPoint()) ? graph.getInsertPoint() : graph.getFreeInsertPoint();
- var cell = new mxCell('Text', new mxGeometry(pt.x, pt.y, 40, 20),
- 'text;html=1;resizable=0;autosize=1;align=left;verticalAlign=top;spacingTop=-4;points=[];');
- cell.vertex = true;
- graph.startEditingAtCell(graph.addCell(cell));
- }
- }, null, null, 'Ctrl+Shift+X').isEnabled = isGraphEnabled;
-
- editorUi.actions.addAction('insertRectangle', function()
- {
- if (graph.isEnabled() && !graph.isCellLocked(graph.getDefaultParent()))
- {
- var pt = (graph.isMouseInsertPoint()) ? graph.getInsertPoint() : graph.getFreeInsertPoint();
- var cell = new mxCell('', new mxGeometry(pt.x, pt.y, 120, 60), 'whiteSpace=wrap;html=1;');
- cell.vertex = true;
- graph.setSelectionCell(graph.addCell(cell));
- graph.scrollCellToVisible(graph.getSelectionCell());
- }
- }, null, null, 'Ctrl+K').isEnabled = isGraphEnabled;
-
- editorUi.actions.addAction('insertEllipse', function()
- {
- if (graph.isEnabled() && !graph.isCellLocked(graph.getDefaultParent()))
- {
- var pt = (graph.isMouseInsertPoint()) ? graph.getInsertPoint() : graph.getFreeInsertPoint();
- var cell = new mxCell('', new mxGeometry(pt.x, pt.y, 80, 80), 'ellipse;whiteSpace=wrap;html=1;');
- cell.vertex = true;
- graph.setSelectionCell(graph.addCell(cell));
- graph.scrollCellToVisible(graph.getSelectionCell());
- }
- }, null, null, 'Ctrl+Shift+K').isEnabled = isGraphEnabled;
-
- this.put('insert', new Menu(mxUtils.bind(this, function(menu, parent)
- {
- this.addMenuItems(menu, ['insertText', 'insertRectangle', 'insertEllipse', '-', 'insertLink', 'insertImage'], parent);
- menu.addSeparator(parent);
-
- 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('openRecent', new Menu(function(menu, parent)
- {
- var recent = editorUi.getRecent();
- var count = 0;
-
- if (recent != null)
- {
- for (var i = 0; i < recent.length; i++)
- {
- (function(entry)
- {
- count++;
-
- 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)
- {
- menu.addItem(mxResources.get('googleDrive') + ' (' + 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.dropbox != null)
- {
- menu.addItem(mxResources.get('dropbox') + '...', null, function()
- {
- editorUi.pickFile(App.MODE_DROPBOX);
- }, parent);
- }
- else if (dropboxEnabled)
- {
- menu.addItem(mxResources.get('dropbox') + ' (' + 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)
- {
- menu.addItem(mxResources.get('oneDrive') + ' (' + 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);
- }
- }));
-
- 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)
- {
- menu.addItem(mxResources.get('googleDrive') + ' (' + 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.dropbox != null)
- {
- menu.addItem(mxResources.get('dropbox') + '...', null, function()
- {
- editorUi.showLibraryDialog(null, null, null, null, App.MODE_DROPBOX);
- }, parent);
- }
- else if (dropboxEnabled)
- {
- menu.addItem(mxResources.get('dropbox') + ' (' + 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)
- {
- menu.addItem(mxResources.get('oneDrive') + ' (' + 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)
- {
- menu.addItem(mxResources.get('googleDrive') + ' (' + 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.dropbox != null)
- {
- menu.addItem(mxResources.get('dropbox') + '...', null, function()
- {
- editorUi.pickLibrary(App.MODE_DROPBOX);
- }, parent);
- }
- else if (dropboxEnabled)
- {
- menu.addItem(mxResources.get('dropbox') + ' (' + 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)
- {
- menu.addItem(mxResources.get('oneDrive') + ' (' + 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.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);
- }
- }));
-
- // Overrides edit menu to add find
- 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', '-', 'edit', '-', 'editLink', 'openLink', '-',
- 'selectVertices', 'selectEdges', 'selectAll', 'selectNone', '-', 'lockUnlock']);
- })));
-
- // 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', '-']));
- this.addMenuItems(menu, ['-', 'search'], parent);
-
- if (isLocalStorage || mxClient.IS_CHROMEAPP)
- {
- var item = this.addMenuItem(menu, 'scratchpad', parent);
-
- if (!editorUi.isOffline() || mxClient.IS_CHROMEAPP)
- {
- this.addLinkToItem(item, 'https://desk.draw.io/support/solutions/articles/16000042367-how-to-use-the-scratchpad-');
- }
- }
-
- 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.addSubmenu('insert', menu, parent);
- menu.addSeparator(parent);
- this.addMenuItems(menu, ['copyConnect', 'collapseExpand', '-'], parent);
- if (typeof(MathJax) !== 'undefined')
- {
- var item = this.addMenuItem(menu, 'mathematicalTypesetting', parent);
- this.addLinkToItem(item, 'https://desk.draw.io/support/solutions/articles/16000032875-how-to-use-mathematical-typesetting-');
- }
- this.addMenuItems(menu, ['autosave', '-', 'createShape', 'editDiagram'], parent);
- menu.addSeparator(parent);
-
- if (urlParams['embed'] != '1' && isLocalStorage)
- {
- this.addMenuItems(menu, ['showStartScreen'], parent);
- }
- if (!editorUi.isOfflineApp() && urlParams['embed'] != '1')
- {
- this.addMenuItems(menu, ['plugins', '-'], parent);
-
- var item = this.addMenuItem(menu, 'tags', parent);
-
- if (!editorUi.isOffline() || mxClient.IS_CHROMEAPP)
- {
- this.addLinkToItem(item, 'https://desk.draw.io/support/solutions/articles/16000046966-how-to-use-tags');
- }
-
- this.addMenuItems(menu, ['-', 'offline'], parent);
- }
- else
- {
- menu.addSeparator(parent);
- }
-
- if (!editorUi.isOffline() && !navigator.standalone && urlParams['embed'] != '1')
- {
- this.addMenuItems(menu, ['chromeApp'], 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);
- }
-
- this.addMenuItems(menu, ['-', 'pageSetup', 'print', '-', '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);
- }
-
- if (file.realtime == null)
- {
- this.addMenuItems(menu, ['save', 'share', '-'], parent);
- }
- else
- {
- if (!file.isAutosave())
- {
- this.addMenuItems(menu, ['save'], parent);
- }
-
- this.addMenuItems(menu, ['share', 'chatWindowTitle', '-'], 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
- {
- this.addMenuItems(menu, ['-', 'save', 'saveAs', '-', 'rename'], parent);
-
- if (editorUi.isOfflineApp())
- {
- if (!editorUi.isOffline())
- {
- 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 (file != null && (file.constructor == DriveFile || file.constructor == DropboxFile))
- {
- this.addMenuItems(menu, ['-', 'revisionHistory'], parent);
- }
-
- if (file != null && file.constructor == DriveFile)
- {
- this.addMenuItems(menu, ['createRevision'], 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']);
- }
- })));
- };
- })();
|