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
e0cfc27c
Commit
e0cfc27c
authored
Jul 26, 2017
by
Jacob Schatz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ide' of gitlab.com:gitlab-org/gitlab-ce into ide
parents
a1adb794
dc5e7f3e
Changes
28
Hide whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
180 additions
and
201 deletions
+180
-201
app/assets/javascripts/api.js
app/assets/javascripts/api.js
+2
-3
app/assets/javascripts/project.js
app/assets/javascripts/project.js
+1
-1
app/assets/javascripts/repo/index.js
app/assets/javascripts/repo/index.js
+3
-3
app/assets/javascripts/repo/repo_binary_viewer.vue
app/assets/javascripts/repo/repo_binary_viewer.vue
+0
-1
app/assets/javascripts/repo/repo_commit_section.vue
app/assets/javascripts/repo/repo_commit_section.vue
+18
-18
app/assets/javascripts/repo/repo_editor.vue
app/assets/javascripts/repo/repo_editor.vue
+2
-3
app/assets/javascripts/repo/repo_file.vue
app/assets/javascripts/repo/repo_file.vue
+1
-1
app/assets/javascripts/repo/repo_file_buttons.vue
app/assets/javascripts/repo/repo_file_buttons.vue
+0
-1
app/assets/javascripts/repo/repo_helper.js
app/assets/javascripts/repo/repo_helper.js
+9
-13
app/assets/javascripts/repo/repo_loading_file.vue
app/assets/javascripts/repo/repo_loading_file.vue
+1
-1
app/assets/javascripts/repo/repo_prev_directory.vue
app/assets/javascripts/repo/repo_prev_directory.vue
+1
-1
app/assets/javascripts/repo/repo_service.js
app/assets/javascripts/repo/repo_service.js
+5
-5
app/assets/javascripts/repo/repo_sidebar.vue
app/assets/javascripts/repo/repo_sidebar.vue
+4
-13
app/assets/javascripts/repo/repo_store.js
app/assets/javascripts/repo/repo_store.js
+10
-9
app/assets/javascripts/repo/repo_tabs.vue
app/assets/javascripts/repo/repo_tabs.vue
+4
-4
app/assets/javascripts/repo/repo_view_toggler.js
app/assets/javascripts/repo/repo_view_toggler.js
+0
-16
app/assets/stylesheets/pages/repo.scss
app/assets/stylesheets/pages/repo.scss
+5
-4
spec/javascripts/repo/index_spec.js
spec/javascripts/repo/index_spec.js
+0
-45
spec/javascripts/repo/repo_binary_viewer_spec.js
spec/javascripts/repo/repo_binary_viewer_spec.js
+3
-6
spec/javascripts/repo/repo_editor_spec.js
spec/javascripts/repo/repo_editor_spec.js
+2
-2
spec/javascripts/repo/repo_file_buttons_spec.js
spec/javascripts/repo/repo_file_buttons_spec.js
+4
-16
spec/javascripts/repo/repo_file_options_spec.js
spec/javascripts/repo/repo_file_options_spec.js
+3
-4
spec/javascripts/repo/repo_file_spec.js
spec/javascripts/repo/repo_file_spec.js
+7
-16
spec/javascripts/repo/repo_loading_file_spec.js
spec/javascripts/repo/repo_loading_file_spec.js
+2
-2
spec/javascripts/repo/repo_prev_directory_spec.js
spec/javascripts/repo/repo_prev_directory_spec.js
+2
-3
spec/javascripts/repo/repo_sidebar_spec.js
spec/javascripts/repo/repo_sidebar_spec.js
+51
-0
spec/javascripts/repo/repo_tab_spec.js
spec/javascripts/repo/repo_tab_spec.js
+4
-7
spec/javascripts/repo/repo_tabs_spec.js
spec/javascripts/repo/repo_tabs_spec.js
+36
-3
No files found.
app/assets/javascripts/api.js
View file @
e0cfc27c
...
@@ -103,16 +103,15 @@ const Api = {
...
@@ -103,16 +103,15 @@ const Api = {
return
$
.
ajax
({
return
$
.
ajax
({
url
,
url
,
headers
:
{
headers
:
{
'
PRIVATE_TOKEN
'
:
token
,
PRIVATE_TOKEN
:
token
,
},
},
type
:
'
POST
'
,
type
:
'
POST
'
,
contentType
:
"
application/json; charset=utf-8
"
,
contentType
:
'
application/json; charset=utf-8
'
,
data
:
JSON
.
stringify
(
data
),
data
:
JSON
.
stringify
(
data
),
dataType
:
'
json
'
,
dataType
:
'
json
'
,
})
})
.
done
(
commitData
=>
callback
(
commitData
))
.
done
(
commitData
=>
callback
(
commitData
))
.
fail
(
message
=>
callback
(
message
.
responseJSON
));
.
fail
(
message
=>
callback
(
message
.
responseJSON
));
},
},
// Return text for a specific license
// Return text for a specific license
...
...
app/assets/javascripts/project.js
View file @
e0cfc27c
...
@@ -77,7 +77,7 @@ import Cookies from 'js-cookie';
...
@@ -77,7 +77,7 @@ import Cookies from 'js-cookie';
},
},
dataType
:
"
json
"
dataType
:
"
json
"
}).
done
(
function
(
refs
)
{
}).
done
(
function
(
refs
)
{
console
.
log
(
refs
)
console
.
log
(
refs
)
;
return
callback
(
refs
);
return
callback
(
refs
);
});
});
},
},
...
...
app/assets/javascripts/repo/index.js
View file @
e0cfc27c
...
@@ -19,12 +19,12 @@ function initRepo() {
...
@@ -19,12 +19,12 @@ function initRepo() {
Store
.
service
.
url
=
repo
.
dataset
.
url
;
Store
.
service
.
url
=
repo
.
dataset
.
url
;
Store
.
projectName
=
repo
.
dataset
.
projectName
;
Store
.
projectName
=
repo
.
dataset
.
projectName
;
Store
.
service
.
refsUrl
=
repo
.
dataset
.
refsUrl
;
Store
.
service
.
refsUrl
=
repo
.
dataset
.
refsUrl
;
Store
.
currentBranch
=
$
(
"
button.dropdown-menu-toggle
"
).
attr
(
'
data-ref
'
);
Store
.
currentBranch
=
$
(
'
button.dropdown-menu-toggle
'
).
attr
(
'
data-ref
'
);
Store
.
checkIsCommitable
();
Store
.
checkIsCommitable
();
Store
.
projectId
=
repo
.
dataset
.
projectId
;
Store
.
projectId
=
repo
.
dataset
.
projectId
;
Store
.
tempPrivateToken
=
repo
.
dataset
.
tempToken
;
Store
.
tempPrivateToken
=
repo
.
dataset
.
tempToken
;
new
Vue
({
this
.
vm
=
new
Vue
({
el
:
repo
,
el
:
repo
,
data
:
()
=>
Store
,
data
:
()
=>
Store
,
template
:
`
template
:
`
...
@@ -45,7 +45,7 @@ function initRepo() {
...
@@ -45,7 +45,7 @@ function initRepo() {
'
repo-file-buttons
'
:
RepoFileButtons
,
'
repo-file-buttons
'
:
RepoFileButtons
,
'
repo-binary-viewer
'
:
RepoBinaryViewer
,
'
repo-binary-viewer
'
:
RepoBinaryViewer
,
'
repo-editor
'
:
RepoEditor
,
'
repo-editor
'
:
RepoEditor
,
'
repo-commit-section
'
:
RepoCommitSection
'
repo-commit-section
'
:
RepoCommitSection
,
},
},
});
});
...
...
app/assets/javascripts/repo/repo_binary_viewer.vue
View file @
e0cfc27c
<
script
>
<
script
>
import
Vue
from
'
vue
'
;
import
Store
from
'
./repo_store
'
;
import
Store
from
'
./repo_store
'
;
import
RepoHelper
from
'
./repo_helper
'
;
import
RepoHelper
from
'
./repo_helper
'
;
...
...
app/assets/javascripts/repo/repo_commit_section.vue
View file @
e0cfc27c
<
script
>
<
script
>
import
Vue
from
'
vue
'
;
/* global Flash */
import
Store
from
'
./repo_store
'
;
import
Store
from
'
./repo_store
'
;
import
Api
from
'
../api
'
import
Api
from
'
../api
'
;
const
RepoCommitSection
=
{
const
RepoCommitSection
=
{
data
:
()
=>
Store
,
data
:
()
=>
Store
,
methods
:
{
methods
:
{
makeCommit
()
{
makeCommit
()
{
// see https://docs.gitlab.com/ce/api/commits.html#create-a-commit-with-multiple-files-and-actions
// see https://docs.gitlab.com/ce/api/commits.html#create-a-commit-with-multiple-files-and-actions
const
branch
=
$
(
"
button.dropdown-menu-toggle
"
).
attr
(
'
data-ref
'
);
const
branch
=
$
(
'
button.dropdown-menu-toggle
'
).
attr
(
'
data-ref
'
);
const
commitMessage
=
this
.
commitMessage
;
const
commitMessage
=
this
.
commitMessage
;
const
actions
=
this
.
changedFiles
.
map
(
f
=>
{
const
actions
=
this
.
changedFiles
.
map
(
(
f
)
=>
{
const
filePath
=
f
.
url
.
split
(
branch
)[
1
];
const
filePath
=
f
.
url
.
split
(
branch
)[
1
];
return
{
return
{
action
:
'
update
'
,
action
:
'
update
'
,
file_path
:
filePath
,
file_path
:
filePath
,
content
:
f
.
newContent
,
content
:
f
.
newContent
,
};
};
});
});
const
payload
=
{
const
payload
=
{
branch
:
branch
,
branch
,
commit_message
:
commitMessage
,
commit_message
:
commitMessage
,
actions
:
actions
,
actions
,
}
}
;
Store
.
submitCommitsLoading
=
true
;
Store
.
submitCommitsLoading
=
true
;
Api
.
commitMultiple
(
Store
.
projectId
,
payload
,
(
data
)
=>
{
Api
.
commitMultiple
(
Store
.
projectId
,
payload
,
(
data
)
=>
{
Store
.
submitCommitsLoading
=
false
;
Store
.
submitCommitsLoading
=
false
;
...
@@ -36,7 +36,7 @@ const RepoCommitSection = {
...
@@ -36,7 +36,7 @@ const RepoCommitSection = {
this
.
editMode
=
false
;
this
.
editMode
=
false
;
$
(
'
html, body
'
).
animate
({
scrollTop
:
0
},
'
fast
'
);
$
(
'
html, body
'
).
animate
({
scrollTop
:
0
},
'
fast
'
);
},
Store
.
tempPrivateToken
);
},
Store
.
tempPrivateToken
);
}
}
,
},
},
computed
:
{
computed
:
{
...
@@ -46,7 +46,7 @@ const RepoCommitSection = {
...
@@ -46,7 +46,7 @@ const RepoCommitSection = {
return
changedFileList
;
return
changedFileList
;
},
},
},
},
}
}
;
export
default
RepoCommitSection
;
export
default
RepoCommitSection
;
</
script
>
</
script
>
...
@@ -59,7 +59,7 @@ export default RepoCommitSection;
...
@@ -59,7 +59,7 @@ export default RepoCommitSection;
<label
class=
"col-md-4 control-label"
>
Staged files (
{{
changedFiles
.
length
}}
)
</label>
<label
class=
"col-md-4 control-label"
>
Staged files (
{{
changedFiles
.
length
}}
)
</label>
<div
class=
"col-md-4"
>
<div
class=
"col-md-4"
>
<ul
class=
"list-unstyled"
>
<ul
class=
"list-unstyled"
>
<li
v-for=
"file in changedFiles"
>
<li
v-for=
"file in changedFiles"
:key=
"file.id"
>
<span
class=
"help-block"
>
<span
class=
"help-block"
>
{{
file
.
url
}}
{{
file
.
url
}}
</span>
</span>
...
@@ -119,4 +119,4 @@ export default RepoCommitSection;
...
@@ -119,4 +119,4 @@ export default RepoCommitSection;
</fieldset>
</fieldset>
</form>
</form>
</div>
</div>
</
template
>
</
template
>
\ No newline at end of file
app/assets/javascripts/repo/repo_editor.vue
View file @
e0cfc27c
<
script
>
<
script
>
/* global monaco */
/* global monaco */
import
Vue
from
'
vue
'
;
import
Store
from
'
./repo_store
'
;
import
Store
from
'
./repo_store
'
;
import
Helper
from
'
./repo_helper
'
;
import
Helper
from
'
./repo_helper
'
;
import
monacoLoader
from
'
./monaco_loader
'
;
import
monacoLoader
from
'
./monaco_loader
'
;
...
@@ -28,7 +27,7 @@ const RepoEditor = {
...
@@ -28,7 +27,7 @@ const RepoEditor = {
const
newModel
=
monaco
.
editor
.
createModel
(
this
.
blobRaw
,
'
plaintext
'
);
const
newModel
=
monaco
.
editor
.
createModel
(
this
.
blobRaw
,
'
plaintext
'
);
this
.
monacoInstance
.
setModel
(
newModel
);
this
.
monacoInstance
.
setModel
(
newModel
);
});
})
.
catch
(
Helper
.
loadingError
)
;
});
});
},
},
...
@@ -55,7 +54,7 @@ const RepoEditor = {
...
@@ -55,7 +54,7 @@ const RepoEditor = {
location
.
hash
=
`L
${
e
.
target
.
position
.
lineNumber
}
`
;
location
.
hash
=
`L
${
e
.
target
.
position
.
lineNumber
}
`
;
Store
.
activeLine
=
e
.
target
.
position
.
lineNumber
;
Store
.
activeLine
=
e
.
target
.
position
.
lineNumber
;
}
}
}
}
,
},
},
watch
:
{
watch
:
{
...
...
app/assets/javascripts/repo/repo_file.vue
View file @
e0cfc27c
...
@@ -40,7 +40,7 @@ export default RepoFile;
...
@@ -40,7 +40,7 @@ export default RepoFile;
</
script
>
</
script
>
<
template
>
<
template
>
<tr
v-if=
"!loading.tree || hasFiles"
:class=
"
{'active': activeFile.url === file.url}">
<tr
class=
"file"
v-if=
"!loading.tree || hasFiles"
:class=
"
{'active': activeFile.url === file.url}">
<td
@
click.prevent=
"linkClicked(file)"
>
<td
@
click.prevent=
"linkClicked(file)"
>
<i
class=
"fa"
v-if=
"!file.loading"
:class=
"file.icon"
:style=
"
{'margin-left': file.level * 10 + 'px'}">
</i>
<i
class=
"fa"
v-if=
"!file.loading"
:class=
"file.icon"
:style=
"
{'margin-left': file.level * 10 + 'px'}">
</i>
<i
class=
"fa fa-spinner fa-spin"
v-if=
"file.loading"
:style=
"
{'margin-left': file.level * 10 + 'px'}">
</i>
<i
class=
"fa fa-spinner fa-spin"
v-if=
"file.loading"
:style=
"
{'margin-left': file.level * 10 + 'px'}">
</i>
...
...
app/assets/javascripts/repo/repo_file_buttons.vue
View file @
e0cfc27c
<
script
>
<
script
>
import
Vue
from
'
vue
'
;
import
Store
from
'
./repo_store
'
;
import
Store
from
'
./repo_store
'
;
import
Helper
from
'
./repo_helper
'
;
import
Helper
from
'
./repo_helper
'
;
import
RepoMiniMixin
from
'
./repo_mini_mixin
'
;
import
RepoMiniMixin
from
'
./repo_mini_mixin
'
;
...
...
app/assets/javascripts/repo/repo_helper.js
View file @
e0cfc27c
...
@@ -27,8 +27,8 @@ const RepoHelper = {
...
@@ -27,8 +27,8 @@ const RepoHelper = {
},
},
setDirectoryOpen
(
tree
)
{
setDirectoryOpen
(
tree
)
{
le
t
file
=
tree
;
cons
t
file
=
tree
;
if
(
!
file
)
return
;
if
(
!
file
)
return
undefined
;
file
.
opened
=
true
;
file
.
opened
=
true
;
file
.
icon
=
'
fa-folder-open
'
;
file
.
icon
=
'
fa-folder-open
'
;
...
@@ -91,14 +91,12 @@ const RepoHelper = {
...
@@ -91,14 +91,12 @@ const RepoHelper = {
return
oldList
;
return
oldList
;
},
},
compareFilesCaseInsensitive
(
a
,
b
)
{
compareFilesCaseInsensitive
(
a
,
b
)
{
const
aName
=
a
.
name
.
toLowerCase
();
const
aName
=
a
.
name
.
toLowerCase
();
const
bName
=
b
.
name
.
toLowerCase
();
const
bName
=
b
.
name
.
toLowerCase
();
if
(
a
.
level
>
0
)
return
0
;
if
(
a
.
level
>
0
)
return
0
;
if
(
aName
<
bName
)
if
(
aName
<
bName
)
{
return
-
1
;
}
return
-
1
;
if
(
aName
>
bName
)
{
return
1
;
}
if
(
aName
>
bName
)
return
1
;
return
0
;
return
0
;
},
},
...
@@ -109,7 +107,7 @@ const RepoHelper = {
...
@@ -109,7 +107,7 @@ const RepoHelper = {
.
then
((
response
)
=>
{
.
then
((
response
)
=>
{
const
data
=
response
.
data
;
const
data
=
response
.
data
;
// RepoHelper.setLoading(false, loadingData);
// RepoHelper.setLoading(false, loadingData);
if
(
cb
)
cb
();
if
(
cb
)
cb
();
Store
.
isTree
=
RepoHelper
.
isTree
(
data
);
Store
.
isTree
=
RepoHelper
.
isTree
(
data
);
if
(
!
Store
.
isTree
)
{
if
(
!
Store
.
isTree
)
{
if
(
!
file
)
file
=
data
;
if
(
!
file
)
file
=
data
;
...
@@ -187,15 +185,13 @@ const RepoHelper = {
...
@@ -187,15 +185,13 @@ const RepoHelper = {
};
};
},
},
scrollTabsRight
()
{
scrollTabsRight
()
{
// wait for the transition. 0.1 seconds.
// wait for the transition. 0.1 seconds.
setTimeout
(()
=>
{
setTimeout
(()
=>
{
const
tabs
=
document
.
getElementById
(
'
tabs
'
);
const
tabs
=
document
.
getElementById
(
'
tabs
'
);
if
(
!
tabs
)
return
;
if
(
!
tabs
)
return
;
tabs
.
scrollLeft
=
12000
;
tabs
.
scrollLeft
=
12000
;
},
200
)
},
200
)
;
},
},
dataToListOfFiles
(
data
)
{
dataToListOfFiles
(
data
)
{
...
...
app/assets/javascripts/repo/repo_loading_file.vue
View file @
e0cfc27c
...
@@ -29,7 +29,7 @@ export default RepoLoadingFile;
...
@@ -29,7 +29,7 @@ export default RepoLoadingFile;
</
script
>
</
script
>
<
template
>
<
template
>
<tr
v-if=
"loading.tree && !hasFiles"
>
<tr
v-if=
"loading.tree && !hasFiles"
class=
"loading-file"
>
<td>
<td>
<div
class=
"animation-container animation-container-small"
>
<div
class=
"animation-container animation-container-small"
>
<div
v-for=
"n in 6"
:class=
"lineOfCode(n)"
></div>
<div
v-for=
"n in 6"
:class=
"lineOfCode(n)"
></div>
...
...
app/assets/javascripts/repo/repo_prev_directory.vue
View file @
e0cfc27c
...
@@ -18,7 +18,7 @@ export default RepoPreviousDirectory;
...
@@ -18,7 +18,7 @@ export default RepoPreviousDirectory;
</
script
>
</
script
>
<
template
>
<
template
>
<tr>
<tr
class=
"prev-directory"
>
<td
colspan=
"3"
>
<td
colspan=
"3"
>
<a
:href=
"prevUrl"
@
click.prevent=
"linkClicked(prevUrl)"
>
..
</a>
<a
:href=
"prevUrl"
@
click.prevent=
"linkClicked(prevUrl)"
>
..
</a>
</td>
</td>
...
...
app/assets/javascripts/repo/repo_service.js
View file @
e0cfc27c
import
Store
from
'
./repo_store
'
;
import
axios
from
'
axios
'
;
import
axios
from
'
axios
'
;
import
Store
from
'
./repo_store
'
;
const
RepoService
=
{
const
RepoService
=
{
url
:
''
,
url
:
''
,
...
@@ -12,10 +12,10 @@ const RepoService = {
...
@@ -12,10 +12,10 @@ const RepoService = {
checkCurrentBranchIsCommitable
()
{
checkCurrentBranchIsCommitable
()
{
const
url
=
Store
.
service
.
refsUrl
;
const
url
=
Store
.
service
.
refsUrl
;
return
axios
.
get
(
url
,
{
params
:
{
return
axios
.
get
(
url
,
{
params
:
{
ref
:
Store
.
currentBranch
,
ref
:
Store
.
currentBranch
,
search
:
Store
.
currentBranch
search
:
Store
.
currentBranch
,
}
});
}
});
},
},
buildParams
(
url
=
this
.
url
)
{
buildParams
(
url
=
this
.
url
)
{
...
...
app/assets/javascripts/repo/repo_sidebar.vue
View file @
e0cfc27c
<
script
>
<
script
>
import
Vue
from
'
vue
'
;
import
Service
from
'
./repo_service
'
;
import
Service
from
'
./repo_service
'
;
import
Helper
from
'
./repo_helper
'
;
import
Helper
from
'
./repo_helper
'
;
import
Store
from
'
./repo_store
'
;
import
Store
from
'
./repo_store
'
;
...
@@ -73,18 +72,9 @@ export default RepoSidebar;
...
@@ -73,18 +72,9 @@ export default RepoSidebar;
<table
class=
"table"
>
<table
class=
"table"
>
<thead
v-if=
"!isMini"
>
<thead
v-if=
"!isMini"
>
<tr>
<tr>
<th
v-if=
"!isMini"
>
<th
class=
"name"
>
Name
</th>
Name
<th
class=
"hidden-sm hidden-xs last-commit"
>
Last Commit
</th>
</th>
<th
class=
"hidden-xs last-update"
>
Last Update
</th>
<th
v-else
>
Project
</th>
<th
class=
"hidden-sm hidden-xs"
v-if=
"!isMini"
>
Last Commit
</th>
<th
class=
"hidden-xs"
v-if=
"!isMini"
>
Last Update
</th>
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody>
...
@@ -96,6 +86,7 @@ export default RepoSidebar;
...
@@ -96,6 +86,7 @@ export default RepoSidebar;
@
linkclicked=
"linkClicked(prevURL)"
/>
@
linkclicked=
"linkClicked(prevURL)"
/>
<repo-loading-file
<repo-loading-file
v-for=
"n in 5"
v-for=
"n in 5"
:key=
"n"
:loading=
"loading"
:loading=
"loading"
:has-files=
"!!files.length"
:has-files=
"!!files.length"
:is-mini=
"isMini"
/>
:is-mini=
"isMini"
/>
...
...
app/assets/javascripts/repo/repo_store.js
View file @
e0cfc27c
/* global Flash */
import
RepoHelper
from
'
./repo_helper
'
;
import
RepoHelper
from
'
./repo_helper
'
;
const
RepoStore
=
{
const
RepoStore
=
{
...
@@ -38,7 +39,7 @@ const RepoStore = {
...
@@ -38,7 +39,7 @@ const RepoStore = {
raw
:
false
,
raw
:
false
,
newContent
:
''
,
newContent
:
''
,
changed
:
false
,
changed
:
false
,
loading
:
false
loading
:
false
,
},
},
activeFileIndex
:
0
,
activeFileIndex
:
0
,
activeLine
:
0
,
activeLine
:
0
,
...
@@ -65,12 +66,12 @@ const RepoStore = {
...
@@ -65,12 +66,12 @@ const RepoStore = {
checkIsCommitable
()
{
checkIsCommitable
()
{
RepoStore
.
service
.
checkCurrentBranchIsCommitable
()
RepoStore
.
service
.
checkCurrentBranchIsCommitable
()
.
then
((
data
)
=>
{
.
then
((
data
)
=>
{
// you shouldn't be able to make commits on commits or tags.
// you shouldn't be able to make commits on commits or tags.
let
{
Branches
,
Commits
,
Tags
}
=
data
.
data
;
const
{
Branches
,
Commits
,
Tags
}
=
data
.
data
;
if
(
Branches
&&
Branches
.
length
)
RepoStore
.
isCommitable
=
true
;
if
(
Branches
&&
Branches
.
length
)
RepoStore
.
isCommitable
=
true
;
if
(
Commits
&&
Commits
.
length
)
RepoStore
.
isCommitable
=
false
;
if
(
Commits
&&
Commits
.
length
)
RepoStore
.
isCommitable
=
false
;
if
(
Tags
&&
Tags
.
length
)
RepoStore
.
isCommitable
=
false
;
if
(
Tags
&&
Tags
.
length
)
RepoStore
.
isCommitable
=
false
;
});
})
.
catch
(()
=>
Flash
(
'
Failed to check if branch can be committed to.
'
))
;
},
},
addFilesToDirectory
(
inDirectory
,
currentList
,
newList
)
{
addFilesToDirectory
(
inDirectory
,
currentList
,
newList
)
{
...
@@ -127,11 +128,11 @@ const RepoStore = {
...
@@ -127,11 +128,11 @@ const RepoStore = {
RepoStore
.
files
=
RepoStore
.
files
.
filter
((
file
)
=>
{
RepoStore
.
files
=
RepoStore
.
files
.
filter
((
file
)
=>
{
const
isItTheTreeWeWant
=
file
.
url
===
treeToClose
.
url
;
const
isItTheTreeWeWant
=
file
.
url
===
treeToClose
.
url
;
// if it's the next tree
// if it's the next tree
if
(
foundTree
&&
file
.
type
===
'
tree
'
&&
!
isItTheTreeWeWant
&&
file
.
level
===
treeToClose
.
level
)
{
if
(
foundTree
&&
file
.
type
===
'
tree
'
&&
!
isItTheTreeWeWant
&&
file
.
level
===
treeToClose
.
level
)
{
wereDone
=
true
;
wereDone
=
true
;
return
true
;
return
true
;
}
}
if
(
wereDone
)
return
true
;
if
(
wereDone
)
return
true
;
if
(
isItTheTreeWeWant
)
foundTree
=
true
;
if
(
isItTheTreeWeWant
)
foundTree
=
true
;
...
...
app/assets/javascripts/repo/repo_tabs.vue
View file @
e0cfc27c
...
@@ -16,7 +16,7 @@ const RepoTabs = {
...
@@ -16,7 +16,7 @@ const RepoTabs = {
methods
:
{
methods
:
{
isOverflow
()
{
isOverflow
()
{
return
this
.
$el
.
scrollWidth
>
this
.
$el
.
offsetWidth
;
return
this
.
$el
.
scrollWidth
>
this
.
$el
.
offsetWidth
;
}
}
,
},
},
watch
:
{
watch
:
{
...
@@ -24,9 +24,9 @@ const RepoTabs = {
...
@@ -24,9 +24,9 @@ const RepoTabs = {
Vue
.
nextTick
(()
=>
{
Vue
.
nextTick
(()
=>
{
this
.
tabsOverflow
=
this
.
isOverflow
();
this
.
tabsOverflow
=
this
.
isOverflow
();
});
});
}
}
,
}
}
,
}
}
;
export
default
RepoTabs
;
export
default
RepoTabs
;
</
script
>
</
script
>
...
...
app/assets/javascripts/repo/repo_view_toggler.js
deleted
100644 → 0
View file @
a1adb794
import
Vue
from
'
vue
'
;
import
Store
from
'
./repo_store
'
;
export
default
class
RepoViewToggler
{
constructor
()
{
this
.
initVue
();
}
initVue
()
{
this
.
vue
=
new
Vue
({
el
:
'
#view-toggler
'
,
data
:
()
=>
Store
,
});
}
}
app/assets/stylesheets/pages/repo.scss
View file @
e0cfc27c
...
@@ -120,7 +120,6 @@
...
@@ -120,7 +120,6 @@
#repo-file-buttons
{
#repo-file-buttons
{
background
:
$gray-light
;
background
:
$gray-light
;
border-bottom
:
1px
solid
$white-normal
;
border-bottom
:
1px
solid
$white-normal
;
padding
:
5px
;
padding
:
10px
5px
;
padding
:
10px
5px
;
position
:
relative
;
position
:
relative
;
border-top
:
1px
solid
$white-normal
;
border-top
:
1px
solid
$white-normal
;
...
@@ -333,12 +332,14 @@
...
@@ -333,12 +332,14 @@
@keyframes
swipeRightAppear
{
@keyframes
swipeRightAppear
{
0
%
{
0
%
{
transform
:
scaleX
(
0
.00
)
;
transform
:
scaleX
(
0
.00
)
;
}
}
45
%
{
45
%
{
transform
:
scaleX
(
0
.26
)
;
transform
:
scaleX
(
0
.26
)
;
}
}
100
%
{
100
%
{
transform
:
scaleX
(
1
.00
)
;
transform
:
scaleX
(
1
.00
)
;
}
}
}
}
spec/javascripts/repo/index_spec.js
deleted
100644 → 0
View file @
a1adb794
// import Tabs from '~/repo/repo_tabs';
// import Sidebar from '~/repo/repo_sidebar';
// import Editor from '~/repo/repo_editor';
// import FileButtons from '~/repo/repo_file_buttons';
// import EditButton from '~/repo/repo_edit_button';
// import BinaryViewer from '~/repo/repo_binary_viewer';
// import CommitSection from '~/repo/repo_commit_section';
// import Service from '~/repo/repo_service';
// import Store from '~/repo/repo_store';
// import Helper from '~/repo/repo_helper';
// describe('initRepo', () => {
// const url = 'url';
// it('should select all elements, set store service and url, init all needed classes and getContent', () => {
// spyOn(Helper, 'getContent');
// spyOn(document, 'getElementById').and.callFake((selector) => {
// const element = document.createElement('div');
// if (selector === 'ide') element.dataset.url = url;
// return element;
// });
// require('~/repo/index'); // eslint-disable-line global-require
// expect(document.getElementById).toHaveBeenCalledWith('ide');
// expect(document.getElementById).toHaveBeenCalledWith('tabs');
// expect(document.getElementById).toHaveBeenCalledWith('sidebar');
// expect(document.getElementById).toHaveBeenCalledWith('repo-file-buttons');
// expect(document.getElementById).toHaveBeenCalledWith('editable-mode');
// expect(document.getElementById).toHaveBeenCalledWith('commit-area');
// expect(document.getElementById).toHaveBeenCalledWith('binary-viewer');
// expect(Store.service).toBe(Service);
// expect(Store.service.url).toBe(url);
// expect(Store.tabs instanceof Tabs).toBe(true);
// expect(Store.sidebar instanceof Sidebar).toBe(true);
// expect(Store.editor instanceof Editor).toBe(true);
// expect(Store.buttons instanceof FileButtons).toBe(true);
// expect(Store.editButton instanceof EditButton).toBe(true);
// expect(Store.commitSection instanceof CommitSection).toBe(true);
// expect(Store.binaryViewer instanceof BinaryViewer).toBe(true);
// expect(Helper.getContent).toHaveBeenCalled();
// });
// });
spec/javascripts/repo/repo_binary_viewer_spec.js
View file @
e0cfc27c
...
@@ -3,9 +3,9 @@ import Store from '~/repo/repo_store';
...
@@ -3,9 +3,9 @@ import Store from '~/repo/repo_store';
import
repoBinaryViewer
from
'
~/repo/repo_binary_viewer.vue
'
;
import
repoBinaryViewer
from
'
~/repo/repo_binary_viewer.vue
'
;
describe
(
'
RepoBinaryViewer
'
,
()
=>
{
describe
(
'
RepoBinaryViewer
'
,
()
=>
{
const
RepoBinaryViewer
=
Vue
.
extend
(
repoBinaryViewer
);
function
createComponent
()
{
function
createComponent
()
{
const
RepoBinaryViewer
=
Vue
.
extend
(
repoBinaryViewer
);
return
new
RepoBinaryViewer
().
$mount
();
return
new
RepoBinaryViewer
().
$mount
();
}
}
...
@@ -24,7 +24,6 @@ describe('RepoBinaryViewer', () => {
...
@@ -24,7 +24,6 @@ describe('RepoBinaryViewer', () => {
const
vm
=
createComponent
();
const
vm
=
createComponent
();
const
img
=
vm
.
$el
.
querySelector
(
'
:scope > img
'
);
const
img
=
vm
.
$el
.
querySelector
(
'
:scope > img
'
);
expect
(
img
).
toBeTruthy
();
expect
(
img
.
src
).
toMatch
(
`/
${
uri
}
`
);
expect
(
img
.
src
).
toMatch
(
`/
${
uri
}
`
);
expect
(
img
.
alt
).
toEqual
(
activeFile
.
name
);
expect
(
img
.
alt
).
toEqual
(
activeFile
.
name
);
});
});
...
@@ -40,10 +39,8 @@ describe('RepoBinaryViewer', () => {
...
@@ -40,10 +39,8 @@ describe('RepoBinaryViewer', () => {
Store
.
binaryTypes
=
binaryTypes
;
Store
.
binaryTypes
=
binaryTypes
;
Store
.
activeFile
=
activeFile
;
Store
.
activeFile
=
activeFile
;
const
vm
=
createComponent
();
const
vm
=
createComponent
();
const
markdown
=
vm
.
$el
.
querySelector
(
'
:scope > div
'
);
expect
(
markdown
).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
'
:scope > div
'
)).
toEqual
(
activeFile
.
html
);
expect
(
markdown
.
innerHTML
).
toEqual
(
activeFile
.
html
);
});
});
it
(
'
does not render if no binary
'
,
()
=>
{
it
(
'
does not render if no binary
'
,
()
=>
{
...
...
spec/javascripts/repo/repo_editor_spec.js
View file @
e0cfc27c
...
@@ -2,9 +2,9 @@ import Vue from 'vue';
...
@@ -2,9 +2,9 @@ import Vue from 'vue';
import
repoEditor
from
'
~/repo/repo_editor.vue
'
;
import
repoEditor
from
'
~/repo/repo_editor.vue
'
;
describe
(
'
RepoEditor
'
,
()
=>
{
describe
(
'
RepoEditor
'
,
()
=>
{
const
RepoEditor
=
Vue
.
extend
(
repoEditor
);
function
createComponent
()
{
function
createComponent
()
{
const
RepoEditor
=
Vue
.
extend
(
repoEditor
);
return
new
RepoEditor
().
$mount
();
return
new
RepoEditor
().
$mount
();
}
}
...
...
spec/javascripts/repo/repo_file_buttons_spec.js
View file @
e0cfc27c
...
@@ -24,35 +24,23 @@ describe('RepoFileButtons', () => {
...
@@ -24,35 +24,23 @@ describe('RepoFileButtons', () => {
const
raw
=
vm
.
$el
.
querySelector
(
'
.raw
'
);
const
raw
=
vm
.
$el
.
querySelector
(
'
.raw
'
);
const
blame
=
vm
.
$el
.
querySelector
(
'
.blame
'
);
const
blame
=
vm
.
$el
.
querySelector
(
'
.blame
'
);
const
history
=
vm
.
$el
.
querySelector
(
'
.history
'
);
const
history
=
vm
.
$el
.
querySelector
(
'
.history
'
);
const
permalink
=
vm
.
$el
.
querySelector
(
'
.permalink
'
);
const
lock
=
vm
.
$el
.
querySelector
(
'
.lock
'
);
const
preview
=
vm
.
$el
.
querySelector
(
'
.preview
'
);
const
replace
=
vm
.
$el
.
querySelector
(
'
.replace
'
);
const
replace
=
vm
.
$el
.
querySelector
(
'
.replace
'
);
const
deleteBtn
=
vm
.
$el
.
querySelector
(
'
.delete
'
);
expect
(
vm
.
$el
.
id
).
toEqual
(
'
repo-file-buttons
'
);
expect
(
vm
.
$el
.
id
).
toEqual
(
'
repo-file-buttons
'
);
expect
(
vm
.
$el
.
style
.
borderBottom
).
toEqual
(
'
1px solid rgb(31, 120, 209)
'
);
expect
(
vm
.
$el
.
style
.
borderBottom
).
toEqual
(
'
1px solid rgb(31, 120, 209)
'
);
expect
(
raw
).
toBeTruthy
();
expect
(
raw
.
href
).
toMatch
(
`/
${
activeFile
.
url
}
`
);
expect
(
raw
.
href
).
toMatch
(
`/
${
activeFile
.
url
}
`
);
expect
(
raw
.
textContent
).
toEqual
(
'
Raw
'
);
expect
(
raw
.
textContent
).
toEqual
(
'
Raw
'
);
expect
(
blame
).
toBeTruthy
();
expect
(
blame
.
href
).
toMatch
(
`/
${
activeFile
.
url
}
`
);
expect
(
blame
.
href
).
toMatch
(
`/
${
activeFile
.
url
}
`
);
expect
(
blame
.
textContent
).
toEqual
(
'
Blame
'
);
expect
(
blame
.
textContent
).
toEqual
(
'
Blame
'
);
expect
(
history
).
toBeTruthy
();
expect
(
history
.
href
).
toMatch
(
`/
${
activeFile
.
url
}
`
);
expect
(
history
.
href
).
toMatch
(
`/
${
activeFile
.
url
}
`
);
expect
(
history
.
textContent
).
toEqual
(
'
History
'
);
expect
(
history
.
textContent
).
toEqual
(
'
History
'
);
expect
(
permalink
).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
'
.permalink
'
).
textContent
).
toEqual
(
'
Permalink
'
);
expect
(
permalink
.
textContent
).
toEqual
(
'
Permalink
'
);
expect
(
vm
.
$el
.
querySelector
(
'
.lock
'
).
textContent
).
toEqual
(
'
Lock
'
);
expect
(
lock
).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
'
.preview
'
).
textContent
).
toEqual
(
activeFileLabel
);
expect
(
lock
.
textContent
).
toEqual
(
'
Lock
'
);
expect
(
preview
).
toBeTruthy
();
expect
(
preview
.
textContent
).
toEqual
(
activeFileLabel
);
expect
(
replace
).
toBeTruthy
();
expect
(
replace
.
dataset
.
target
).
toEqual
(
'
#modal-upload-blob
'
);
expect
(
replace
.
dataset
.
target
).
toEqual
(
'
#modal-upload-blob
'
);
expect
(
replace
.
dataset
.
toggle
).
toEqual
(
'
modal
'
);
expect
(
replace
.
dataset
.
toggle
).
toEqual
(
'
modal
'
);
expect
(
replace
.
textContent
).
toEqual
(
'
Replace
'
);
expect
(
replace
.
textContent
).
toEqual
(
'
Replace
'
);
expect
(
deleteBtn
).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
'
.delete
'
).
textContent
).
toEqual
(
'
Delete
'
);
expect
(
deleteBtn
.
textContent
).
toEqual
(
'
Delete
'
);
});
});
it
(
'
renders a white border if not editMode
'
,
()
=>
{
it
(
'
renders a white border if not editMode
'
,
()
=>
{
...
...
spec/javascripts/repo/repo_file_options_spec.js
View file @
e0cfc27c
...
@@ -2,10 +2,11 @@ import Vue from 'vue';
...
@@ -2,10 +2,11 @@ import Vue from 'vue';
import
repoFileOptions
from
'
~/repo/repo_file_options.vue
'
;
import
repoFileOptions
from
'
~/repo/repo_file_options.vue
'
;
describe
(
'
RepoFileOptions
'
,
()
=>
{
describe
(
'
RepoFileOptions
'
,
()
=>
{
const
RepoFileOptions
=
Vue
.
extend
(
repoFileOptions
);
const
projectName
=
'
projectName
'
;
const
projectName
=
'
projectName
'
;
function
createComponent
(
propsData
)
{
function
createComponent
(
propsData
)
{
const
RepoFileOptions
=
Vue
.
extend
(
repoFileOptions
);
return
new
RepoFileOptions
({
return
new
RepoFileOptions
({
propsData
,
propsData
,
}).
$mount
();
}).
$mount
();
...
@@ -16,11 +17,9 @@ describe('RepoFileOptions', () => {
...
@@ -16,11 +17,9 @@ describe('RepoFileOptions', () => {
isMini
:
true
,
isMini
:
true
,
projectName
,
projectName
,
});
});
const
title
=
vm
.
$el
.
querySelector
(
'
.title
'
);
expect
(
vm
.
$el
.
classList
.
contains
(
'
repo-file-options
'
)).
toBeTruthy
();
expect
(
vm
.
$el
.
classList
.
contains
(
'
repo-file-options
'
)).
toBeTruthy
();
expect
(
title
).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
'
.title
'
).
textContent
).
toEqual
(
projectName
);
expect
(
title
.
textContent
).
toEqual
(
projectName
);
expect
(
vm
.
$el
.
querySelector
(
'
a[title="New File"]
'
)).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
'
a[title="New File"]
'
)).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
'
a[title="New Folder"]
'
)).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
'
a[title="New Folder"]
'
)).
toBeTruthy
();
});
});
...
...
spec/javascripts/repo/repo_file_spec.js
View file @
e0cfc27c
...
@@ -2,7 +2,6 @@ import Vue from 'vue';
...
@@ -2,7 +2,6 @@ import Vue from 'vue';
import
repoFile
from
'
~/repo/repo_file.vue
'
;
import
repoFile
from
'
~/repo/repo_file.vue
'
;
describe
(
'
RepoFile
'
,
()
=>
{
describe
(
'
RepoFile
'
,
()
=>
{
const
RepoFile
=
Vue
.
extend
(
repoFile
);
const
file
=
{
const
file
=
{
icon
:
'
icon
'
,
icon
:
'
icon
'
,
url
:
'
url
'
,
url
:
'
url
'
,
...
@@ -16,6 +15,8 @@ describe('RepoFile', () => {
...
@@ -16,6 +15,8 @@ describe('RepoFile', () => {
};
};
function
createComponent
(
propsData
)
{
function
createComponent
(
propsData
)
{
const
RepoFile
=
Vue
.
extend
(
repoFile
);
return
new
RepoFile
({
return
new
RepoFile
({
propsData
,
propsData
,
}).
$mount
();
}).
$mount
();
...
@@ -26,23 +27,15 @@ describe('RepoFile', () => {
...
@@ -26,23 +27,15 @@ describe('RepoFile', () => {
file
,
file
,
activeFile
,
activeFile
,
});
});
const
icon
=
vm
.
$el
.
querySelector
(
`.
${
file
.
icon
}
`
);
const
name
=
vm
.
$el
.
querySelector
(
'
.repo-file-name
'
);
const
name
=
vm
.
$el
.
querySelector
(
'
.repo-file-name
'
);
const
commitMessage
=
vm
.
$el
.
querySelector
(
'
.commit-message
'
);
const
commitUpdate
=
vm
.
$el
.
querySelector
(
'
.commit-update
'
);
expect
(
vm
.
$el
.
innerHTML
).
toBeTruthy
();
expect
(
vm
.
$el
.
classList
.
contains
(
'
active
'
)).
toBeTruthy
();
expect
(
vm
.
$el
.
classList
.
contains
(
'
active
'
)).
toBeTruthy
();
expect
(
icon
).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
`.
${
file
.
icon
}
`
).
style
.
marginLeft
).
toEqual
(
'
100px
'
);
expect
(
icon
.
style
.
marginLeft
).
toEqual
(
'
100px
'
);
expect
(
name
).
toBeTruthy
();
expect
(
name
.
title
).
toEqual
(
file
.
url
);
expect
(
name
.
title
).
toEqual
(
file
.
url
);
expect
(
name
.
href
).
toMatch
(
`/
${
file
.
url
}
`
);
expect
(
name
.
href
).
toMatch
(
`/
${
file
.
url
}
`
);
expect
(
name
.
textContent
).
toEqual
(
file
.
name
);
expect
(
name
.
textContent
).
toEqual
(
file
.
name
);
expect
(
commitMessage
).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
'
.commit-message
'
).
textContent
).
toBe
(
file
.
lastCommitMessage
);
expect
(
commitMessage
.
textContent
).
toBe
(
file
.
lastCommitMessage
);
expect
(
vm
.
$el
.
querySelector
(
'
.commit-update
'
).
textContent
).
toBe
(
file
.
lastCommitUpdate
);
expect
(
commitUpdate
).
toBeTruthy
();
expect
(
commitUpdate
.
textContent
).
toBe
(
file
.
lastCommitUpdate
);
});
});
it
(
'
does render if hasFiles is true and is loading tree
'
,
()
=>
{
it
(
'
does render if hasFiles is true and is loading tree
'
,
()
=>
{
...
@@ -76,11 +69,9 @@ describe('RepoFile', () => {
...
@@ -76,11 +69,9 @@ describe('RepoFile', () => {
activeFile
,
activeFile
,
isMini
:
true
,
isMini
:
true
,
});
});
const
commitMessage
=
vm
.
$el
.
querySelector
(
'
.commit-message
'
);
const
commitUpdate
=
vm
.
$el
.
querySelector
(
'
.commit-update
'
);
expect
(
commitMessage
).
toBeFalsy
();
expect
(
vm
.
$el
.
querySelector
(
'
.commit-message
'
)
).
toBeFalsy
();
expect
(
commitUpdate
).
toBeFalsy
();
expect
(
vm
.
$el
.
querySelector
(
'
.commit-update
'
)
).
toBeFalsy
();
});
});
it
(
'
does not set active class if file is active file
'
,
()
=>
{
it
(
'
does not set active class if file is active file
'
,
()
=>
{
...
...
spec/javascripts/repo/repo_loading_file_spec.js
View file @
e0cfc27c
...
@@ -2,9 +2,9 @@ import Vue from 'vue';
...
@@ -2,9 +2,9 @@ import Vue from 'vue';
import
repoLoadingFile
from
'
~/repo/repo_loading_file.vue
'
;
import
repoLoadingFile
from
'
~/repo/repo_loading_file.vue
'
;
describe
(
'
RepoLoadingFile
'
,
()
=>
{
describe
(
'
RepoLoadingFile
'
,
()
=>
{
const
RepoLoadingFile
=
Vue
.
extend
(
repoLoadingFile
);
function
createComponent
(
propsData
)
{
function
createComponent
(
propsData
)
{
const
RepoLoadingFile
=
Vue
.
extend
(
repoLoadingFile
);
return
new
RepoLoadingFile
({
return
new
RepoLoadingFile
({
propsData
,
propsData
,
}).
$mount
();
}).
$mount
();
...
...
spec/javascripts/repo/repo_prev_directory_spec.js
View file @
e0cfc27c
...
@@ -2,9 +2,9 @@ import Vue from 'vue';
...
@@ -2,9 +2,9 @@ import Vue from 'vue';
import
repoPrevDirectory
from
'
~/repo/repo_prev_directory.vue
'
;
import
repoPrevDirectory
from
'
~/repo/repo_prev_directory.vue
'
;
describe
(
'
RepoPrevDirectory
'
,
()
=>
{
describe
(
'
RepoPrevDirectory
'
,
()
=>
{
const
RepoPrevDirectory
=
Vue
.
extend
(
repoPrevDirectory
);
function
createComponent
(
propsData
)
{
function
createComponent
(
propsData
)
{
const
RepoPrevDirectory
=
Vue
.
extend
(
repoPrevDirectory
);
return
new
RepoPrevDirectory
({
return
new
RepoPrevDirectory
({
propsData
,
propsData
,
}).
$mount
();
}).
$mount
();
...
@@ -19,7 +19,6 @@ describe('RepoPrevDirectory', () => {
...
@@ -19,7 +19,6 @@ describe('RepoPrevDirectory', () => {
spyOn
(
vm
,
'
linkClicked
'
);
spyOn
(
vm
,
'
linkClicked
'
);
expect
(
link
).
toBeTruthy
();
expect
(
link
.
href
).
toMatch
(
`/
${
prevUrl
}
`
);
expect
(
link
.
href
).
toMatch
(
`/
${
prevUrl
}
`
);
expect
(
link
.
textContent
).
toEqual
(
'
..
'
);
expect
(
link
.
textContent
).
toEqual
(
'
..
'
);
...
...
spec/javascripts/repo/repo_sidebar_spec.js
0 → 100644
View file @
e0cfc27c
import
Vue
from
'
vue
'
;
import
RepoStore
from
'
~/repo/repo_store
'
;
import
repoSidebar
from
'
~/repo/repo_sidebar.vue
'
;
describe
(
'
RepoSidebar
'
,
()
=>
{
function
createComponent
()
{
const
RepoSidebar
=
Vue
.
extend
(
repoSidebar
);
return
new
RepoSidebar
().
$mount
();
}
it
(
'
renders a sidebar
'
,
()
=>
{
RepoStore
.
files
=
[{
id
:
0
,
}];
const
vm
=
createComponent
();
const
thead
=
vm
.
$el
.
querySelector
(
'
thead
'
);
const
tbody
=
vm
.
$el
.
querySelector
(
'
tbody
'
);
expect
(
vm
.
$el
.
id
).
toEqual
(
'
sidebar
'
);
expect
(
vm
.
$el
.
classList
.
contains
(
'
sidebar-mini
'
)).
toBeFalsy
();
expect
(
thead
.
querySelector
(
'
.name
'
).
textContent
).
toEqual
(
'
Name
'
);
expect
(
thead
.
querySelector
(
'
.last-commit
'
).
textContent
).
toEqual
(
'
Last Commit
'
);
expect
(
thead
.
querySelector
(
'
.last-update
'
).
textContent
).
toEqual
(
'
Last Update
'
);
expect
(
tbody
.
querySelector
(
'
.repo-file-options
'
)).
toBeFalsy
();
expect
(
tbody
.
querySelector
(
'
.prev-directory
'
)).
toBeTruthy
();
expect
(
tbody
.
querySelector
(
'
.loading-file
'
)).
toBeFalsy
();
expect
(
tbody
.
querySelector
(
'
.file
'
)).
toBeTruthy
();
});
it
(
'
does not render a thead, renders repo-file-options and sets sidebar-mini class if isMini
'
,
()
=>
{
RepoStore
.
openedFiles
=
[{
id
:
0
,
}];
const
vm
=
createComponent
();
expect
(
vm
.
$el
.
classList
.
contains
(
'
sidebar-mini
'
)).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
'
thead
'
)).
toBeFalsy
();
expect
(
vm
.
$el
.
querySelector
(
'
tbody .repo-file-options
'
)).
toBeTruthy
();
});
it
(
'
renders 5 loading files if tree is loading and not hasFiles
'
,
()
=>
{
RepoStore
.
loading
=
{
tree
:
true
,
};
RepoStore
.
files
=
[];
const
vm
=
createComponent
();
expect
(
vm
.
$el
.
querySelectorAll
(
'
tbody .loading-file
'
).
length
).
toEqual
(
5
);
});
});
spec/javascripts/repo/repo_tab_spec.js
View file @
e0cfc27c
...
@@ -2,9 +2,9 @@ import Vue from 'vue';
...
@@ -2,9 +2,9 @@ import Vue from 'vue';
import
repoTab
from
'
~/repo/repo_tab.vue
'
;
import
repoTab
from
'
~/repo/repo_tab.vue
'
;
describe
(
'
RepoTab
'
,
()
=>
{
describe
(
'
RepoTab
'
,
()
=>
{
const
RepoTab
=
Vue
.
extend
(
repoTab
);
function
createComponent
(
propsData
)
{
function
createComponent
(
propsData
)
{
const
RepoTab
=
Vue
.
extend
(
repoTab
);
return
new
RepoTab
({
return
new
RepoTab
({
propsData
,
propsData
,
}).
$mount
();
}).
$mount
();
...
@@ -20,14 +20,12 @@ describe('RepoTab', () => {
...
@@ -20,14 +20,12 @@ describe('RepoTab', () => {
tab
,
tab
,
});
});
const
close
=
vm
.
$el
.
querySelector
(
'
.close
'
);
const
close
=
vm
.
$el
.
querySelector
(
'
.close
'
);
const
name
=
vm
.
$el
.
querySelector
(
`a[title="
${
tab
.
url
}
"]`
)
const
name
=
vm
.
$el
.
querySelector
(
`a[title="
${
tab
.
url
}
"]`
)
;
spyOn
(
vm
,
'
xClicked
'
);
spyOn
(
vm
,
'
xClicked
'
);
spyOn
(
vm
,
'
tabClicked
'
);
spyOn
(
vm
,
'
tabClicked
'
);
expect
(
close
).
toBeTruthy
();
expect
(
close
.
querySelector
(
'
.fa-times
'
)).
toBeTruthy
();
expect
(
close
.
querySelector
(
'
.fa-times
'
)).
toBeTruthy
();
expect
(
name
).
toBeTruthy
();
expect
(
name
.
textContent
).
toEqual
(
tab
.
name
);
expect
(
name
.
textContent
).
toEqual
(
tab
.
name
);
close
.
click
();
close
.
click
();
...
@@ -63,8 +61,7 @@ describe('RepoTab', () => {
...
@@ -63,8 +61,7 @@ describe('RepoTab', () => {
const
vm
=
createComponent
({
const
vm
=
createComponent
({
tab
,
tab
,
});
});
const
close
=
vm
.
$el
.
querySelector
(
'
.close
'
);
expect
(
close
.
querySelector
(
'
.fa-circle
'
)).
toBeTruthy
();
expect
(
vm
.
$el
.
querySelector
(
'
.close
.fa-circle
'
)).
toBeTruthy
();
});
});
});
});
spec/javascripts/repo/repo_tabs_spec.js
View file @
e0cfc27c
import
Vue
from
'
vue
'
;
import
Vue
from
'
vue
'
;
import
RepoStore
from
'
~/repo/repo_store
'
;
import
repoTabs
from
'
~/repo/repo_tabs.vue
'
;
import
repoTabs
from
'
~/repo/repo_tabs.vue
'
;
describe
(
'
RepoTabss
'
,
()
=>
{
describe
(
'
RepoTabs
'
,
()
=>
{
const
RepoTabs
=
Vue
.
extend
(
repoTabs
);
const
openedFiles
=
[{
id
:
0
,
active
:
true
,
},
{
id
:
1
,
}];
function
createComponent
()
{
function
createComponent
()
{
const
RepoTabs
=
Vue
.
extend
(
repoTabs
);
return
new
RepoTabs
().
$mount
();
return
new
RepoTabs
().
$mount
();
}
}
it
(
'
renders a list of tabs
'
,
()
=>
{
it
(
'
renders a list of tabs
'
,
()
=>
{
RepoStore
.
openedFiles
=
openedFiles
;
RepoStore
.
tabsOverflow
=
true
;
const
vm
=
createComponent
();
const
tabs
=
[...
vm
.
$el
.
querySelectorAll
(
'
:scope > li
'
)];
expect
(
vm
.
$el
.
id
).
toEqual
(
'
tabs
'
);
expect
(
vm
.
$el
.
classList
.
contains
(
'
overflown
'
)).
toBeTruthy
();
expect
(
tabs
.
length
).
toEqual
(
2
);
expect
(
tabs
[
0
].
classList
.
contains
(
'
active
'
)).
toBeTruthy
();
expect
(
tabs
[
1
].
classList
.
contains
(
'
active
'
)).
toBeFalsy
();
});
});
it
(
'
does not render a tabs list if no isMini
'
,
()
=>
{
it
(
'
does not render a tabs list if not isMini
'
,
()
=>
{
RepoStore
.
openedFiles
=
[];
const
vm
=
createComponent
();
expect
(
vm
.
$el
.
innerHTML
).
toBeFalsy
();
});
it
(
'
does not apply overflown class if not tabsOverflow
'
,
()
=>
{
RepoStore
.
openedFiles
=
openedFiles
;
RepoStore
.
tabsOverflow
=
false
;
const
vm
=
createComponent
();
expect
(
vm
.
$el
.
classList
.
contains
(
'
overflown
'
)).
toBeFalsy
();
});
});
});
});
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