first complete version

This commit is contained in:
Xuan Sang LE
2021-02-09 23:55:48 +01:00
parent 46d271ad90
commit efb58ea93d
20 changed files with 348 additions and 37 deletions

View File

@ -7,30 +7,87 @@ class OnlyOffice extends this.OS.application.BaseApplication
@currfile = undefined
if @args and @args.length > 0
@currfile = @args[0].path.asFileHandle()
placeholder = @find "editor-area"
placeholder.id = @eid
@placeholder = @find "editor-area"
@placeholder.id = @eid
@find("btn-open-file").onbtclick = (e) =>
@openFile()
@find("btn-new-doc").onbtclick = (e) =>
@create("word")
@find("btn-new-cell").onbtclick = (e) =>
@create("sheet")
@find("btn-new-slide").onbtclick = (e) =>
@create("slide")
@open() if @currfile
create: (type) ->
ext = undefined
ext = "docx" if type is "word"
ext = "xlsx" if type is "sheet"
ext = "pptx" if type is "slide"
return @error __("Unkown file type") unless ext
@openDialog "FileDialog", {
title: __("Save file as"),
type: "dir",
file: "home://Untitled.#{ext}".asFileHandle()
}
.then (d) =>
file = "#{d.file.path}/#{d.name}".asFileHandle()
# copy file to destination
model = "#{@path()}/templates/model.#{ext}".asFileHandle()
model
.read("binary")
.then (d) =>
blob = new Blob([d], {
type: model.info.mime,
})
file.cache = blob
file
.write(model.info.mime)
.then (r) =>
file.cache = undefined
@currfile = file
@open()
.catch (e) =>
@error e.toString(), e
.catch (err) =>
@error err.toString(), err
openFile: () ->
@openDialog "FileDialog", {
title: __("Open file"),
type: "file",
mimes: @meta().mimes
}
.then (f, name) =>
@currfile = f.file.path.asFileHandle()
@open()
open: () ->
return unless @currfile
console.log @currfile
@exec("token", {file: @currfile.path})
.then (d) =>
return @error d.error if d.error
@access_token = d.result
@currfile.onready()
.then (meta) =>
#@scheme.apptitle = @currfile.path
@scheme.apptitle = @currfile.path
$(@placeholder).empty()
@editor.destroyEditor() if @editor
@editor = new DocsAPI.DocEditor(@eid, {
events: {
onRequestCreateNew: () => @newDocument(),
onRequestSaveAs: (e) => console.log e
onRequestSaveAs: (e) => @saveAs(e)
},
document: {
fileType: @currfile.ext,
key: meta.mtime.hash().toString(),
title: @currfile.path,
title: @currfile.filename,
url: @currfile.getlink() + "?" + @access_token
},
documentType: @getDocType(@currfile.ext),
@ -57,11 +114,58 @@ class OnlyOffice extends this.OS.application.BaseApplication
return "none"
saveAs: (e) ->
console.log e
return unless e.data.url
rfile = e.data.url.asFileHandle()
@openDialog "FileDialog", {
title: __("Save file as"),
type: "dir",
file: "home://#{e.data.title}".asFileHandle()
}
.then (d) =>
file = "#{d.file.path}/#{d.name}"
# copy file to destination
@exec("duplicate", {
remote: e.data.url,
as: file
}).then (r) =>
return @error r.error if r.error
@currfile = file.asFileHandle()
@open()
.catch (e) =>
@error e.toString(), e
newDocument: () ->
console.log("create document")
@error __("Unable to create document")
@openDialog "SelectionDialog", {
title: __("Create new"),
data:[
{
text: __("Open a file"),
iconclass: "fa fa-folder-open",
type: "open"
},
{
text: __("Document"),
iconclass: "fa fa-file-word-o",
type: "word"
},
{
text: __("Spreadsheet"),
iconclass: "fa fa-file-excel-o",
type: "sheet"
},
{
text: __("Presentation"),
iconclass: "fa fa-file-powerpoint-o",
type: "slide"
},
]
}
.then (d) =>
switch d.type
when "open"
@openFile()
else
@create(d.type)
uapi: (action) ->
return "#{@_api.REST}/system/apigateway?ws=0&path=#{@path()}/api.lua&action=#{action}&file=#{@currfile.path}&#{@access_token}"