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
Léo-Paul Géneau
gitlab-ce
Commits
e2f27393
Commit
e2f27393
authored
Mar 22, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
toggling viewer mode closes the pending tab
then opens the file in edit mode
parent
002cc923
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
7 deletions
+33
-7
app/assets/javascripts/ide/components/commit_sidebar/list_item.vue
...s/javascripts/ide/components/commit_sidebar/list_item.vue
+0
-2
app/assets/javascripts/ide/components/ide.vue
app/assets/javascripts/ide/components/ide.vue
+1
-0
app/assets/javascripts/ide/components/repo_tabs.vue
app/assets/javascripts/ide/components/repo_tabs.vue
+16
-2
app/assets/javascripts/ide/stores/actions/file.js
app/assets/javascripts/ide/stores/actions/file.js
+9
-3
app/assets/javascripts/ide/stores/mutations/file.js
app/assets/javascripts/ide/stores/mutations/file.js
+7
-0
No files found.
app/assets/javascripts/ide/components/commit_sidebar/list_item.vue
View file @
e2f27393
<
script
>
import
{
mapActions
}
from
'
vuex
'
;
import
icon
from
'
~/vue_shared/components/icon.vue
'
;
import
router
from
'
../../ide_router
'
;
export
default
{
components
:
{
...
...
@@ -26,7 +25,6 @@ export default {
openFileInEditor
(
file
)
{
return
this
.
updateViewer
(
'
diff
'
).
then
(()
=>
{
this
.
openPendingTab
(
file
);
router
.
push
(
`/project/
${
file
.
projectId
}
/tree/master/`
);
});
},
},
...
...
app/assets/javascripts/ide/components/ide.vue
View file @
e2f27393
...
...
@@ -60,6 +60,7 @@ export default {
v-if=
"activeFile"
>
<repo-tabs
:active-file=
"activeFile"
:files=
"tabs"
:viewer=
"viewer"
:has-changes=
"hasChanges"
...
...
app/assets/javascripts/ide/components/repo_tabs.vue
View file @
e2f27393
...
...
@@ -2,6 +2,7 @@
import
{
mapActions
}
from
'
vuex
'
;
import
RepoTab
from
'
./repo_tab.vue
'
;
import
EditorMode
from
'
./editor_mode_dropdown.vue
'
;
import
router
from
'
../ide_router
'
;
export
default
{
components
:
{
...
...
@@ -9,6 +10,10 @@ export default {
EditorMode
,
},
props
:
{
activeFile
:
{
type
:
Object
,
required
:
true
,
},
files
:
{
type
:
Array
,
required
:
true
,
...
...
@@ -33,7 +38,16 @@ export default {
this
.
showShadow
=
this
.
$refs
.
tabsScroller
.
scrollWidth
>
this
.
$refs
.
tabsScroller
.
offsetWidth
;
},
methods
:
{
...
mapActions
([
'
updateViewer
'
]),
...
mapActions
([
'
updateViewer
'
,
'
removePendingTab
'
]),
openFileViewer
(
viewer
)
{
this
.
updateViewer
(
viewer
);
if
(
this
.
activeFile
.
pending
)
{
this
.
removePendingTab
(
this
.
activeFile
).
then
(()
=>
{
router
.
push
(
`/project
${
this
.
activeFile
.
url
}
`
);
});
}
},
},
};
</
script
>
...
...
@@ -54,7 +68,7 @@ export default {
:viewer=
"viewer"
:show-shadow=
"showShadow"
:has-changes=
"hasChanges"
@
click=
"
updat
eViewer"
@
click=
"
openFil
eViewer"
/>
</div>
</
template
>
app/assets/javascripts/ide/stores/actions/file.js
View file @
e2f27393
...
...
@@ -18,9 +18,9 @@ export const closeFile = ({ commit, state, getters, dispatch }, file) => {
commit
(
types
.
TOGGLE_FILE_OPEN
,
path
);
commit
(
types
.
SET_FILE_ACTIVE
,
{
path
,
active
:
false
});
if
(
state
.
openFile
s
.
length
>
0
&&
fileWasActive
)
{
if
(
getters
.
tab
s
.
length
>
0
&&
fileWasActive
)
{
const
nextIndexToOpen
=
indexOfClosedFile
===
0
?
0
:
indexOfClosedFile
-
1
;
const
nextFileToOpen
=
state
.
entries
[
state
.
openFiles
[
nextIndexToOpen
].
path
];
const
nextFileToOpen
=
state
.
openFiles
[
nextIndexToOpen
];
router
.
push
(
`/project
${
nextFileToOpen
.
url
}
`
);
}
else
if
(
!
state
.
openFiles
.
length
)
{
...
...
@@ -133,6 +133,12 @@ export const discardFileChanges = ({ state, commit }, path) => {
eventHub
.
$emit
(
`editor.update.model.content.
${
file
.
path
}
`
,
file
.
raw
);
};
export
const
openPendingTab
=
({
commit
},
file
)
=>
{
export
const
openPendingTab
=
({
commit
,
state
},
file
)
=>
{
commit
(
types
.
ADD_PENDING_TAB
,
file
);
router
.
push
(
`/project/
${
file
.
projectId
}
/tree/
${
state
.
currentBranchId
}
/`
);
};
export
const
removePendingTab
=
({
commit
},
file
)
=>
{
commit
(
types
.
REMOVE_PENDING_TAB
,
file
);
};
app/assets/javascripts/ide/stores/mutations/file.js
View file @
e2f27393
...
...
@@ -5,6 +5,13 @@ export default {
Object
.
assign
(
state
.
entries
[
path
],
{
active
,
});
Object
.
assign
(
state
,
{
pendingTabs
:
state
.
pendingTabs
.
map
(
f
=>
({
...
f
,
active
:
false
,
})),
});
},
[
types
.
TOGGLE_FILE_OPEN
](
state
,
path
)
{
Object
.
assign
(
state
.
entries
[
path
],
{
...
...
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