summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/file_row.vue
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@14-6-stable-eev14.6.0-rc42GitLab Bot2021-12-201-0/+1
|
* Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot2021-02-181-2/+3
|
* Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher2021-01-201-1/+5
|
* Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot2020-12-171-0/+1
|
* Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot2020-11-191-3/+12
|
* Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot2020-09-191-2/+16
|
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-201-1/+6
|
* Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot2020-05-201-13/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-141-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-301-1/+5
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-241-25/+22
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-231-22/+25
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-251-1/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-171-9/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-171-28/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-071-48/+30
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-211-5/+6
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-161-6/+5
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-181-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-041-1/+1
|
* Update file row stylingfix-file-row-stylingIllya Klymov2019-08-191-6/+2
|
* Hid re-named entries in subfolders63984-rename-in-folderDenys Mishunov2019-07-021-1/+1
|
* Refactor new_dropdown/index to receive isOpen prop60021-fix-ide-file-dropdownPaul Slaughter2019-04-041-6/+6
| | | | | | | | | | | | **Why?** Previously it managed this as an internal data property, but there was extra complexity involved because the component doesn't have all the information it needs (i.e. the `mouseOver` prop). This is a good opportunity to colocate the data prop with the component that has the information to change it (i.e. `file_row`) and let `new_dropdown/index` receive this value as a prop.
* Fix IDE file dropdown with `mouseleave` eventPaul Slaughter2019-04-041-1/+1
|
* add title attr to display file nameSatoshi Nakamatsu2019-02-131-0/+1
|
* Upgrade prettier and reformat files as necessaryMike Greiling2019-01-141-2/+2
| | | | | | Upgrades prettier to 1.15.3 Runs `yarn prettier-save-all` against the codebase Most changes are due to https://github.com/prettier/prettier/pull/5519
* Add headers to files in the tree list on merge requestsPhil Hughes2019-01-081-34/+10
| | | | Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/54807
* Prettify all the thingsMike Greiling2018-11-201-16/+5
|
* Use convertPermissionToBoolean to get a booleanmr-file-listPhil Hughes2018-10-231-1/+3
|
* Dynamically truncate the text in the file rowPhil Hughes2018-10-231-1/+25
|
* Add list mode to file browser in diffsPhil Hughes2018-10-231-1/+7
| | | | | | | | | | | This adds toggle buttons to switch between file & tree list. For file list, it renders the truncated paths with the ellipsis at the start of the path. When focusing the input, it hides the toggle buttons. On blur, the buttons get shown again. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/51859
* Added file tree to merge request diffsPhil Hughes2018-10-031-1/+28
| | | | | | | | | | | | | | | This file tree displays all the diff files in a tree like format Each file is taken and converted into a tree with folders Each folder can be toggled open & closed Clicking a file will scroll to the diff file & highlight with a glow affect Searching the tree list will search only files & return a list of the files without any folders Each file row contains an icon to show changed, new file or deleted Each row will also contain the added & removed lines count Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/14249
* Resolve eslint-plugin-vue errorsMike Greiling2018-09-201-1/+1
| | | | | | The eslint-plugin-vue upgrade had some breaking changes to vue/attribute-order which needed to be resolved in order to avoid disabling the rule entirely
* Decouple file row from IDEPhil Hughes2018-09-171-0/+210
This makes the file row component re-usable ouside of the Web IDE Pre-request for https://gitlab.com/gitlab-org/gitlab-ce/issues/14249