Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
eb8a6095
Commit
eb8a6095
authored
Nov 21, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added disposable manager
added model manager [ci skip]
parent
c90b520d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
152 additions
and
80 deletions
+152
-80
app/assets/javascripts/repo/components/repo_editor.vue
app/assets/javascripts/repo/components/repo_editor.vue
+8
-6
app/assets/javascripts/repo/lib/common/disposable.js
app/assets/javascripts/repo/lib/common/disposable.js
+14
-0
app/assets/javascripts/repo/lib/common/model.js
app/assets/javascripts/repo/lib/common/model.js
+51
-15
app/assets/javascripts/repo/lib/common/model_manager.js
app/assets/javascripts/repo/lib/common/model_manager.js
+31
-0
app/assets/javascripts/repo/lib/decorations/controller.js
app/assets/javascripts/repo/lib/decorations/controller.js
+1
-1
app/assets/javascripts/repo/lib/diff/controller.js
app/assets/javascripts/repo/lib/diff/controller.js
+9
-16
app/assets/javascripts/repo/lib/diff/worker.js
app/assets/javascripts/repo/lib/diff/worker.js
+19
-20
app/assets/javascripts/repo/lib/editor.js
app/assets/javascripts/repo/lib/editor.js
+19
-22
No files found.
app/assets/javascripts/repo/components/repo_editor.vue
View file @
eb8a6095
...
...
@@ -3,13 +3,15 @@
import
{
mapGetters
,
mapActions
}
from
'
vuex
'
;
import
flash
from
'
../../flash
'
;
import
monacoLoader
from
'
../monaco_loader
'
;
import
e
ditor
from
'
../lib/editor
'
;
import
E
ditor
from
'
../lib/editor
'
;
export
default
{
destroyed
()
{
editor
.
dispose
();
this
.
editor
.
dispose
();
},
mounted
()
{
this
.
editor
=
Editor
.
create
();
if
(
this
.
monaco
)
{
this
.
initMonaco
();
}
else
{
...
...
@@ -26,11 +28,11 @@ export default {
initMonaco
()
{
if
(
this
.
shouldHideEditor
)
return
;
editor
.
clearEditor
();
this
.
editor
.
clearEditor
();
this
.
getRawFileData
(
this
.
activeFile
)
.
then
(()
=>
{
editor
.
createInstance
(
this
.
$el
);
this
.
editor
.
createInstance
(
this
.
$el
);
})
.
then
(()
=>
this
.
setupEditor
())
.
catch
(()
=>
flash
(
'
Error setting up monaco. Please try again.
'
));
...
...
@@ -38,9 +40,9 @@ export default {
setupEditor
()
{
if
(
!
this
.
activeFile
)
return
;
const
model
=
editor
.
createModel
(
this
.
activeFile
);
const
model
=
this
.
editor
.
createModel
(
this
.
activeFile
);
editor
.
attachModel
(
model
);
this
.
editor
.
attachModel
(
model
);
model
.
onChange
((
m
)
=>
{
this
.
changeFileContent
({
file
:
this
.
activeFile
,
...
...
app/assets/javascripts/repo/lib/common/disposable.js
0 → 100644
View file @
eb8a6095
export
default
class
Disposable
{
constructor
()
{
this
.
disposers
=
new
Set
();
}
add
(...
disposers
)
{
disposers
.
forEach
(
disposer
=>
this
.
disposers
.
add
(
disposer
));
}
dispose
()
{
this
.
disposers
.
forEach
(
disposer
=>
disposer
.
dispose
());
this
.
disposers
.
clear
();
}
}
app/assets/javascripts/repo/lib/common/model.js
View file @
eb8a6095
/* global monaco */
import
Disposable
from
'
./disposable
'
;
export
default
class
Model
{
constructor
(
file
)
{
this
.
disposable
=
new
Disposable
();
this
.
file
=
file
;
this
.
content
=
file
.
content
!==
''
?
file
.
content
:
file
.
raw
;
this
.
originalModel
=
monaco
.
editor
.
createModel
(
this
.
content
,
undefined
,
new
monaco
.
Uri
(
null
,
null
,
`original/
${
this
.
file
.
path
}
`
),
);
this
.
model
=
monaco
.
editor
.
createModel
(
this
.
content
,
undefined
,
new
monaco
.
Uri
(
null
,
null
,
this
.
file
.
path
),
this
.
disposable
.
add
(
this
.
originalModel
=
monaco
.
editor
.
createModel
(
this
.
content
,
undefined
,
new
monaco
.
Uri
(
null
,
null
,
`original/
${
this
.
file
.
path
}
`
),
),
this
.
model
=
monaco
.
editor
.
createModel
(
this
.
content
,
undefined
,
new
monaco
.
Uri
(
null
,
null
,
this
.
file
.
path
),
),
);
this
.
disposers
=
new
Map
();
this
.
attachedToWorker
=
false
;
this
.
events
=
new
Map
();
}
get
url
()
{
return
this
.
model
.
uri
.
toString
();
}
get
originalUrl
()
{
return
this
.
originalModel
.
uri
.
toString
();
}
get
path
()
{
return
this
.
file
.
path
;
}
get
diffModel
()
{
return
{
url
:
this
.
model
.
uri
.
toString
(),
versionId
:
this
.
model
.
getVersionId
(),
lines
:
this
.
model
.
getLinesContent
(),
EOL
:
'
\n
'
,
};
}
get
originalDiffModel
()
{
return
{
url
:
this
.
originalModel
.
uri
.
toString
(),
versionId
:
this
.
originalModel
.
getVersionId
(),
lines
:
this
.
originalModel
.
getLinesContent
(),
EOL
:
'
\n
'
,
};
}
getModel
()
{
return
this
.
model
;
}
...
...
@@ -29,18 +62,21 @@ export default class Model {
return
this
.
originalModel
;
}
setAttachedToWorker
(
val
)
{
this
.
attachedToWorker
=
val
;
}
onChange
(
cb
)
{
this
.
disposer
s
.
set
(
this
.
event
s
.
set
(
this
.
file
.
path
,
this
.
model
.
onDidChangeContent
(
e
=>
cb
(
this
.
model
,
e
)),
);
}
dispose
()
{
this
.
model
.
dispose
();
this
.
originalModel
.
dispose
();
this
.
disposable
.
dispose
();
this
.
disposer
s
.
forEach
(
disposer
=>
disposer
.
dispose
());
this
.
disposer
s
.
clear
();
this
.
event
s
.
forEach
(
disposer
=>
disposer
.
dispose
());
this
.
event
s
.
clear
();
}
}
app/assets/javascripts/repo/lib/common/model_manager.js
0 → 100644
View file @
eb8a6095
import
Disposable
from
'
./disposable
'
;
import
Model
from
'
./model
'
;
export
default
class
ModelManager
{
constructor
()
{
this
.
disposable
=
new
Disposable
();
this
.
models
=
new
Map
();
}
hasCachedModel
(
path
)
{
return
this
.
models
.
has
(
path
);
}
addModel
(
file
)
{
if
(
this
.
hasCachedModel
(
file
.
path
))
{
return
this
.
models
.
get
(
file
.
path
);
}
const
model
=
new
Model
(
file
);
this
.
models
.
set
(
model
.
path
,
model
);
this
.
disposable
.
add
(
model
);
return
model
;
}
dispose
()
{
// dispose of all the models
this
.
disposable
.
dispose
();
this
.
models
.
clear
();
}
}
app/assets/javascripts/repo/lib/decorations/controller.js
View file @
eb8a6095
...
...
@@ -33,7 +33,7 @@ class DecorationsController {
this
.
editorDecorations
.
set
(
model
.
url
,
editor
.
instance
.
deltaDecorations
(
oldDecorations
,
decorations
),
editor
.
editorInstance
.
instance
.
deltaDecorations
(
oldDecorations
,
decorations
),
);
}
...
...
app/assets/javascripts/repo/lib/diff/controller.js
View file @
eb8a6095
/* global monaco */
import
Disposable
from
'
../common/disposable
'
;
import
DirtyDiffWorker
from
'
./worker
'
;
import
decorationsController
from
'
../decorations/controller
'
;
...
...
@@ -32,27 +33,21 @@ export const decorate = (model, changes) => {
};
export
default
class
DirtyDiffController
{
constructor
()
{
constructor
(
modelManager
)
{
this
.
disposable
=
new
Disposable
();
this
.
editorSimpleWorker
=
null
;
this
.
model
s
=
new
Map
()
;
this
.
worker
=
new
DirtyDiffWorker
(
);
this
.
model
Manager
=
modelManager
;
this
.
disposable
.
add
(
this
.
worker
=
new
DirtyDiffWorker
()
);
}
attachModel
(
model
)
{
if
(
this
.
models
.
has
(
model
.
getModel
().
uri
.
toString
())
)
return
;
if
(
model
.
attachedToWorker
)
return
;
[
model
.
getModel
(),
model
.
getOriginalModel
()].
forEach
((
iModel
)
=>
{
this
.
worker
.
attachModel
({
url
:
iModel
.
uri
.
toString
(),
versionId
:
iModel
.
getVersionId
(),
lines
:
iModel
.
getLinesContent
(),
EOL
:
'
\n
'
,
});
[
model
.
getModel
(),
model
.
getOriginalModel
()].
forEach
(()
=>
{
this
.
worker
.
attachModel
(
model
);
});
model
.
onChange
((
_
,
e
)
=>
this
.
computeDiff
(
model
,
e
));
this
.
models
.
set
(
model
.
getModel
().
uri
.
toString
(),
model
);
}
computeDiff
(
model
,
e
)
{
...
...
@@ -66,8 +61,6 @@ export default class DirtyDiffController {
}
dispose
()
{
this
.
models
.
clear
();
this
.
worker
.
dispose
();
decorationsController
.
dispose
();
this
.
disposable
.
dispose
();
}
}
app/assets/javascripts/repo/lib/diff/worker.js
View file @
eb8a6095
/* global monaco */
import
Disposable
from
'
../common/disposable
'
;
export
default
class
DirtyDiffWorker
{
constructor
()
{
this
.
editorSimpleWorker
=
null
;
this
.
models
=
new
Map
();
this
.
disposable
=
new
Disposable
();
this
.
actions
=
new
Set
();
// eslint-disable-next-line promise/catch-or-return
monaco
.
editor
.
createWebWorker
({
moduleId
:
'
vs/editor/common/services/editorSimpleWorker
'
,
}).
getProxy
().
then
((
editorSimpleWorker
)
=>
{
this
.
editorSimpleWorker
=
editorSimpleWorker
;
this
.
disposable
.
add
(
this
.
editorSimpleWorker
=
editorSimpleWorker
)
;
this
.
ready
();
});
}
...
...
@@ -26,10 +28,11 @@ export default class DirtyDiffWorker {
}
attachModel
(
model
)
{
if
(
this
.
editorSimpleWorker
&&
!
this
.
models
.
has
(
model
.
url
))
{
this
.
editorSimpleWorker
.
acceptNewModel
(
model
);
if
(
this
.
editorSimpleWorker
&&
!
model
.
attachedToWorker
)
{
this
.
editorSimpleWorker
.
acceptNewModel
(
model
.
diffModel
);
this
.
editorSimpleWorker
.
acceptNewModel
(
model
.
originalDiffModel
);
this
.
models
.
set
(
model
.
url
,
model
);
model
.
setAttachedToWorker
(
true
);
}
else
if
(
!
this
.
editorSimpleWorker
)
{
this
.
actions
.
add
({
attachModel
:
[
model
],
...
...
@@ -40,7 +43,7 @@ export default class DirtyDiffWorker {
modelChanged
(
model
,
e
)
{
if
(
this
.
editorSimpleWorker
)
{
this
.
editorSimpleWorker
.
acceptModelChanged
(
model
.
getModel
().
uri
.
toString
()
,
model
.
url
,
e
,
);
}
else
{
...
...
@@ -52,27 +55,23 @@ export default class DirtyDiffWorker {
compute
(
model
,
cb
)
{
if
(
this
.
editorSimpleWorker
)
{
// eslint-disable-next-line promise/catch-or-return
this
.
editorSimpleWorker
.
computeDiff
(
model
.
getOriginalModel
().
uri
.
toString
(),
model
.
getModel
().
uri
.
toString
(),
return
this
.
editorSimpleWorker
.
computeDiff
(
model
.
originalUrl
,
model
.
url
,
).
then
(
cb
);
}
else
{
this
.
actions
.
add
({
compute
:
[
model
,
cb
],
});
}
this
.
actions
.
add
({
compute
:
[
model
,
cb
],
});
return
null
;
}
dispose
()
{
this
.
models
.
forEach
(
model
=>
this
.
editorSimpleWorker
.
acceptRemovedModel
(
model
.
url
),
);
this
.
models
.
clear
();
this
.
actions
.
clear
();
this
.
editorSimpleWorker
.
dispose
();
this
.
disposable
.
dispose
();
this
.
editorSimpleWorker
=
null
;
}
}
app/assets/javascripts/repo/lib/editor.js
View file @
eb8a6095
/* global monaco */
import
DirtyDiffController
from
'
./diff/controller
'
;
import
Model
from
'
./common/model
'
;
import
Disposable
from
'
./common/disposable
'
;
import
ModelManager
from
'
./common/model_manager
'
;
export
default
class
Editor
{
static
create
()
{
this
.
editorInstance
=
new
Editor
();
return
this
.
editorInstance
;
}
class
Editor
{
constructor
()
{
this
.
models
=
new
Map
();
this
.
diffComputers
=
new
Map
();
this
.
currentModel
=
null
;
this
.
instance
=
null
;
this
.
dirtyDiffController
=
null
;
this
.
modelManager
=
new
ModelManager
();
this
.
disposable
=
new
Disposable
();
this
.
disposable
.
add
(
this
.
modelManager
);
}
createInstance
(
domElement
)
{
...
...
@@ -20,19 +30,14 @@ class Editor {
scrollBeyondLastLine
:
false
,
});
this
.
dirtyDiffController
=
new
DirtyDiffController
();
this
.
dirtyDiffController
=
new
DirtyDiffController
(
this
.
modelManager
);
this
.
disposable
.
add
(
this
.
dirtyDiffController
,
this
.
instance
);
}
}
createModel
(
file
)
{
if
(
this
.
models
.
has
(
file
.
path
))
{
return
this
.
models
.
get
(
file
.
path
);
}
const
model
=
new
Model
(
file
);
this
.
models
.
set
(
file
.
path
,
model
);
return
model
;
return
this
.
modelManager
.
addModel
(
file
);
}
attachModel
(
model
)
{
...
...
@@ -51,19 +56,11 @@ class Editor {
}
dispose
()
{
this
.
disposable
.
dispose
();
// dispose main monaco instance
if
(
this
.
instance
)
{
this
.
instance
.
dispose
();
this
.
instance
=
null
;
}
// dispose of all the models
this
.
models
.
forEach
(
model
=>
model
.
dispose
());
this
.
models
.
clear
();
this
.
dirtyDiffController
.
dispose
();
this
.
dirtyDiffController
=
null
;
}
}
export
default
new
Editor
();
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment