stable

Clone or download

Read-only

Document display minimal table content

part of story #12443 Table: Minimal folder display This patch introduce the display of folder and items in table. There is no distinction between folder and docman items. Folders are not clickable Docman items are not clickable Users are properly displayed and are clickable Last update date is not formated like in mockup, this will be done in a dedicated commit Change-Id: Id1b26b391b9a2e0bdd86052198a3b33e40bccb1c

Modified Files

Name
M plugins/document/scripts/document/api/rest-querier.js +11 −2 Go to diff View file
A plugins/document/scripts/document/api/rest-querier.spec.js +64 −0 Go to diff View file
A plugins/document/scripts/document/app.spec.js +23 −0 Go to diff View file
M plugins/document/scripts/document/components/App.vue +0 −8 Go to diff View file
A plugins/document/scripts/document/components/Folder/FolderContent.vue +50 −0 Go to diff View file
A plugins/document/scripts/document/components/Folder/FolderContentRow.vue +37 −0 Go to diff View file
A plugins/document/scripts/document/components/Folder/UserBadge.vue +36 −0 Go to diff View file
M plugins/document/scripts/document/components/FolderView.vue +11 −6 Go to diff View file
M plugins/document/scripts/document/store/actions.js +4 −1 Go to diff View file
A plugins/document/scripts/document/store/actions.spec.js +166 −0 Go to diff View file
M plugins/document/scripts/document/store/getters.js +2 −0 Go to diff View file
M plugins/document/scripts/document/store/mutations.js +4 −0 Go to diff View file
M plugins/document/scripts/document/store/state.js +2 −1 Go to diff View file
A plugins/document/scripts/karma.conf.js +42 −0 Go to diff View file
M plugins/document/scripts/package.json +2 −1 Go to diff View file
M plugins/document/scripts/webpack.config.js +6 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/_document.scss +11 −1 Go to diff View file
M plugins/git/tests/rest/Git/RepositoryTest.php +6 −3 Go to diff View file
M plugins/svn/tests/rest/TestBase.php +4 −2 Go to diff View file
M plugins/tracker/phpunit/Tracker/Webhook/ArtifactPayloadTest.php +1 −0 Go to diff View file
M src/common/User/REST/MinimalUserRepresentation.class.php +23 −25 Go to diff View file
M tests/Jenkinsfile +3 −0 Go to diff View file
M tests/rest/tests/UserGroupTest.php +14 −7 Go to diff View file