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
Boxiang Sun
gitlab-ce
Commits
bec24d15
Commit
bec24d15
authored
May 01, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use getters to correctly get the counts for both unstaged & staged changes
parent
87eb66e7
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
128 additions
and
33 deletions
+128
-33
app/assets/javascripts/ide/components/repo_file.vue
app/assets/javascripts/ide/components/repo_file.vue
+40
-3
app/assets/javascripts/ide/stores/actions/file.js
app/assets/javascripts/ide/stores/actions/file.js
+0
-11
app/assets/javascripts/ide/stores/actions/tree.js
app/assets/javascripts/ide/stores/actions/tree.js
+0
-10
app/assets/javascripts/ide/stores/getters.js
app/assets/javascripts/ide/stores/getters.js
+25
-0
app/assets/javascripts/ide/stores/mutation_types.js
app/assets/javascripts/ide/stores/mutation_types.js
+0
-1
app/assets/javascripts/ide/stores/mutations/tree.js
app/assets/javascripts/ide/stores/mutations/tree.js
+0
-5
app/assets/javascripts/ide/stores/utils.js
app/assets/javascripts/ide/stores/utils.js
+0
-2
spec/javascripts/ide/components/repo_file_spec.js
spec/javascripts/ide/components/repo_file_spec.js
+0
-1
spec/javascripts/ide/stores/getters_spec.js
spec/javascripts/ide/stores/getters_spec.js
+63
-0
No files found.
app/assets/javascripts/ide/components/repo_file.vue
View file @
bec24d15
<
script
>
import
{
mapActions
}
from
'
vuex
'
;
import
{
mapActions
,
mapGetters
}
from
'
vuex
'
;
import
{
n__
,
__
,
sprintf
}
from
'
~/locale
'
;
import
tooltip
from
'
~/vue_shared/directives/tooltip
'
;
import
SkeletonLoadingContainer
from
'
~/vue_shared/components/skeleton_loading_container.vue
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
FileIcon
from
'
~/vue_shared/components/file_icon.vue
'
;
...
...
@@ -11,6 +13,9 @@ import MrFileIcon from './mr_file_icon.vue';
export
default
{
name
:
'
RepoFile
'
,
directives
:
{
tooltip
,
},
components
:
{
SkeletonLoadingContainer
,
NewDropdown
,
...
...
@@ -31,6 +36,34 @@ export default {
},
},
computed
:
{
...
mapGetters
([
'
getChangesInFolder
'
,
'
getUnstagedFilesCountForPath
'
,
'
getStagedFilesCountForPath
'
,
]),
folderUnstagedCount
()
{
return
this
.
getUnstagedFilesCountForPath
(
this
.
file
.
path
);
},
folderStagedCount
()
{
return
this
.
getStagedFilesCountForPath
(
this
.
file
.
path
);
},
changesCount
()
{
return
this
.
getChangesInFolder
(
this
.
file
.
path
);
},
folderChangesTooltip
()
{
if
(
this
.
changesCount
===
0
)
return
undefined
;
if
(
this
.
folderUnstagedCount
>
0
&&
this
.
folderStagedCount
===
0
)
{
return
n__
(
'
%d unstaged change
'
,
'
%d unstaged changes
'
,
this
.
folderUnstagedCount
);
}
else
if
(
this
.
folderUnstagedCount
===
0
&&
this
.
folderStagedCount
>
0
)
{
return
n__
(
'
%d staged change
'
,
'
%d staged changes
'
,
this
.
folderStagedCount
);
}
return
sprintf
(
__
(
'
%{unstaged} unstaged and %{staged} staged changes
'
),
{
unstaged
:
this
.
folderUnstagedCount
,
staged
:
this
.
folderStagedCount
,
});
},
isTree
()
{
return
this
.
file
.
type
===
'
tree
'
;
},
...
...
@@ -104,11 +137,15 @@ export default {
v-if=
"file.mrChange"
/>
<span
v-if=
"isTree &&
file.changesCount > 0
"
v-if=
"isTree &&
changesCount > 0 && !file.opened
"
class=
"ide-tree-changes"
>
{{
file
.
changesCount
}}
{{
changesCount
}}
<icon
v-tooltip
:title=
"folderChangesTooltip"
data-container=
"body"
data-placement=
"right"
name=
"file-modified"
:size=
"12"
css-classes=
"prepend-left-5 multi-file-modified"
...
...
app/assets/javascripts/ide/stores/actions/file.js
View file @
bec24d15
...
...
@@ -126,15 +126,8 @@ export const changeFileContent = ({ state, commit, dispatch, getters }, { path,
if
(
file
.
changed
&&
indexOfChangedFile
===
-
1
)
{
commit
(
types
.
ADD_FILE_TO_CHANGED
,
path
);
if
(
!
stagedFile
)
{
dispatch
(
'
updateChangesCount
'
,
{
path
,
count
:
+
1
});
}
}
else
if
(
!
file
.
changed
&&
indexOfChangedFile
!==
-
1
)
{
commit
(
types
.
REMOVE_FILE_FROM_CHANGED
,
path
);
if
(
!
stagedFile
)
{
dispatch
(
'
updateChangesCount
'
,
{
path
,
count
:
-
1
});
}
}
};
...
...
@@ -170,10 +163,6 @@ export const discardFileChanges = ({ dispatch, state, commit, getters }, path) =
commit
(
types
.
DISCARD_FILE_CHANGES
,
path
);
commit
(
types
.
REMOVE_FILE_FROM_CHANGED
,
path
);
if
(
!
getters
.
getStagedFile
(
path
))
{
dispatch
(
'
updateChangesCount
'
,
{
path
,
count
:
-
1
});
}
if
(
file
.
tempFile
&&
file
.
opened
)
{
commit
(
types
.
TOGGLE_FILE_OPEN
,
path
);
}
else
if
(
getters
.
activeFile
&&
file
.
path
===
getters
.
activeFile
.
path
)
{
...
...
app/assets/javascripts/ide/stores/actions/tree.js
View file @
bec24d15
...
...
@@ -93,13 +93,3 @@ export const getFiles = ({ state, commit, dispatch }, { projectId, branchId } =
resolve
();
}
});
export
const
updateChangesCount
=
({
commit
,
dispatch
,
state
},
{
path
,
count
})
=>
{
commit
(
types
.
UPDATE_FOLDER_CHANGE_COUNT
,
{
path
,
count
});
const
parentPath
=
state
.
entries
[
path
].
parentPath
;
if
(
parentPath
)
{
dispatch
(
'
updateChangesCount
'
,
{
path
:
parentPath
,
count
});
}
};
app/assets/javascripts/ide/stores/getters.js
View file @
bec24d15
...
...
@@ -55,7 +55,32 @@ export const allBlobs = state =>
},
[])
.
sort
((
a
,
b
)
=>
b
.
lastOpenedAt
-
a
.
lastOpenedAt
);
export
const
getChangedFile
=
state
=>
path
=>
state
.
changedFiles
.
find
(
f
=>
f
.
path
===
path
);
export
const
getStagedFile
=
state
=>
path
=>
state
.
stagedFiles
.
find
(
f
=>
f
.
path
===
path
);
export
const
getChangesInFolder
=
state
=>
path
=>
{
const
filePathMatches
=
f
=>
f
.
path
.
replace
(
new
RegExp
(
`/
${
f
.
name
}
$`
),
''
).
indexOf
(
path
)
===
0
;
const
changedFilesCount
=
state
.
changedFiles
.
filter
(
f
=>
filePathMatches
(
f
)).
length
;
const
stagedFilesCount
=
state
.
stagedFiles
.
filter
(
f
=>
filePathMatches
(
f
)
&&
!
getChangedFile
(
state
,
f
.
path
),
).
length
;
return
changedFilesCount
+
stagedFilesCount
;
};
export
const
getUnstagedFilesCountForPath
=
state
=>
path
=>
{
const
filePathMatches
=
f
=>
f
.
path
.
replace
(
new
RegExp
(
`/
${
f
.
name
}
$`
),
''
).
indexOf
(
path
)
===
0
;
const
changedFilesCount
=
state
.
changedFiles
.
filter
(
f
=>
filePathMatches
(
f
)).
length
;
return
changedFilesCount
;
};
export
const
getStagedFilesCountForPath
=
state
=>
path
=>
{
const
filePathMatches
=
f
=>
f
.
path
.
replace
(
new
RegExp
(
`/
${
f
.
name
}
$`
),
''
).
indexOf
(
path
)
===
0
;
const
stagedFilesCount
=
state
.
stagedFiles
.
filter
(
f
=>
filePathMatches
(
f
)).
length
;
return
stagedFilesCount
;
};
// prevent babel-plugin-rewire from generating an invalid default during karma tests
export
default
()
=>
{};
app/assets/javascripts/ide/stores/mutation_types.js
View file @
bec24d15
...
...
@@ -28,7 +28,6 @@ export const TOGGLE_TREE_OPEN = 'TOGGLE_TREE_OPEN';
export
const
SET_LAST_COMMIT_URL
=
'
SET_LAST_COMMIT_URL
'
;
export
const
CREATE_TREE
=
'
CREATE_TREE
'
;
export
const
REMOVE_ALL_CHANGES_FILES
=
'
REMOVE_ALL_CHANGES_FILES
'
;
export
const
UPDATE_FOLDER_CHANGE_COUNT
=
'
UPDATE_FOLDER_CHANGE_COUNT
'
;
// File mutation types
export
const
SET_FILE_DATA
=
'
SET_FILE_DATA
'
;
...
...
app/assets/javascripts/ide/stores/mutations/tree.js
View file @
bec24d15
...
...
@@ -31,9 +31,4 @@ export default {
changedFiles
:
[],
});
},
[
types
.
UPDATE_FOLDER_CHANGE_COUNT
](
state
,
{
path
,
count
})
{
Object
.
assign
(
state
.
entries
[
path
],
{
changesCount
:
state
.
entries
[
path
].
changesCount
+
count
,
});
},
};
app/assets/javascripts/ide/stores/utils.js
View file @
bec24d15
...
...
@@ -33,7 +33,6 @@ export const dataStructure = () => ({
raw
:
''
,
content
:
''
,
parentTreeUrl
:
''
,
parentPath
:
''
,
renderError
:
false
,
base64
:
false
,
editorRow
:
1
,
...
...
@@ -44,7 +43,6 @@ export const dataStructure = () => ({
previewMode
:
null
,
size
:
0
,
parentPath
:
null
,
changesCount
:
0
,
lastOpenedAt
:
0
,
});
...
...
spec/javascripts/ide/components/repo_file_spec.js
View file @
bec24d15
...
...
@@ -56,7 +56,6 @@ describe('RepoFile', () => {
type
:
'
tree
'
,
branchId
:
'
master
'
,
projectId
:
'
project
'
,
changesCount
:
'
1
'
,
};
createComponent
({
...
...
spec/javascripts/ide/stores/getters_spec.js
View file @
bec24d15
...
...
@@ -84,4 +84,67 @@ describe('IDE store getters', () => {
expect
(
getters
.
allBlobs
(
localState
)[
0
].
name
).
toBe
(
'
blob
'
);
});
});
describe
(
'
getChangesInFolder
'
,
()
=>
{
it
(
'
returns length of changed files for a path
'
,
()
=>
{
localState
.
changedFiles
.
push
(
{
path
:
'
test/index
'
,
name
:
'
index
'
,
},
{
path
:
'
app/123
'
,
name
:
'
123
'
,
},
);
expect
(
getters
.
getChangesInFolder
(
localState
)(
'
test
'
)).
toBe
(
1
);
});
it
(
'
returns length of changed & staged files for a path
'
,
()
=>
{
localState
.
changedFiles
.
push
(
{
path
:
'
test/index
'
,
name
:
'
index
'
,
},
{
path
:
'
testing/123
'
,
name
:
'
123
'
,
},
);
localState
.
stagedFiles
.
push
(
{
path
:
'
test/123
'
,
name
:
'
123
'
,
},
{
path
:
'
test/index
'
,
name
:
'
index
'
,
},
{
path
:
'
testing/12345
'
,
name
:
'
12345
'
,
},
);
expect
(
getters
.
getChangesInFolder
(
localState
)(
'
test
'
)).
toBe
(
2
);
});
it
(
'
returns length of changed & tempFiles files for a path
'
,
()
=>
{
localState
.
changedFiles
.
push
(
{
path
:
'
test/index
'
,
name
:
'
index
'
,
},
{
path
:
'
test/newfile
'
,
name
:
'
newfile
'
,
tempFile
:
true
,
},
);
expect
(
getters
.
getChangesInFolder
(
localState
)(
'
test
'
)).
toBe
(
2
);
});
});
});
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