mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2024-11-08 06:28:29 +01:00
281 lines
9.9 KiB
CoffeeScript
281 lines
9.9 KiB
CoffeeScript
# Copyright 2017-2018 Xuan Sang LE <xsang.le AT gmail DOT com>
|
|
|
|
# AnTOS Web desktop is is licensed under the GNU General Public
|
|
# License v3.0, see the LICENCE file for more information
|
|
|
|
# This program is free software: you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License as
|
|
# published by the Free Software Foundation, either version 3 of
|
|
# the License, or (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
#along with this program. If not, see https://www.gnu.org/licenses/.
|
|
class GraphEditor extends this.OS.application.BaseApplication
|
|
constructor: ( args ) ->
|
|
super "GraphEditor", args
|
|
|
|
main: () ->
|
|
|
|
#mermaid.initialize { startOnLoad: false }
|
|
mermaid.initialize {
|
|
theme: 'forest'
|
|
}
|
|
@currfile = if @args and @args.length > 0 then @args[0].path.asFileHandle() else "Untitled".asFileHandle()
|
|
@currfile.dirty = false
|
|
@datarea = @find "datarea"
|
|
@preview = @find "preview"
|
|
@btctn = @find "btn-container"
|
|
@editor = ace.edit @datarea
|
|
@editor.setOptions {
|
|
enableBasicAutocompletion: true,
|
|
enableLiveAutocompletion: true,
|
|
fontSize: "11pt"
|
|
}
|
|
@editor.getSession().setUseWrapMode true
|
|
@editor.session.setMode "ace/mode/text"
|
|
@editor.setTheme "ace/theme/monokai"
|
|
@editor.on "input", () =>
|
|
if @editormux
|
|
@editormux = false
|
|
return false
|
|
if not @currfile.dirty
|
|
@currfile.dirty = true
|
|
|
|
|
|
if not @currfile.basename
|
|
@editormux = true
|
|
@editor.setValue GraphEditor.dummymermaid
|
|
@renderSVG false
|
|
|
|
|
|
@editor.container.addEventListener "keydown", (e) =>
|
|
@renderSVG true if e.keyCode is 13
|
|
, true
|
|
|
|
@bindKey "CTRL-R", () => @renderSVG false
|
|
@bindKey "ALT-G", () => @export "SVG"
|
|
@bindKey "ALT-P", () => @export "PNG"
|
|
@bindKey "ALT-N", () => @actionFile "#{@name}-New"
|
|
@bindKey "ALT-O", () => @actionFile "#{@name}-Open"
|
|
@bindKey "CTRL-S", () => @actionFile "#{@name}-Save"
|
|
@bindKey "ALT-W", () => @actionFile "#{@name}-Saveas"
|
|
@bindKey "CTRL-M", () => @svgToCanvas(()->)
|
|
|
|
@on "hboxchange", () =>
|
|
@editor.resize()
|
|
@calibrate()
|
|
@on "focus", () => @editor.focus()
|
|
(@find "btn-zoomin").onbtclick = (e) =>
|
|
@pan.zoomIn() if @pan
|
|
(@find "btn-zoomout").onbtclick = (e) =>
|
|
@pan.zoomOut() if @pan
|
|
(@find "btn-reset").onbtclick = (e) =>
|
|
@pan.resetZoom() if @pan
|
|
|
|
@open @currfile
|
|
|
|
menu: () ->
|
|
|
|
menu = [{
|
|
text: "__(File)",
|
|
nodes: [
|
|
{ text: "__(New)", dataid: "#{@name}-New", shortcut: "A-N" },
|
|
{ text: "__(Open)", dataid: "#{@name}-Open", shortcut: "A-O" },
|
|
{ text: "__(Save)", dataid: "#{@name}-Save", shortcut: "C-S" },
|
|
{ text: "__(Save as)",dataid: "#{@name}-Saveas" , shortcut: "A-W" },
|
|
{ text: "__(Render)", dataid: "#{@name}-Render", shortcut: "C-R" },
|
|
{
|
|
text: "__(Export as)",
|
|
nodes: [
|
|
{ text: "SVG", shortcut: "A-G" },
|
|
{ text: "PNG", shortcut: "A-P" }
|
|
],
|
|
onchildselect: (e) => @export e.data.item.data.text
|
|
},
|
|
],
|
|
onchildselect: (e) => @actionFile e.data.item.data.dataid
|
|
}]
|
|
menu
|
|
open: (file) ->
|
|
return if file.path is "Untitled"
|
|
|
|
file.dirty = false
|
|
file.read().then (d) =>
|
|
@currfile = file
|
|
@editormux = true
|
|
@currfile.dirty = false
|
|
@editor.setValue d
|
|
@scheme.apptitle = "#{@currfile.basename}"
|
|
@renderSVG false
|
|
.catch (e) => @error e.toString(), e
|
|
save: (file) ->
|
|
|
|
file.write "text/plain"
|
|
.then (d) =>
|
|
file.dirty = false
|
|
file.text = file.basename
|
|
@scheme.apptitle = "#{@currfile.basename}"
|
|
.catch (e) => @error e.toString(), e
|
|
|
|
actionFile: (e) ->
|
|
|
|
saveas = () =>
|
|
@openDialog "FileDialog",{title: __("Save as"), file: @currfile }
|
|
.then (d) =>
|
|
@currfile.setPath "#{d.file.path}/#{d.name}"
|
|
@save @currfile
|
|
.catch (e) => @error e.toString(), e
|
|
|
|
switch e
|
|
when "#{@name}-Open"
|
|
@openDialog "FileDialog", { title: __("Open file")}
|
|
.then ( d, f ) =>
|
|
@open d.file.path.asFileHandle()
|
|
.catch (e) => @error e.toString(), e
|
|
|
|
when "#{@name}-Save"
|
|
@currfile.cache = @editor.getValue()
|
|
return @save @currfile if @currfile.basename
|
|
saveas()
|
|
when "#{@name}-Saveas"
|
|
@currfile.cache = @editor.getValue()
|
|
saveas()
|
|
when "#{@name}-Render"
|
|
@renderSVG false
|
|
when "#{@name}-New"
|
|
@currfile = "Untitled".asFileHandle()
|
|
@currfile.cache = ""
|
|
@currfile.dirty = false
|
|
@editormux = true
|
|
@editor.setValue("")
|
|
|
|
export: (t) ->
|
|
@openDialog "FileDialog", {title: __("Export as"), file: @currfile }
|
|
.then (d) =>
|
|
fp = "#{d.file.path}/#{d.name}".asFileHandle()
|
|
try
|
|
switch t
|
|
when "SVG"
|
|
fp.cache = @svgtext()
|
|
fp.write "text/plain"
|
|
.then (r) =>
|
|
@notify __("File exported")
|
|
.catch (e) => @error __("Cannot export to {0}: {1}", t, e.toString()), e
|
|
when "PNG"
|
|
# toDataURL("image/png")
|
|
@svgToCanvas (canvas) =>
|
|
try
|
|
fp.cache = canvas.toDataURL "image/png"
|
|
fp.write "base64"
|
|
.then (r) =>
|
|
@notify __("File exported")
|
|
.catch (e) => @error __("Cannot export to {0}: {1}", t, e.toString()), e
|
|
catch e
|
|
@error __("Cannot export to PNG in this browser: {0}", e.toString()), e
|
|
catch e
|
|
@error __("Cannot export: {0}", e.message), e
|
|
.catch (e) => @error e.toString(), e
|
|
|
|
|
|
renderSVG: (silent) ->
|
|
|
|
id = Math.floor(Math.random() * 100000) + 1
|
|
#if silent
|
|
# mermaid.parseError = (e, h) ->
|
|
#else
|
|
# mermaid.parseError = (e, h) ->
|
|
# @error e
|
|
text = @editor.getValue()
|
|
try
|
|
mermaid.parse text
|
|
catch e
|
|
@error __("Syntax error: {0}", e.toString()), e if not silent
|
|
return
|
|
mermaid.render "c#{id}", text, (text, f) =>
|
|
@preview.innerHTML = text
|
|
$(@preview).append @btctn
|
|
@calibrate()
|
|
svg = $(@preview).children("svg")[0]
|
|
#$(svg).attr("style", "")
|
|
@pan = svgPanZoom svg, {
|
|
zoomEnabled: true,
|
|
controlIconsEnabled: false,
|
|
fit: true,
|
|
center: true,
|
|
minZoom: 0.1
|
|
}
|
|
#rd $($.parseHTML text).
|
|
, @preview
|
|
|
|
svgtext: () ->
|
|
svg = $(@preview).children("svg")[0]
|
|
$("g.label",svg).each (i) =>
|
|
$(@)
|
|
.css("font-family","Ubuntu")
|
|
.css("font-size", "13px")
|
|
$("text", svg).each (j) =>
|
|
$(@)
|
|
.css("font-family","Ubuntu")
|
|
.css("font-size", "13px")
|
|
serializer = new XMLSerializer()
|
|
return serializer.serializeToString(svg)
|
|
|
|
svgToCanvas: (f) ->
|
|
img = new Image()
|
|
img.crossOrigin="anonymous"
|
|
svgStr = @svgtext()
|
|
DOMURL = window.URL || window.webkitURL || window
|
|
svgBlob = new Blob [svgStr], { type: 'image/svg+xml;charset=utf-8' }
|
|
url = DOMURL.createObjectURL svgBlob
|
|
img.onload = () =>
|
|
canvas = @find "offscreen"
|
|
canvas.width = img.width
|
|
canvas.height = img.height
|
|
canvas.getContext("2d").drawImage img, 0, 0, img.width, img.height
|
|
f(canvas)
|
|
img.src = url
|
|
|
|
calibrate: () ->
|
|
svg = ($ @preview).children("svg")[0]
|
|
if svg
|
|
prs = [$(@preview).width(), $(@preview).height()]
|
|
$(svg).attr "width", prs[0] + "px"
|
|
$(svg).attr "height", prs[1] + "px"
|
|
|
|
cleanup: (evt) ->
|
|
return unless @currfile
|
|
return unless @currfile.dirty
|
|
evt.preventDefault()
|
|
@ask {title: __("Quit"), text: __("Quit without saving ?") }
|
|
.then (d) =>
|
|
if d
|
|
@currfile.dirty = false
|
|
@quit()
|
|
|
|
GraphEditor.dummymermaid = """
|
|
classDiagram
|
|
Class01 <|-- AveryLongClass : Cool
|
|
Class03 *-- Class04
|
|
Class05 o-- Class06
|
|
Class07 .. Class08
|
|
Class09 --> C2 : Where am i?
|
|
Class09 --* C3
|
|
Class09 --|> Class07
|
|
Class07 : equals()
|
|
Class07 : Object[] elementData
|
|
Class01 : size()
|
|
Class01 : int chimp
|
|
Class01 : int gorilla
|
|
Class08 <--> C2: Cool label
|
|
"""
|
|
GraphEditor.dependencies = [
|
|
"pkg://ACECore/core/ace.js",
|
|
"pkg://ACECore/path.js",
|
|
]
|
|
this.OS.register "GraphEditor", GraphEditor
|