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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
b452bdea
Commit
b452bdea
authored
Mar 25, 2018
by
Tim Zallmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Actual MR diff displayed
parent
f62359c2
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
195 additions
and
339 deletions
+195
-339
app/assets/javascripts/api.js
app/assets/javascripts/api.js
+21
-1
app/assets/javascripts/ide/components/changed_file_icon.vue
app/assets/javascripts/ide/components/changed_file_icon.vue
+18
-17
app/assets/javascripts/ide/components/repo_editor.vue
app/assets/javascripts/ide/components/repo_editor.vue
+8
-2
app/assets/javascripts/ide/components/repo_file.vue
app/assets/javascripts/ide/components/repo_file.vue
+1
-1
app/assets/javascripts/ide/ide_router.js
app/assets/javascripts/ide/ide_router.js
+30
-33
app/assets/javascripts/ide/lib/common/model.js
app/assets/javascripts/ide/lib/common/model.js
+5
-5
app/assets/javascripts/ide/lib/diff/revert_patch.js
app/assets/javascripts/ide/lib/diff/revert_patch.js
+0
-183
app/assets/javascripts/ide/lib/editor.js
app/assets/javascripts/ide/lib/editor.js
+1
-1
app/assets/javascripts/ide/services/index.js
app/assets/javascripts/ide/services/index.js
+22
-0
app/assets/javascripts/ide/stores/actions/file.js
app/assets/javascripts/ide/stores/actions/file.js
+23
-81
app/assets/javascripts/ide/stores/actions/merge_request.js
app/assets/javascripts/ide/stores/actions/merge_request.js
+32
-5
app/assets/javascripts/ide/stores/actions/tree.js
app/assets/javascripts/ide/stores/actions/tree.js
+1
-1
app/assets/javascripts/ide/stores/getters.js
app/assets/javascripts/ide/stores/getters.js
+5
-0
app/assets/javascripts/ide/stores/mutation_types.js
app/assets/javascripts/ide/stores/mutation_types.js
+3
-1
app/assets/javascripts/ide/stores/mutations/file.js
app/assets/javascripts/ide/stores/mutations/file.js
+5
-8
app/assets/javascripts/ide/stores/mutations/merge_request.js
app/assets/javascripts/ide/stores/mutations/merge_request.js
+20
-0
No files found.
app/assets/javascripts/api.js
View file @
b452bdea
...
@@ -13,6 +13,10 @@ const Api = {
...
@@ -13,6 +13,10 @@ const Api = {
mergeRequestPath
:
'
/api/:version/projects/:id/merge_requests/:mrid
'
,
mergeRequestPath
:
'
/api/:version/projects/:id/merge_requests/:mrid
'
,
mergeRequestChangesPath
:
mergeRequestChangesPath
:
'
/api/:version/projects/:id/merge_requests/:mrid/changes
'
,
'
/api/:version/projects/:id/merge_requests/:mrid/changes
'
,
mergeRequestVersionsPath
:
'
/api/:version/projects/:id/merge_requests/:mrid/versions
'
,
mergeRequestVersionPath
:
'
/api/:version/projects/:id/merge_requests/:mrid/version/:versionid
'
,
groupLabelsPath
:
'
/groups/:namespace_path/-/labels
'
,
groupLabelsPath
:
'
/groups/:namespace_path/-/labels
'
,
licensePath
:
'
/api/:version/templates/licenses/:key
'
,
licensePath
:
'
/api/:version/templates/licenses/:key
'
,
gitignorePath
:
'
/api/:version/templates/gitignores/:key
'
,
gitignorePath
:
'
/api/:version/templates/gitignores/:key
'
,
...
@@ -109,7 +113,6 @@ const Api = {
...
@@ -109,7 +113,6 @@ const Api = {
return
axios
.
get
(
url
);
return
axios
.
get
(
url
);
},
},
// Return Merge Request Changes
mergeRequestChanges
(
projectPath
,
mergeRequestId
)
{
mergeRequestChanges
(
projectPath
,
mergeRequestId
)
{
const
url
=
Api
.
buildUrl
(
Api
.
mergeRequestChangesPath
)
const
url
=
Api
.
buildUrl
(
Api
.
mergeRequestChangesPath
)
.
replace
(
'
:id
'
,
encodeURIComponent
(
projectPath
))
.
replace
(
'
:id
'
,
encodeURIComponent
(
projectPath
))
...
@@ -118,6 +121,23 @@ const Api = {
...
@@ -118,6 +121,23 @@ const Api = {
return
axios
.
get
(
url
);
return
axios
.
get
(
url
);
},
},
mergeRequestVersions
(
projectPath
,
mergeRequestId
)
{
const
url
=
Api
.
buildUrl
(
Api
.
mergeRequestVersionsPath
)
.
replace
(
'
:id
'
,
encodeURIComponent
(
projectPath
))
.
replace
(
'
:mrid
'
,
mergeRequestId
);
return
axios
.
get
(
url
);
},
mergeRequestVersion
(
projectPath
,
mergeRequestId
,
versionId
)
{
const
url
=
Api
.
buildUrl
(
Api
.
mergeRequestVersionPath
)
.
replace
(
'
:id
'
,
encodeURIComponent
(
projectPath
))
.
replace
(
'
:mrid
'
,
mergeRequestId
)
.
replace
(
'
:versionid
'
,
versionId
);
return
axios
.
get
(
url
);
},
newLabel
(
namespacePath
,
projectPath
,
data
,
callback
)
{
newLabel
(
namespacePath
,
projectPath
,
data
,
callback
)
{
let
url
;
let
url
;
...
...
app/assets/javascripts/ide/components/changed_file_icon.vue
View file @
b452bdea
<
script
>
<
script
>
import
icon
from
'
~/vue_shared/components/icon.vue
'
;
import
icon
from
'
~/vue_shared/components/icon.vue
'
;
export
default
{
export
default
{
components
:
{
components
:
{
icon
,
icon
,
},
props
:
{
file
:
{
type
:
Object
,
required
:
true
,
},
},
props
:
{
},
file
:
{
computed
:
{
type
:
Object
,
changedIcon
()
{
required
:
true
,
if
(
this
.
file
.
tempFile
)
return
'
file-addition
'
;
},
return
this
.
file
.
changed
?
'
file-modified
'
:
'
git-merge
'
;
},
},
computed
:
{
changedIconClass
()
{
changedIcon
()
{
return
`multi-
${
this
.
changedIcon
}
`
;
return
this
.
file
.
tempFile
?
'
file-addition
'
:
'
file-modified
'
;
},
changedIconClass
()
{
return
`multi-
${
this
.
changedIcon
}
`
;
},
},
},
};
},
};
</
script
>
</
script
>
<
template
>
<
template
>
...
...
app/assets/javascripts/ide/components/repo_editor.vue
View file @
b452bdea
<
script
>
<
script
>
/* global monaco */
/* global monaco */
import
{
mapState
,
mapActions
}
from
'
vuex
'
;
import
{
mapState
,
map
Getters
,
map
Actions
}
from
'
vuex
'
;
import
flash
from
'
~/flash
'
;
import
flash
from
'
~/flash
'
;
import
monacoLoader
from
'
../monaco_loader
'
;
import
monacoLoader
from
'
../monaco_loader
'
;
import
Editor
from
'
../lib/editor
'
;
import
Editor
from
'
../lib/editor
'
;
...
@@ -19,6 +19,7 @@ export default {
...
@@ -19,6 +19,7 @@ export default {
'
viewer
'
,
'
viewer
'
,
'
delayViewerUpdated
'
,
'
delayViewerUpdated
'
,
]),
]),
...
mapGetters
([
'
currentMergeRequest
'
]),
shouldHideEditor
()
{
shouldHideEditor
()
{
return
this
.
file
&&
this
.
file
.
binary
&&
!
this
.
file
.
raw
;
return
this
.
file
&&
this
.
file
.
binary
&&
!
this
.
file
.
raw
;
},
},
...
@@ -68,7 +69,12 @@ export default {
...
@@ -68,7 +69,12 @@ export default {
this
.
editor
.
clearEditor
();
this
.
editor
.
clearEditor
();
this
.
getRawFileData
(
this
.
file
)
this
.
getRawFileData
({
path
:
this
.
file
.
path
,
baseSha
:
this
.
currentMergeRequest
?
this
.
currentMergeRequest
.
baseCommitSha
:
''
,
})
.
then
(()
=>
{
.
then
(()
=>
{
const
viewerPromise
=
this
.
delayViewerUpdated
const
viewerPromise
=
this
.
delayViewerUpdated
?
this
.
updateViewer
(
'
editor
'
)
?
this
.
updateViewer
(
'
editor
'
)
...
...
app/assets/javascripts/ide/components/repo_file.vue
View file @
b452bdea
...
@@ -104,7 +104,7 @@ export default {
...
@@ -104,7 +104,7 @@ export default {
</span>
</span>
<changed-file-icon
<changed-file-icon
:file=
"file"
:file=
"file"
v-if=
"file.changed || file.tempFile"
v-if=
"file.changed || file.tempFile
|| file.mrDiff
"
class=
"prepend-top-5 pull-right"
class=
"prepend-top-5 pull-right"
/>
/>
<new-dropdown
<new-dropdown
...
...
app/assets/javascripts/ide/ide_router.js
View file @
b452bdea
...
@@ -123,40 +123,37 @@ router.beforeEach((to, from, next) => {
...
@@ -123,40 +123,37 @@ router.beforeEach((to, from, next) => {
mergeRequestId
:
to
.
params
.
mrid
,
mergeRequestId
:
to
.
params
.
mrid
,
})
})
.
then
(
mrChanges
=>
{
.
then
(
mrChanges
=>
{
if
(
mrChanges
.
changes
.
length
>
0
)
{
store
}
.
dispatch
(
'
getMergeRequestVersions
'
,
{
mrChanges
.
changes
.
forEach
((
change
,
ind
)
=>
{
projectId
:
fullProjectId
,
console
.
log
(
`CHANGE :
${
ind
}
: `
,
change
);
mergeRequestId
:
to
.
params
.
mrid
,
})
const
changeTreeEntry
=
.
then
(()
=>
{
store
.
state
.
entries
[
change
.
new_path
];
mrChanges
.
changes
.
forEach
((
change
,
ind
)
=>
{
const
changeTreeEntry
=
console
.
log
(
store
.
state
.
entries
[
change
.
new_path
];
'
Tree Entry for the change
'
,
changeTreeEntry
,
if
(
changeTreeEntry
)
{
change
.
diff
,
store
.
dispatch
(
'
setFileMrDiff
'
,
{
);
file
:
changeTreeEntry
,
mrDiff
:
change
.
diff
,
if
(
changeTreeEntry
)
{
});
store
.
dispatch
(
'
setFileMrDiff
'
,
{
file
:
changeTreeEntry
,
if
(
ind
<
5
)
{
mrDiff
:
change
.
diff
,
store
.
dispatch
(
'
getFileData
'
,
{
path
:
change
.
new_path
,
makeFileActive
:
ind
===
0
,
});
}
}
});
});
store
.
dispatch
(
'
setFileTargetBranch
'
,
{
})
file
:
changeTreeEntry
,
.
catch
(
e
=>
{
targetBranch
:
mrChanges
.
target_branch
,
flash
(
});
'
Error while loading the merge request versions. Please try again.
'
,
);
if
(
ind
===
0
)
{
throw
e
;
store
.
dispatch
(
'
getFileData
'
,
change
.
new_path
);
});
}
else
{
// TODO : Implement Tab reloading
store
.
dispatch
(
'
preloadFileTab
'
,
changeTreeEntry
);
}
}
else
{
console
.
warn
(
`No Tree Entry for
${
change
.
new_path
}
`
);
}
});
})
})
.
catch
(
e
=>
{
.
catch
(
e
=>
{
flash
(
flash
(
...
...
app/assets/javascripts/ide/lib/common/model.js
View file @
b452bdea
...
@@ -22,10 +22,10 @@ export default class Model {
...
@@ -22,10 +22,10 @@ export default class Model {
)),
)),
);
);
if
(
this
.
file
.
targetBranch
)
{
if
(
this
.
file
.
baseRaw
)
{
this
.
disposable
.
add
(
this
.
disposable
.
add
(
(
this
.
target
Model
=
this
.
monaco
.
editor
.
createModel
(
(
this
.
base
Model
=
this
.
monaco
.
editor
.
createModel
(
this
.
file
.
target
Raw
,
this
.
file
.
base
Raw
,
undefined
,
undefined
,
new
this
.
monaco
.
Uri
(
null
,
null
,
`target/
${
this
.
file
.
path
}
`
),
new
this
.
monaco
.
Uri
(
null
,
null
,
`target/
${
this
.
file
.
path
}
`
),
)),
)),
...
@@ -68,8 +68,8 @@ export default class Model {
...
@@ -68,8 +68,8 @@ export default class Model {
return
this
.
originalModel
;
return
this
.
originalModel
;
}
}
get
Target
Model
()
{
get
Base
Model
()
{
return
this
.
target
Model
;
return
this
.
base
Model
;
}
}
setValue
(
value
)
{
setValue
(
value
)
{
...
...
app/assets/javascripts/ide/lib/diff/revert_patch.js
deleted
100644 → 0
View file @
f62359c2
export
function
revertPatch
(
source
,
uniDiff
,
options
=
{})
{
if
(
typeof
uniDiff
===
'
string
'
)
{
uniDiff
=
parsePatch
(
uniDiff
);
}
if
(
Array
.
isArray
(
uniDiff
))
{
if
(
uniDiff
.
length
>
1
)
{
throw
new
Error
(
'
applyPatch only works with a single input.
'
);
}
uniDiff
=
uniDiff
[
0
];
}
// Apply the diff to the input
let
lines
=
source
.
split
(
/
\r\n
|
[\n\v\f\r\x
85
]
/
),
delimiters
=
source
.
match
(
/
\r\n
|
[\n\v\f\r\x
85
]
/g
)
||
[],
hunks
=
uniDiff
.
hunks
,
compareLine
=
options
.
compareLine
||
((
lineNumber
,
line
,
operation
,
patchContent
)
=>
line
===
patchContent
),
errorCount
=
0
,
fuzzFactor
=
options
.
fuzzFactor
||
0
,
minLine
=
0
,
offset
=
0
,
removeEOFNL
,
addEOFNL
;
/**
* Checks if the hunk exactly fits on the provided location
*/
function
hunkFits
(
hunk
,
toPos
)
{
for
(
let
j
=
0
;
j
<
hunk
.
lines
.
length
;
j
++
)
{
let
line
=
hunk
.
lines
[
j
],
operation
=
line
[
0
],
content
=
line
.
substr
(
1
);
if
(
operation
===
'
'
||
operation
===
'
-
'
)
{
// Context sanity check
if
(
!
compareLine
(
toPos
+
1
,
lines
[
toPos
],
operation
,
content
))
{
errorCount
++
;
if
(
errorCount
>
fuzzFactor
)
{
return
false
;
}
}
toPos
++
;
}
}
return
true
;
}
// Search best fit offsets for each hunk based on the previous ones
for
(
let
i
=
0
;
i
<
hunks
.
length
;
i
++
)
{
let
hunk
=
hunks
[
i
],
maxLine
=
lines
.
length
-
hunk
.
oldLines
,
localOffset
=
0
,
toPos
=
offset
+
hunk
.
oldStart
-
1
;
const
iterator
=
distanceIterator
(
toPos
,
minLine
,
maxLine
);
for
(;
localOffset
!==
undefined
;
localOffset
=
iterator
())
{
if
(
hunkFits
(
hunk
,
toPos
+
localOffset
))
{
hunk
.
offset
=
offset
+=
localOffset
;
break
;
}
}
if
(
localOffset
===
undefined
)
{
return
false
;
}
// Set lower text limit to end of the current hunk, so next ones don't try
// to fit over already patched text
minLine
=
hunk
.
offset
+
hunk
.
oldStart
+
hunk
.
oldLines
;
}
// Apply patch hunks
let
diffOffset
=
0
;
for
(
let
i
=
0
;
i
<
hunks
.
length
;
i
++
)
{
let
hunk
=
hunks
[
i
],
toPos
=
hunk
.
oldStart
+
hunk
.
offset
+
diffOffset
-
1
;
diffOffset
+=
hunk
.
newLines
-
hunk
.
oldLines
;
if
(
toPos
<
0
)
{
// Creating a new file
toPos
=
0
;
}
for
(
let
j
=
0
;
j
<
hunk
.
lines
.
length
;
j
++
)
{
let
line
=
hunk
.
lines
[
j
],
operation
=
line
[
0
],
content
=
line
.
substr
(
1
),
delimiter
=
hunk
.
linedelimiters
[
j
];
// Turned around the commands to revert the applying
if
(
operation
===
'
'
)
{
toPos
++
;
}
else
if
(
operation
===
'
+
'
)
{
lines
.
splice
(
toPos
,
1
);
delimiters
.
splice
(
toPos
,
1
);
/* istanbul ignore else */
}
else
if
(
operation
===
'
-
'
)
{
lines
.
splice
(
toPos
,
0
,
content
);
delimiters
.
splice
(
toPos
,
0
,
delimiter
);
toPos
++
;
}
else
if
(
operation
===
'
\\
'
)
{
const
previousOperation
=
hunk
.
lines
[
j
-
1
]
?
hunk
.
lines
[
j
-
1
][
0
]
:
null
;
if
(
previousOperation
===
'
+
'
)
{
removeEOFNL
=
true
;
}
else
if
(
previousOperation
===
'
-
'
)
{
addEOFNL
=
true
;
}
}
}
}
// Handle EOFNL insertion/removal
if
(
removeEOFNL
)
{
while
(
!
lines
[
lines
.
length
-
1
])
{
lines
.
pop
();
delimiters
.
pop
();
}
}
else
if
(
addEOFNL
)
{
lines
.
push
(
''
);
delimiters
.
push
(
'
\n
'
);
}
for
(
let
_k
=
0
;
_k
<
lines
.
length
-
1
;
_k
++
)
{
lines
[
_k
]
=
lines
[
_k
]
+
delimiters
[
_k
];
}
return
lines
.
join
(
''
);
}
/**
* Utility Function
* @param {*} start
* @param {*} minLine
* @param {*} maxLine
*/
const
distanceIterator
=
function
(
start
,
minLine
,
maxLine
)
{
let
wantForward
=
true
,
backwardExhausted
=
false
,
forwardExhausted
=
false
,
localOffset
=
1
;
return
function
iterator
()
{
if
(
wantForward
&&
!
forwardExhausted
)
{
if
(
backwardExhausted
)
{
localOffset
++
;
}
else
{
wantForward
=
false
;
}
// Check if trying to fit beyond text length, and if not, check it fits
// after offset location (or desired location on first iteration)
if
(
start
+
localOffset
<=
maxLine
)
{
return
localOffset
;
}
forwardExhausted
=
true
;
}
if
(
!
backwardExhausted
)
{
if
(
!
forwardExhausted
)
{
wantForward
=
true
;
}
// Check if trying to fit before text beginning, and if not, check it fits
// before offset location
if
(
minLine
<=
start
-
localOffset
)
{
return
-
localOffset
++
;
}
backwardExhausted
=
true
;
return
iterator
();
}
// We tried to fit hunk before text beginning and beyond text length, then
// hunk can't fit on the text. Return undefined
};
};
app/assets/javascripts/ide/lib/editor.js
View file @
b452bdea
...
@@ -111,7 +111,7 @@ export default class Editor {
...
@@ -111,7 +111,7 @@ export default class Editor {
attachMergeRequestModel
(
model
)
{
attachMergeRequestModel
(
model
)
{
this
.
instance
.
setModel
({
this
.
instance
.
setModel
({
original
:
model
.
get
Target
Model
(),
original
:
model
.
get
Base
Model
(),
modified
:
model
.
getModel
(),
modified
:
model
.
getModel
(),
});
});
}
}
...
...
app/assets/javascripts/ide/services/index.js
View file @
b452bdea
import
Vue
from
'
vue
'
;
import
Vue
from
'
vue
'
;
import
VueResource
from
'
vue-resource
'
;
import
VueResource
from
'
vue-resource
'
;
import
Api
from
'
~/api
'
;
import
Api
from
'
~/api
'
;
import
{
version
}
from
'
punycode
'
;
Vue
.
use
(
VueResource
);
Vue
.
use
(
VueResource
);
...
@@ -24,6 +25,21 @@ export default {
...
@@ -24,6 +25,21 @@ export default {
.
get
(
file
.
rawPath
,
{
params
:
{
format
:
'
json
'
}
})
.
get
(
file
.
rawPath
,
{
params
:
{
format
:
'
json
'
}
})
.
then
(
res
=>
res
.
text
());
.
then
(
res
=>
res
.
text
());
},
},
getBaseRawFileData
(
file
,
sha
)
{
if
(
file
.
tempFile
)
{
return
Promise
.
resolve
(
file
.
baseRaw
);
}
if
(
file
.
baseRaw
)
{
return
Promise
.
resolve
(
file
.
baseRaw
);
}
return
Vue
.
http
.
get
(
file
.
rawPath
.
replace
(
file
.
branchId
,
sha
),
{
params
:
{
format
:
'
json
'
},
})
.
then
(
res
=>
res
.
text
());
},
getProjectData
(
namespace
,
project
)
{
getProjectData
(
namespace
,
project
)
{
return
Api
.
project
(
`
${
namespace
}
/
${
project
}
`
);
return
Api
.
project
(
`
${
namespace
}
/
${
project
}
`
);
},
},
...
@@ -33,6 +49,12 @@ export default {
...
@@ -33,6 +49,12 @@ export default {
getProjectMergeRequestChanges
(
projectId
,
mergeRequestId
)
{
getProjectMergeRequestChanges
(
projectId
,
mergeRequestId
)
{
return
Api
.
mergeRequestChanges
(
projectId
,
mergeRequestId
);
return
Api
.
mergeRequestChanges
(
projectId
,
mergeRequestId
);
},
},
getProjectMergeRequestVersions
(
projectId
,
mergeRequestId
)
{
return
Api
.
mergeRequestVersions
(
projectId
,
mergeRequestId
);
},
getProjectMergeRequestVersion
(
projectId
,
mergeRequestId
,
versionId
)
{
return
Api
.
mergeRequestVersion
(
projectId
,
mergeRequestId
,
versionId
);
},
getBranchData
(
projectId
,
currentBranchId
)
{
getBranchData
(
projectId
,
currentBranchId
)
{
return
Api
.
branchSingle
(
projectId
,
currentBranchId
);
return
Api
.
branchSingle
(
projectId
,
currentBranchId
);
},
},
...
...
app/assets/javascripts/ide/stores/actions/file.js
View file @
b452bdea
import
{
normalizeHeaders
}
from
'
~/lib/utils/common_utils
'
;
import
{
normalizeHeaders
}
from
'
~/lib/utils/common_utils
'
;
import
{
parsePatch
,
applyPatches
}
from
'
diff
'
;
import
{
parsePatch
,
applyPatches
}
from
'
diff
'
;
import
{
revertPatch
}
from
'
../../lib/diff/revert_patch
'
;
import
flash
from
'
~/flash
'
;
import
flash
from
'
~/flash
'
;
import
eventHub
from
'
../../eventhub
'
;
import
eventHub
from
'
../../eventhub
'
;
import
service
from
'
../../services
'
;
import
service
from
'
../../services
'
;
...
@@ -48,7 +47,10 @@ export const setFileActive = ({ commit, state, getters, dispatch }, path) => {
...
@@ -48,7 +47,10 @@ export const setFileActive = ({ commit, state, getters, dispatch }, path) => {
commit
(
types
.
SET_CURRENT_BRANCH
,
file
.
branchId
);
commit
(
types
.
SET_CURRENT_BRANCH
,
file
.
branchId
);
};
};
export
const
getFileData
=
({
state
,
commit
,
dispatch
},
path
)
=>
{
export
const
getFileData
=
(
{
state
,
commit
,
dispatch
},
{
path
,
makeFileActive
=
true
},
)
=>
{
const
file
=
state
.
entries
[
path
];
const
file
=
state
.
entries
[
path
];
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
commit
(
types
.
TOGGLE_LOADING
,
{
entry
:
file
});
commit
(
types
.
TOGGLE_LOADING
,
{
entry
:
file
});
...
@@ -66,7 +68,7 @@ export const getFileData = ({ state, commit, dispatch }, path) => {
...
@@ -66,7 +68,7 @@ export const getFileData = ({ state, commit, dispatch }, path) => {
.
then
(
data
=>
{
.
then
(
data
=>
{
commit
(
types
.
SET_FILE_DATA
,
{
data
,
file
});
commit
(
types
.
SET_FILE_DATA
,
{
data
,
file
});
commit
(
types
.
TOGGLE_FILE_OPEN
,
path
);
commit
(
types
.
TOGGLE_FILE_OPEN
,
path
);
dispatch
(
'
setFileActive
'
,
file
.
path
);
if
(
makeFileActive
)
dispatch
(
'
setFileActive
'
,
file
.
path
);
commit
(
types
.
TOGGLE_LOADING
,
{
entry
:
file
});
commit
(
types
.
TOGGLE_LOADING
,
{
entry
:
file
});
})
})
.
catch
(
err
=>
{
.
catch
(
err
=>
{
...
@@ -80,98 +82,38 @@ export const getFileData = ({ state, commit, dispatch }, path) => {
...
@@ -80,98 +82,38 @@ export const getFileData = ({ state, commit, dispatch }, path) => {
false
,
false
,
true
,
true
,
);
);
reject
(
err
);
});
});
});
});
};
};
export
const
preloadFileTab
=
({
state
,
commit
,
dispatch
},
file
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
commit
(
types
.
TOGGLE_LOADING
,
{
entry
:
file
});
service
.
getFileData
(
file
.
url
)
.
then
(
data
=>
{
commit
(
types
.
SET_FILE_DATA
,
{
data
,
file
});
commit
(
types
.
TOGGLE_FILE_OPEN
,
file
);
commit
(
types
.
TOGGLE_LOADING
,
{
entry
:
file
});
})
.
catch
(()
=>
{
commit
(
types
.
TOGGLE_LOADING
,
{
entry
:
file
});
flash
(
'
Error loading file data. Please try again.
'
,
'
alert
'
,
document
,
null
,
false
,
true
,
);
});
});
};
export
const
setFileTargetBranch
=
(
{
state
,
commit
},
{
file
,
targetBranch
},
)
=>
{
commit
(
types
.
SET_FILE_TARGET_BRANCH
,
{
file
,
targetBranch
,
targetRawPath
:
file
.
rawPath
.
replace
(
file
.
branchId
,
targetBranch
),
});
};
export
const
processFileMrDiff
=
({
state
,
commit
},
file
)
=>
{
const
patchObj
=
parsePatch
(
file
.
mrDiff
);
const
transformedContent
=
applyPatch
(
file
.
raw
,
file
.
mrDiff
);
debugger
;
};
export
const
setFileMrDiff
=
({
state
,
commit
},
{
file
,
mrDiff
})
=>
{
export
const
setFileMrDiff
=
({
state
,
commit
},
{
file
,
mrDiff
})
=>
{
commit
(
types
.
SET_FILE_MR_DIFF
,
{
file
,
mrDiff
});
commit
(
types
.
SET_FILE_MR_DIFF
,
{
file
,
mrDiff
});
};
};
export
const
getRawFileData
=
({
commit
,
dispatch
},
file
)
=>
{
export
const
getRawFileData
=
(
{
state
,
commit
,
dispatch
},
{
path
,
baseSha
},
)
=>
{
const
file
=
state
.
entries
[
path
];
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
service
service
.
getRawFileData
(
file
)
.
getRawFileData
(
file
)
.
then
(
raw
=>
{
.
then
(
raw
=>
{
commit
(
types
.
SET_FILE_RAW_DATA
,
{
file
,
raw
});
commit
(
types
.
SET_FILE_RAW_DATA
,
{
file
,
raw
});
if
(
file
.
mrDiff
)
{
if
(
file
.
mrDiff
)
{
const
patchObj
=
parsePatch
(
file
.
mrDiff
);
service
patchObj
[
0
].
hunks
.
forEach
(
hunk
=>
{
.
getBaseRawFileData
(
file
,
baseSha
)
console
.
log
(
'
H
'
,
hunk
);
.
then
(
baseRaw
=>
{
/*hunk.lines.forEach((line) => {
commit
(
types
.
SET_FILE_BASE_RAW_DATA
,
{
if (line.substr(0, 1) === '+') {
file
,
line = '-' + line.substr(1);
baseRaw
,
} else if (line.substr(0, 1) === '-') {
});
line = '+' + line.substr(1);
resolve
(
raw
);
}
})
})*/
.
catch
(
e
=>
{
});
reject
(
e
);
});
console
.
log
(
'
PATCH OBJ :
'
+
JSON
.
stringify
(
patchObj
));
const
transformedContent
=
revertPatch
(
raw
,
patchObj
,
{
compareLine
:
(
lineNumber
,
line
,
operation
,
patchContent
)
=>
{
const
tempLine
=
line
;
//line = patchContent;
//patchContent = tempLine;
if
(
operation
===
'
-
'
)
{
operation
=
'
+
'
;
}
else
if
(
operation
===
'
+
'
)
{
operation
=
'
-
'
;
}
console
.
log
(
'
COMPARE :
'
+
line
+
'
-
'
+
operation
+
'
-
'
+
patchContent
,
);
return
true
;
},
});
console
.
log
(
'
TRANSFORMED :
'
,
transformedContent
);
commit
(
types
.
SET_FILE_TARGET_RAW_DATA
,
{
file
,
raw
:
transformedContent
,
});
resolve
(
raw
);
}
else
{
}
else
{
resolve
(
raw
);
resolve
(
raw
);
}
}
...
...
app/assets/javascripts/ide/stores/actions/merge_request.js
View file @
b452bdea
...
@@ -19,10 +19,7 @@ export const getMergeRequestData = (
...
@@ -19,10 +19,7 @@ export const getMergeRequestData = (
mergeRequest
:
data
,
mergeRequest
:
data
,
});
});
if
(
!
state
.
currentMergeRequestId
)
{
if
(
!
state
.
currentMergeRequestId
)
{
commit
(
commit
(
types
.
SET_CURRENT_MERGE_REQUEST
,
mergeRequestId
);
types
.
SET_CURRENT_MERGE_REQUEST
,
`
${
projectId
}
/
${
mergeRequestId
}
`
,
);
}
}
resolve
(
data
);
resolve
(
data
);
})
})
...
@@ -42,7 +39,7 @@ export const getMergeRequestChanges = (
...
@@ -42,7 +39,7 @@ export const getMergeRequestChanges = (
)
=>
)
=>
new
Promise
((
resolve
,
reject
)
=>
{
new
Promise
((
resolve
,
reject
)
=>
{
if
(
if
(
!
state
.
projects
[
projectId
].
mergeRequests
[
mergeRequestId
].
changes
||
!
state
.
projects
[
projectId
].
mergeRequests
[
mergeRequestId
].
changes
.
length
||
force
force
)
{
)
{
service
service
...
@@ -65,6 +62,36 @@ export const getMergeRequestChanges = (
...
@@ -65,6 +62,36 @@ export const getMergeRequestChanges = (
}
}
});
});
export
const
getMergeRequestVersions
=
(
{
commit
,
state
,
dispatch
},
{
projectId
,
mergeRequestId
,
force
=
false
}
=
{},
)
=>
new
Promise
((
resolve
,
reject
)
=>
{
if
(
!
state
.
projects
[
projectId
].
mergeRequests
[
mergeRequestId
].
versions
.
length
||
force
)
{
service
.
getProjectMergeRequestVersions
(
projectId
,
mergeRequestId
)
.
then
(
res
=>
res
.
data
)
.
then
(
data
=>
{
commit
(
types
.
SET_MERGE_REQUEST_VERSIONS
,
{
projectPath
:
projectId
,
mergeRequestId
,
versions
:
data
,
});
resolve
(
data
);
})
.
catch
(()
=>
{
flash
(
'
Error loading merge request versions. Please try again.
'
);
reject
(
new
Error
(
`Merge Request Versions not loaded
${
projectId
}
`
));
});
}
else
{
resolve
(
state
.
projects
[
projectId
].
mergeRequests
[
mergeRequestId
].
versions
);
}
});
// eslint-disable-next-line import/prefer-default-export
// eslint-disable-next-line import/prefer-default-export
export
const
getMergeRequestNotes
=
(
export
const
getMergeRequestNotes
=
(
{
commit
,
state
,
dispatch
},
{
commit
,
state
,
dispatch
},
...
...
app/assets/javascripts/ide/stores/actions/tree.js
View file @
b452bdea
...
@@ -19,7 +19,7 @@ export const handleTreeEntryAction = ({ commit, dispatch }, row) => {
...
@@ -19,7 +19,7 @@ export const handleTreeEntryAction = ({ commit, dispatch }, row) => {
dispatch
(
'
setFileActive
'
,
row
.
path
);
dispatch
(
'
setFileActive
'
,
row
.
path
);
}
else
{
}
else
{
dispatch
(
'
getFileData
'
,
row
.
path
);
dispatch
(
'
getFileData
'
,
{
path
:
row
.
path
}
);
}
}
};
};
...
...
app/assets/javascripts/ide/stores/getters.js
View file @
b452bdea
...
@@ -23,6 +23,11 @@ export const projectsWithTrees = state =>
...
@@ -23,6 +23,11 @@ export const projectsWithTrees = state =>
};
};
});
});
export
const
currentMergeRequest
=
state
=>
state
.
projects
[
state
.
currentProjectId
].
mergeRequests
[
state
.
currentMergeRequestId
];
// eslint-disable-next-line no-confusing-arrow
// eslint-disable-next-line no-confusing-arrow
export
const
currentIcon
=
state
=>
export
const
currentIcon
=
state
=>
state
.
rightPanelCollapsed
?
'
angle-double-left
'
:
'
angle-double-right
'
;
state
.
rightPanelCollapsed
?
'
angle-double-left
'
:
'
angle-double-right
'
;
...
...
app/assets/javascripts/ide/stores/mutation_types.js
View file @
b452bdea
...
@@ -15,6 +15,8 @@ export const TOGGLE_PROJECT_OPEN = 'TOGGLE_PROJECT_OPEN';
...
@@ -15,6 +15,8 @@ export const TOGGLE_PROJECT_OPEN = 'TOGGLE_PROJECT_OPEN';
export
const
SET_MERGE_REQUEST
=
'
SET_MERGE_REQUEST
'
;
export
const
SET_MERGE_REQUEST
=
'
SET_MERGE_REQUEST
'
;
export
const
SET_CURRENT_MERGE_REQUEST
=
'
SET_CURRENT_MERGE_REQUEST
'
;
export
const
SET_CURRENT_MERGE_REQUEST
=
'
SET_CURRENT_MERGE_REQUEST
'
;
export
const
SET_MERGE_REQUEST_CHANGES
=
'
SET_MERGE_REQUEST_CHANGES
'
;
export
const
SET_MERGE_REQUEST_CHANGES
=
'
SET_MERGE_REQUEST_CHANGES
'
;
export
const
SET_MERGE_REQUEST_VERSIONS
=
'
SET_MERGE_REQUEST_VERSIONS
'
;
export
const
SET_MERGE_REQUEST_VERSION
=
'
SET_MERGE_REQUEST_VERSION
'
;
export
const
SET_MERGE_REQUEST_NOTES
=
'
SET_MERGE_REQUEST_NOTES
'
;
export
const
SET_MERGE_REQUEST_NOTES
=
'
SET_MERGE_REQUEST_NOTES
'
;
// Branch Mutation Types
// Branch Mutation Types
...
@@ -34,7 +36,7 @@ export const SET_FILE_DATA = 'SET_FILE_DATA';
...
@@ -34,7 +36,7 @@ export const SET_FILE_DATA = 'SET_FILE_DATA';
export
const
TOGGLE_FILE_OPEN
=
'
TOGGLE_FILE_OPEN
'
;
export
const
TOGGLE_FILE_OPEN
=
'
TOGGLE_FILE_OPEN
'
;
export
const
SET_FILE_ACTIVE
=
'
SET_FILE_ACTIVE
'
;
export
const
SET_FILE_ACTIVE
=
'
SET_FILE_ACTIVE
'
;
export
const
SET_FILE_RAW_DATA
=
'
SET_FILE_RAW_DATA
'
;
export
const
SET_FILE_RAW_DATA
=
'
SET_FILE_RAW_DATA
'
;
export
const
SET_FILE_
TARGET_RAW_DATA
=
'
SET_FILE_TARGET
_RAW_DATA
'
;
export
const
SET_FILE_
BASE_RAW_DATA
=
'
SET_FILE_BASE
_RAW_DATA
'
;
export
const
UPDATE_FILE_CONTENT
=
'
UPDATE_FILE_CONTENT
'
;
export
const
UPDATE_FILE_CONTENT
=
'
UPDATE_FILE_CONTENT
'
;
export
const
SET_FILE_LANGUAGE
=
'
SET_FILE_LANGUAGE
'
;
export
const
SET_FILE_LANGUAGE
=
'
SET_FILE_LANGUAGE
'
;
export
const
SET_FILE_POSITION
=
'
SET_FILE_POSITION
'
;
export
const
SET_FILE_POSITION
=
'
SET_FILE_POSITION
'
;
...
...
app/assets/javascripts/ide/stores/mutations/file.js
View file @
b452bdea
...
@@ -28,6 +28,8 @@ export default {
...
@@ -28,6 +28,8 @@ export default {
rawPath
:
data
.
raw_path
,
rawPath
:
data
.
raw_path
,
binary
:
data
.
binary
,
binary
:
data
.
binary
,
renderError
:
data
.
render_error
,
renderError
:
data
.
render_error
,
raw
:
null
,
baseRaw
:
null
,
});
});
},
},
[
types
.
SET_FILE_RAW_DATA
](
state
,
{
file
,
raw
})
{
[
types
.
SET_FILE_RAW_DATA
](
state
,
{
file
,
raw
})
{
...
@@ -35,9 +37,9 @@ export default {
...
@@ -35,9 +37,9 @@ export default {
raw
,
raw
,
});
});
},
},
[
types
.
SET_FILE_
TARGET_RAW_DATA
](
state
,
{
file
,
r
aw
})
{
[
types
.
SET_FILE_
BASE_RAW_DATA
](
state
,
{
file
,
baseR
aw
})
{
Object
.
assign
(
file
,
{
Object
.
assign
(
state
.
entries
[
file
.
path
]
,
{
targetRaw
:
r
aw
,
baseR
aw
,
});
});
},
},
[
types
.
UPDATE_FILE_CONTENT
](
state
,
{
path
,
content
})
{
[
types
.
UPDATE_FILE_CONTENT
](
state
,
{
path
,
content
})
{
...
@@ -69,11 +71,6 @@ export default {
...
@@ -69,11 +71,6 @@ export default {
mrDiff
,
mrDiff
,
});
});
},
},
[
types
.
SET_FILE_TARGET_BRANCH
](
state
,
{
file
,
targetBranch
})
{
Object
.
assign
(
file
,
{
targetBranch
,
});
},
[
types
.
DISCARD_FILE_CHANGES
](
state
,
path
)
{
[
types
.
DISCARD_FILE_CHANGES
](
state
,
path
)
{
Object
.
assign
(
state
.
entries
[
path
],
{
Object
.
assign
(
state
.
entries
[
path
],
{
content
:
state
.
entries
[
path
].
raw
,
content
:
state
.
entries
[
path
].
raw
,
...
...
app/assets/javascripts/ide/stores/mutations/merge_request.js
View file @
b452bdea
...
@@ -13,6 +13,9 @@ export default {
...
@@ -13,6 +13,9 @@ export default {
// Add client side properties
// Add client side properties
Object
.
assign
(
mergeRequest
,
{
Object
.
assign
(
mergeRequest
,
{
active
:
true
,
active
:
true
,
changes
:
[],
versions
:
[],
baseCommitSha
:
null
,
});
});
Object
.
assign
(
state
.
projects
[
projectPath
],
{
Object
.
assign
(
state
.
projects
[
projectPath
],
{
...
@@ -29,6 +32,23 @@ export default {
...
@@ -29,6 +32,23 @@ export default {
changes
,
changes
,
});
});
},
},
[
types
.
SET_MERGE_REQUEST_VERSIONS
](
state
,
{
projectPath
,
mergeRequestId
,
versions
},
)
{
Object
.
assign
(
state
.
projects
[
projectPath
].
mergeRequests
[
mergeRequestId
],
{
versions
,
baseCommitSha
:
versions
.
length
?
versions
[
0
].
base_commit_sha
:
null
,
});
},
[
types
.
SET_MERGE_REQUEST_VERSION
](
state
,
{
projectPath
,
mergeRequestId
,
changes
},
)
{
Object
.
assign
(
state
.
projects
[
projectPath
].
mergeRequests
[
mergeRequestId
],
{
changes
,
});
},
[
types
.
SET_MERGE_REQUEST_NOTES
](
[
types
.
SET_MERGE_REQUEST_NOTES
](
state
,
state
,
{
projectPath
,
mergeRequestId
,
notes
},
{
projectPath
,
mergeRequestId
,
notes
},
...
...
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