]> source.dussan.org Git - sonarqube.git/commit
SONAR-13950 Move Application UI logic to DE
authorWouter Admiraal <wouter.admiraal@sonarsource.com>
Mon, 12 Oct 2020 07:04:02 +0000 (09:04 +0200)
committersonartech <sonartech@sonarsource.com>
Fri, 23 Oct 2020 20:08:29 +0000 (20:08 +0000)
commit51488b107ed2589f5c1c216b821c2ea993d68ad2
tree4694ffd2d3d39f981d35813324bf4bb862357164
parentcf232a9efc17061bdd34b4d9b9f8b65a5f32ad5e
SONAR-13950 Move Application UI logic to DE
59 files changed:
server/sonar-web/src/main/js/api/application.ts
server/sonar-web/src/main/js/app/components/extensions/CreateApplicationForm.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/app/components/extensions/__tests__/CreateApplicationForm-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/app/components/extensions/__tests__/__snapshots__/CreateApplicationForm-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/app/components/nav/component/Menu.tsx
server/sonar-web/src/main/js/app/components/nav/component/__tests__/__snapshots__/Menu-test.tsx.snap
server/sonar-web/src/main/js/app/components/nav/component/branch-like/CurrentBranchLike.tsx
server/sonar-web/src/main/js/app/components/nav/component/branch-like/__tests__/__snapshots__/CurrentBranchLike-test.tsx.snap
server/sonar-web/src/main/js/app/components/nav/global/GlobalNavPlus.tsx
server/sonar-web/src/main/js/app/components/nav/global/__tests__/GlobalNavPlus-test.tsx
server/sonar-web/src/main/js/app/components/nav/global/__tests__/__snapshots__/GlobalNavPlus-test.tsx.snap
server/sonar-web/src/main/js/app/utils/startReactApp.tsx
server/sonar-web/src/main/js/apps/application-console/ApplicationBranches.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/ApplicationDetails.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/ApplicationDetailsProjects.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/ApplicationProjectBranch.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/ApplicationView.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/BranchRowActions.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/BranchSelectItem.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/ConsoleApplicationApp.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/CreateBranchForm.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/EditForm.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/ProjectBranchRow.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/ApplicationBranches-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/ApplicationDetails-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/ApplicationDetailsProjects-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/ApplicationProjectBranch-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/ApplicationView-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/BranchRowActions-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/BranchSelectItem-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/ConsoleApplicationApp-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/CreateBranchForm-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/EditForm-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/ProjectBranchRow-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/__snapshots__/ApplicationBranches-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/__snapshots__/ApplicationDetails-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/__snapshots__/ApplicationDetailsProjects-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/__snapshots__/ApplicationProjectBranch-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/__snapshots__/ApplicationView-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/__snapshots__/BranchRowActions-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/__snapshots__/BranchSelectItem-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/__snapshots__/ConsoleApplicationApp-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/__snapshots__/CreateBranchForm-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/__snapshots__/EditForm-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/__tests__/__snapshots__/ProjectBranchRow-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/routes.ts [new file with mode: 0644]
server/sonar-web/src/main/js/apps/application-console/utils.ts [new file with mode: 0644]
server/sonar-web/src/main/js/apps/permissions/global/components/AllHoldersList.tsx
server/sonar-web/src/main/js/apps/permissions/global/components/__tests__/AllHoldersList-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/permissions/global/components/__tests__/__snapshots__/AllHoldersList-test.tsx.snap [new file with mode: 0644]
server/sonar-web/src/main/js/apps/permissions/project/components/PageHeader.tsx
server/sonar-web/src/main/js/apps/permissions/utils.ts
server/sonar-web/src/main/js/apps/projectDeletion/Form.tsx
server/sonar-web/src/main/js/apps/projectDeletion/__tests__/Form-test.tsx
server/sonar-web/src/main/js/helpers/mocks/application.ts
server/sonar-web/src/main/js/helpers/mocks/permissions.ts [new file with mode: 0644]
server/sonar-web/src/main/js/helpers/urls.ts
server/sonar-web/src/main/js/types/component.ts
sonar-core/src/main/resources/org/sonar/l10n/core.properties