├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── SubmissionMaterials ├── CMSDiagram.mwb ├── DBDiagram.png ├── SystemDesign.png ├── UIAdmin.png ├── UIHome.png ├── UIProfile.png ├── UIProjects.png └── UITasks.png ├── back-end ├── .DS_Store ├── construction-management-service │ ├── .DS_Store │ ├── CMS.yaml │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── company │ │ │ │ └── constructionmanagementsystem │ │ │ │ ├── ConstructionManagementSystemApplication.java │ │ │ │ ├── controller │ │ │ │ ├── AuthController.java │ │ │ │ ├── ControllerExceptionHandler.java │ │ │ │ ├── EmployeeController.java │ │ │ │ ├── MachineController.java │ │ │ │ ├── MaterialController.java │ │ │ │ ├── ProjectController.java │ │ │ │ └── TaskController.java │ │ │ │ ├── exceptions │ │ │ │ └── NotFoundException.java │ │ │ │ ├── model │ │ │ │ ├── CustomErrorResponse.java │ │ │ │ ├── Employee.java │ │ │ │ ├── Machine.java │ │ │ │ ├── Material.java │ │ │ │ ├── Project.java │ │ │ │ └── Task.java │ │ │ │ ├── repository │ │ │ │ ├── EmployeeRepository.java │ │ │ │ ├── MachineRepository.java │ │ │ │ ├── MaterialRepository.java │ │ │ │ ├── ProjectRepository.java │ │ │ │ └── TaskRepository.java │ │ │ │ ├── security │ │ │ │ ├── JwtConverter.java │ │ │ │ ├── JwtRequestFilter.java │ │ │ │ └── SecurityConfig.java │ │ │ │ ├── service │ │ │ │ ├── EmployeeServiceLayer.java │ │ │ │ ├── MachineServiceLayer.java │ │ │ │ ├── MaterialServiceLayer.java │ │ │ │ ├── ProjectServiceLayer.java │ │ │ │ └── TaskServiceLayer.java │ │ │ │ ├── util │ │ │ │ ├── LoginDetailsService.java │ │ │ │ └── feign │ │ │ │ │ ├── MachineWarehouseClient.java │ │ │ │ │ └── MaterialWarehouseClient.java │ │ │ │ └── viewmodel │ │ │ │ ├── EmployeeViewModel.java │ │ │ │ ├── ProjectViewModel.java │ │ │ │ └── TaskViewModel.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── datainput.sql │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── company │ │ │ └── constructionmanagementsystem │ │ │ ├── ConstructionManagementSystemApplicationTests.java │ │ │ ├── controller │ │ │ ├── EmployeeControllerTest.java │ │ │ ├── MachineControllerTest.java │ │ │ ├── MaterialControllerTest.java │ │ │ ├── ProjectControllerTest.java │ │ │ └── TaskControllerTest.java │ │ │ ├── repository │ │ │ ├── EmployeeRepositoryTest.java │ │ │ ├── MachineRepositoryTest.java │ │ │ ├── MaterialRepositoryTest.java │ │ │ ├── ProjectRepositoryTest.java │ │ │ └── TaskRepositoryTest.java │ │ │ └── service │ │ │ ├── EmployeeServiceLayerTest.java │ │ │ ├── ProjectServiceLayerTest.java │ │ │ └── TaskServiceLayerTest.java │ │ └── resources │ │ └── application.properties ├── eureka-service-registry │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── Dockerfile │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── company │ │ │ │ └── EurekaServiceRegistryApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── company │ │ └── EurekaServiceRegistryApplicationTests.java ├── machine-warehouse-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── MachineWarehouse.yml │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MachineWarehouseServiceApplication.java │ │ │ │ ├── controller │ │ │ │ ├── ControllerExceptionHandler.java │ │ │ │ └── MachineController.java │ │ │ │ ├── model │ │ │ │ ├── CustomErrorResponse.java │ │ │ │ └── Machinery.java │ │ │ │ └── repository │ │ │ │ └── MachineryRepository.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ ├── MachineryWarehouseServiceApplicationTests.java │ │ │ ├── controller │ │ │ └── MachineControllerTest.java │ │ │ └── repository │ │ │ └── MachineryRepositoryTest.java │ │ └── resources │ │ └── application.properties └── material-warehouse-service │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── MaterialWarehouse.yml │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── company │ │ │ ├── MaterialWarehouseServiceApplication.java │ │ │ ├── controller │ │ │ ├── ControllerExceptionHandler.java │ │ │ └── MaterialController.java │ │ │ ├── model │ │ │ ├── CustomErrorResponse.java │ │ │ └── Material.java │ │ │ └── repository │ │ │ └── MaterialRepository.java │ └── resources │ │ └── application.properties │ └── test │ ├── java │ └── com │ │ └── company │ │ ├── MaterialWarehouseServiceApplicationTests.java │ │ ├── controller │ │ └── MaterialControllerTest.java │ │ └── repository │ │ └── MaterialRepositoryTest.java │ └── resources │ └── application.properties ├── front-end-mobile ├── .expo-shared │ └── assets.json ├── .gitignore ├── App.js ├── api │ ├── EmployeeAPI.js │ ├── MachineryAPI.js │ ├── MaterialsAPI.js │ ├── ProjectAPI.js │ ├── TaskAPI.js │ ├── index.js │ └── loginAPI.js ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── components │ ├── Button.js │ ├── Header.js │ ├── NavBar.js │ ├── TabsFooter.js │ ├── TaskItem.js │ └── home │ │ └── MyProject.js ├── package.json └── screens │ ├── HomeScreen.js │ ├── MyProfileScreen.js │ ├── ProjectsScreen.js │ ├── ScheduleScreen.js │ └── TasksScreen.js └── front-end ├── .gitignore ├── Dockerfile ├── README.md ├── package.json ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── robots.txt └── site.webmanifest └── src ├── App.css ├── App.js ├── App.test.js ├── api ├── EmployeeAPI.js ├── MachineryAPI.js ├── MaterialsAPI.js ├── ProjectAPI.js ├── TaskAPI.js ├── index.js └── loginAPI.js ├── assets ├── NoMatchStyle.css ├── Projects.css ├── brick.png ├── canvasjs.min.js ├── canvasjs.react.js ├── cement.png ├── crane.png ├── drill.png ├── forklift.png ├── helmet.png ├── ladder.png ├── lumber.png ├── steel.png └── text.png ├── bootstrap.min.css ├── components ├── Footer.jsx ├── Message.jsx ├── NavBar.jsx ├── ProjectsTable.jsx ├── RedirectHelper.js ├── TasksTable.jsx ├── admin │ ├── AdminEditEmployeeInfoModal.js │ ├── AllEmployeeTable.js │ └── DisplayEmployeeInfo.js ├── home │ ├── BriefProjectsDisplay.js │ ├── BriefTasksDisplay.js │ ├── EmployeeDisplayTable.js │ ├── EmployeeListTable.js │ ├── HomePageSpinner.jsx │ ├── ProjectPieChart.js │ └── home.css ├── myProfile │ ├── DisplayBasicInformation.js │ ├── MyProfileProjectsDisplay.js │ ├── UserPersonalInformationFormModal.css │ └── UserPersonalInformationFormModal.js ├── project │ └── AddProjectModal.js ├── resources │ ├── AddMachineModal.js │ ├── AddMaterialModal.js │ ├── ConfirmReturnMachinesModal.js │ ├── Resources.css │ ├── Resources.js │ └── ResourcesForSingleProjectPage.js ├── singleProject │ ├── AddEmployeeModal.js │ ├── AddTaskModal.js │ ├── EmployeeListTableForProject.js │ ├── ProjectForm.js │ └── TaskListTableForProject.js ├── singleTask │ └── TaskForm.js └── spinner │ ├── LoginSpinner.jsx │ └── Spinner.jsx ├── index.css ├── index.js ├── pages ├── AdminAllEmployeeViewPage.js ├── AdminSingleEmployeeEditPage.js ├── Home.jsx ├── Login.jsx ├── MyProfile.jsx ├── NoMatch.jsx ├── Projects.jsx ├── RegisterPage.jsx ├── SingleProjectPage.jsx ├── SingleTaskPage.js ├── Tasks.css └── Tasks.jsx ├── reportWebVitals.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/README.md -------------------------------------------------------------------------------- /SubmissionMaterials/CMSDiagram.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/SubmissionMaterials/CMSDiagram.mwb -------------------------------------------------------------------------------- /SubmissionMaterials/DBDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/SubmissionMaterials/DBDiagram.png -------------------------------------------------------------------------------- /SubmissionMaterials/SystemDesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/SubmissionMaterials/SystemDesign.png -------------------------------------------------------------------------------- /SubmissionMaterials/UIAdmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/SubmissionMaterials/UIAdmin.png -------------------------------------------------------------------------------- /SubmissionMaterials/UIHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/SubmissionMaterials/UIHome.png -------------------------------------------------------------------------------- /SubmissionMaterials/UIProfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/SubmissionMaterials/UIProfile.png -------------------------------------------------------------------------------- /SubmissionMaterials/UIProjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/SubmissionMaterials/UIProjects.png -------------------------------------------------------------------------------- /SubmissionMaterials/UITasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/SubmissionMaterials/UITasks.png -------------------------------------------------------------------------------- /back-end/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/.DS_Store -------------------------------------------------------------------------------- /back-end/construction-management-service/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/.DS_Store -------------------------------------------------------------------------------- /back-end/construction-management-service/CMS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/CMS.yaml -------------------------------------------------------------------------------- /back-end/construction-management-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/mvnw -------------------------------------------------------------------------------- /back-end/construction-management-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/mvnw.cmd -------------------------------------------------------------------------------- /back-end/construction-management-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/pom.xml -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/ConstructionManagementSystemApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/ConstructionManagementSystemApplication.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/AuthController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/AuthController.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/ControllerExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/ControllerExceptionHandler.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/EmployeeController.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/MachineController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/MachineController.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/MaterialController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/MaterialController.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/ProjectController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/ProjectController.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/TaskController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/controller/TaskController.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/exceptions/NotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/exceptions/NotFoundException.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/CustomErrorResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/CustomErrorResponse.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/Employee.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/Machine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/Machine.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/Material.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/Material.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/Project.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/Project.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/Task.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/model/Task.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/repository/EmployeeRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/repository/EmployeeRepository.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/repository/MachineRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/repository/MachineRepository.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/repository/MaterialRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/repository/MaterialRepository.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/repository/ProjectRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/repository/ProjectRepository.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/repository/TaskRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/repository/TaskRepository.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/security/JwtConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/security/JwtConverter.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/security/JwtRequestFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/security/JwtRequestFilter.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/security/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/security/SecurityConfig.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/service/EmployeeServiceLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/service/EmployeeServiceLayer.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/service/MachineServiceLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/service/MachineServiceLayer.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/service/MaterialServiceLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/service/MaterialServiceLayer.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/service/ProjectServiceLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/service/ProjectServiceLayer.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/service/TaskServiceLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/service/TaskServiceLayer.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/util/LoginDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/util/LoginDetailsService.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/util/feign/MachineWarehouseClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/util/feign/MachineWarehouseClient.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/util/feign/MaterialWarehouseClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/util/feign/MaterialWarehouseClient.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/viewmodel/EmployeeViewModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/viewmodel/EmployeeViewModel.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/viewmodel/ProjectViewModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/viewmodel/ProjectViewModel.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/viewmodel/TaskViewModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/java/com/company/constructionmanagementsystem/viewmodel/TaskViewModel.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /back-end/construction-management-service/src/main/resources/datainput.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/main/resources/datainput.sql -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/ConstructionManagementSystemApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/ConstructionManagementSystemApplicationTests.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/controller/EmployeeControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/controller/EmployeeControllerTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/controller/MachineControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/controller/MachineControllerTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/controller/MaterialControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/controller/MaterialControllerTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/controller/ProjectControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/controller/ProjectControllerTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/controller/TaskControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/controller/TaskControllerTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/repository/EmployeeRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/repository/EmployeeRepositoryTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/repository/MachineRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/repository/MachineRepositoryTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/repository/MaterialRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/repository/MaterialRepositoryTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/repository/ProjectRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/repository/ProjectRepositoryTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/repository/TaskRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/repository/TaskRepositoryTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/service/EmployeeServiceLayerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/service/EmployeeServiceLayerTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/service/ProjectServiceLayerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/service/ProjectServiceLayerTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/service/TaskServiceLayerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/java/com/company/constructionmanagementsystem/service/TaskServiceLayerTest.java -------------------------------------------------------------------------------- /back-end/construction-management-service/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/construction-management-service/src/test/resources/application.properties -------------------------------------------------------------------------------- /back-end/eureka-service-registry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/eureka-service-registry/.gitignore -------------------------------------------------------------------------------- /back-end/eureka-service-registry/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/eureka-service-registry/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /back-end/eureka-service-registry/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/eureka-service-registry/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /back-end/eureka-service-registry/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/eureka-service-registry/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /back-end/eureka-service-registry/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/eureka-service-registry/mvnw -------------------------------------------------------------------------------- /back-end/eureka-service-registry/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/eureka-service-registry/mvnw.cmd -------------------------------------------------------------------------------- /back-end/eureka-service-registry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/eureka-service-registry/pom.xml -------------------------------------------------------------------------------- /back-end/eureka-service-registry/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/eureka-service-registry/src/Dockerfile -------------------------------------------------------------------------------- /back-end/eureka-service-registry/src/main/java/com/company/EurekaServiceRegistryApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/eureka-service-registry/src/main/java/com/company/EurekaServiceRegistryApplication.java -------------------------------------------------------------------------------- /back-end/eureka-service-registry/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/eureka-service-registry/src/main/resources/application.properties -------------------------------------------------------------------------------- /back-end/eureka-service-registry/src/test/java/com/company/EurekaServiceRegistryApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/eureka-service-registry/src/test/java/com/company/EurekaServiceRegistryApplicationTests.java -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/.gitignore -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/MachineWarehouse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/MachineWarehouse.yml -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/mvnw -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/mvnw.cmd -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/pom.xml -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/src/main/java/com/example/MachineWarehouseServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/src/main/java/com/example/MachineWarehouseServiceApplication.java -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/src/main/java/com/example/controller/ControllerExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/src/main/java/com/example/controller/ControllerExceptionHandler.java -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/src/main/java/com/example/controller/MachineController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/src/main/java/com/example/controller/MachineController.java -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/src/main/java/com/example/model/CustomErrorResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/src/main/java/com/example/model/CustomErrorResponse.java -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/src/main/java/com/example/model/Machinery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/src/main/java/com/example/model/Machinery.java -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/src/main/java/com/example/repository/MachineryRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/src/main/java/com/example/repository/MachineryRepository.java -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/src/test/java/com/example/MachineryWarehouseServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/src/test/java/com/example/MachineryWarehouseServiceApplicationTests.java -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/src/test/java/com/example/controller/MachineControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/src/test/java/com/example/controller/MachineControllerTest.java -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/src/test/java/com/example/repository/MachineryRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/src/test/java/com/example/repository/MachineryRepositoryTest.java -------------------------------------------------------------------------------- /back-end/machine-warehouse-service/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/machine-warehouse-service/src/test/resources/application.properties -------------------------------------------------------------------------------- /back-end/material-warehouse-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/.gitignore -------------------------------------------------------------------------------- /back-end/material-warehouse-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /back-end/material-warehouse-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /back-end/material-warehouse-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /back-end/material-warehouse-service/MaterialWarehouse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/MaterialWarehouse.yml -------------------------------------------------------------------------------- /back-end/material-warehouse-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/mvnw -------------------------------------------------------------------------------- /back-end/material-warehouse-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/mvnw.cmd -------------------------------------------------------------------------------- /back-end/material-warehouse-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/pom.xml -------------------------------------------------------------------------------- /back-end/material-warehouse-service/src/main/java/com/company/MaterialWarehouseServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/src/main/java/com/company/MaterialWarehouseServiceApplication.java -------------------------------------------------------------------------------- /back-end/material-warehouse-service/src/main/java/com/company/controller/ControllerExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/src/main/java/com/company/controller/ControllerExceptionHandler.java -------------------------------------------------------------------------------- /back-end/material-warehouse-service/src/main/java/com/company/controller/MaterialController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/src/main/java/com/company/controller/MaterialController.java -------------------------------------------------------------------------------- /back-end/material-warehouse-service/src/main/java/com/company/model/CustomErrorResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/src/main/java/com/company/model/CustomErrorResponse.java -------------------------------------------------------------------------------- /back-end/material-warehouse-service/src/main/java/com/company/model/Material.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/src/main/java/com/company/model/Material.java -------------------------------------------------------------------------------- /back-end/material-warehouse-service/src/main/java/com/company/repository/MaterialRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/src/main/java/com/company/repository/MaterialRepository.java -------------------------------------------------------------------------------- /back-end/material-warehouse-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /back-end/material-warehouse-service/src/test/java/com/company/MaterialWarehouseServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/src/test/java/com/company/MaterialWarehouseServiceApplicationTests.java -------------------------------------------------------------------------------- /back-end/material-warehouse-service/src/test/java/com/company/controller/MaterialControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/src/test/java/com/company/controller/MaterialControllerTest.java -------------------------------------------------------------------------------- /back-end/material-warehouse-service/src/test/java/com/company/repository/MaterialRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/src/test/java/com/company/repository/MaterialRepositoryTest.java -------------------------------------------------------------------------------- /back-end/material-warehouse-service/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/back-end/material-warehouse-service/src/test/resources/application.properties -------------------------------------------------------------------------------- /front-end-mobile/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/.expo-shared/assets.json -------------------------------------------------------------------------------- /front-end-mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/.gitignore -------------------------------------------------------------------------------- /front-end-mobile/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/App.js -------------------------------------------------------------------------------- /front-end-mobile/api/EmployeeAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/api/EmployeeAPI.js -------------------------------------------------------------------------------- /front-end-mobile/api/MachineryAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/api/MachineryAPI.js -------------------------------------------------------------------------------- /front-end-mobile/api/MaterialsAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/api/MaterialsAPI.js -------------------------------------------------------------------------------- /front-end-mobile/api/ProjectAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/api/ProjectAPI.js -------------------------------------------------------------------------------- /front-end-mobile/api/TaskAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/api/TaskAPI.js -------------------------------------------------------------------------------- /front-end-mobile/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/api/index.js -------------------------------------------------------------------------------- /front-end-mobile/api/loginAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/api/loginAPI.js -------------------------------------------------------------------------------- /front-end-mobile/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/app.json -------------------------------------------------------------------------------- /front-end-mobile/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/assets/adaptive-icon.png -------------------------------------------------------------------------------- /front-end-mobile/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/assets/favicon.png -------------------------------------------------------------------------------- /front-end-mobile/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/assets/icon.png -------------------------------------------------------------------------------- /front-end-mobile/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/assets/splash.png -------------------------------------------------------------------------------- /front-end-mobile/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/babel.config.js -------------------------------------------------------------------------------- /front-end-mobile/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/components/Button.js -------------------------------------------------------------------------------- /front-end-mobile/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/components/Header.js -------------------------------------------------------------------------------- /front-end-mobile/components/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/components/NavBar.js -------------------------------------------------------------------------------- /front-end-mobile/components/TabsFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/components/TabsFooter.js -------------------------------------------------------------------------------- /front-end-mobile/components/TaskItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/components/TaskItem.js -------------------------------------------------------------------------------- /front-end-mobile/components/home/MyProject.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /front-end-mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/package.json -------------------------------------------------------------------------------- /front-end-mobile/screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/screens/HomeScreen.js -------------------------------------------------------------------------------- /front-end-mobile/screens/MyProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/screens/MyProfileScreen.js -------------------------------------------------------------------------------- /front-end-mobile/screens/ProjectsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/screens/ProjectsScreen.js -------------------------------------------------------------------------------- /front-end-mobile/screens/ScheduleScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/screens/ScheduleScreen.js -------------------------------------------------------------------------------- /front-end-mobile/screens/TasksScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end-mobile/screens/TasksScreen.js -------------------------------------------------------------------------------- /front-end/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/.gitignore -------------------------------------------------------------------------------- /front-end/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/Dockerfile -------------------------------------------------------------------------------- /front-end/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/README.md -------------------------------------------------------------------------------- /front-end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/package.json -------------------------------------------------------------------------------- /front-end/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /front-end/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /front-end/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/apple-touch-icon.png -------------------------------------------------------------------------------- /front-end/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/favicon-16x16.png -------------------------------------------------------------------------------- /front-end/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/favicon-32x32.png -------------------------------------------------------------------------------- /front-end/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/favicon.ico -------------------------------------------------------------------------------- /front-end/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/index.html -------------------------------------------------------------------------------- /front-end/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/logo192.png -------------------------------------------------------------------------------- /front-end/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/logo512.png -------------------------------------------------------------------------------- /front-end/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/manifest.json -------------------------------------------------------------------------------- /front-end/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/robots.txt -------------------------------------------------------------------------------- /front-end/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/public/site.webmanifest -------------------------------------------------------------------------------- /front-end/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/App.css -------------------------------------------------------------------------------- /front-end/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/App.js -------------------------------------------------------------------------------- /front-end/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/App.test.js -------------------------------------------------------------------------------- /front-end/src/api/EmployeeAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/api/EmployeeAPI.js -------------------------------------------------------------------------------- /front-end/src/api/MachineryAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/api/MachineryAPI.js -------------------------------------------------------------------------------- /front-end/src/api/MaterialsAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/api/MaterialsAPI.js -------------------------------------------------------------------------------- /front-end/src/api/ProjectAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/api/ProjectAPI.js -------------------------------------------------------------------------------- /front-end/src/api/TaskAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/api/TaskAPI.js -------------------------------------------------------------------------------- /front-end/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/api/index.js -------------------------------------------------------------------------------- /front-end/src/api/loginAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/api/loginAPI.js -------------------------------------------------------------------------------- /front-end/src/assets/NoMatchStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/NoMatchStyle.css -------------------------------------------------------------------------------- /front-end/src/assets/Projects.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/Projects.css -------------------------------------------------------------------------------- /front-end/src/assets/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/brick.png -------------------------------------------------------------------------------- /front-end/src/assets/canvasjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/canvasjs.min.js -------------------------------------------------------------------------------- /front-end/src/assets/canvasjs.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/canvasjs.react.js -------------------------------------------------------------------------------- /front-end/src/assets/cement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/cement.png -------------------------------------------------------------------------------- /front-end/src/assets/crane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/crane.png -------------------------------------------------------------------------------- /front-end/src/assets/drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/drill.png -------------------------------------------------------------------------------- /front-end/src/assets/forklift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/forklift.png -------------------------------------------------------------------------------- /front-end/src/assets/helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/helmet.png -------------------------------------------------------------------------------- /front-end/src/assets/ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/ladder.png -------------------------------------------------------------------------------- /front-end/src/assets/lumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/lumber.png -------------------------------------------------------------------------------- /front-end/src/assets/steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/steel.png -------------------------------------------------------------------------------- /front-end/src/assets/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/assets/text.png -------------------------------------------------------------------------------- /front-end/src/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/bootstrap.min.css -------------------------------------------------------------------------------- /front-end/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/Footer.jsx -------------------------------------------------------------------------------- /front-end/src/components/Message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/Message.jsx -------------------------------------------------------------------------------- /front-end/src/components/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/NavBar.jsx -------------------------------------------------------------------------------- /front-end/src/components/ProjectsTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/ProjectsTable.jsx -------------------------------------------------------------------------------- /front-end/src/components/RedirectHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/RedirectHelper.js -------------------------------------------------------------------------------- /front-end/src/components/TasksTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/TasksTable.jsx -------------------------------------------------------------------------------- /front-end/src/components/admin/AdminEditEmployeeInfoModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/admin/AdminEditEmployeeInfoModal.js -------------------------------------------------------------------------------- /front-end/src/components/admin/AllEmployeeTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/admin/AllEmployeeTable.js -------------------------------------------------------------------------------- /front-end/src/components/admin/DisplayEmployeeInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/admin/DisplayEmployeeInfo.js -------------------------------------------------------------------------------- /front-end/src/components/home/BriefProjectsDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/home/BriefProjectsDisplay.js -------------------------------------------------------------------------------- /front-end/src/components/home/BriefTasksDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/home/BriefTasksDisplay.js -------------------------------------------------------------------------------- /front-end/src/components/home/EmployeeDisplayTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/home/EmployeeDisplayTable.js -------------------------------------------------------------------------------- /front-end/src/components/home/EmployeeListTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/home/EmployeeListTable.js -------------------------------------------------------------------------------- /front-end/src/components/home/HomePageSpinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/home/HomePageSpinner.jsx -------------------------------------------------------------------------------- /front-end/src/components/home/ProjectPieChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/home/ProjectPieChart.js -------------------------------------------------------------------------------- /front-end/src/components/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/home/home.css -------------------------------------------------------------------------------- /front-end/src/components/myProfile/DisplayBasicInformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/myProfile/DisplayBasicInformation.js -------------------------------------------------------------------------------- /front-end/src/components/myProfile/MyProfileProjectsDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/myProfile/MyProfileProjectsDisplay.js -------------------------------------------------------------------------------- /front-end/src/components/myProfile/UserPersonalInformationFormModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/myProfile/UserPersonalInformationFormModal.css -------------------------------------------------------------------------------- /front-end/src/components/myProfile/UserPersonalInformationFormModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/myProfile/UserPersonalInformationFormModal.js -------------------------------------------------------------------------------- /front-end/src/components/project/AddProjectModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/project/AddProjectModal.js -------------------------------------------------------------------------------- /front-end/src/components/resources/AddMachineModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/resources/AddMachineModal.js -------------------------------------------------------------------------------- /front-end/src/components/resources/AddMaterialModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/resources/AddMaterialModal.js -------------------------------------------------------------------------------- /front-end/src/components/resources/ConfirmReturnMachinesModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/resources/ConfirmReturnMachinesModal.js -------------------------------------------------------------------------------- /front-end/src/components/resources/Resources.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/resources/Resources.css -------------------------------------------------------------------------------- /front-end/src/components/resources/Resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/resources/Resources.js -------------------------------------------------------------------------------- /front-end/src/components/resources/ResourcesForSingleProjectPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/resources/ResourcesForSingleProjectPage.js -------------------------------------------------------------------------------- /front-end/src/components/singleProject/AddEmployeeModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/singleProject/AddEmployeeModal.js -------------------------------------------------------------------------------- /front-end/src/components/singleProject/AddTaskModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/singleProject/AddTaskModal.js -------------------------------------------------------------------------------- /front-end/src/components/singleProject/EmployeeListTableForProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/singleProject/EmployeeListTableForProject.js -------------------------------------------------------------------------------- /front-end/src/components/singleProject/ProjectForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/singleProject/ProjectForm.js -------------------------------------------------------------------------------- /front-end/src/components/singleProject/TaskListTableForProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/singleProject/TaskListTableForProject.js -------------------------------------------------------------------------------- /front-end/src/components/singleTask/TaskForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/singleTask/TaskForm.js -------------------------------------------------------------------------------- /front-end/src/components/spinner/LoginSpinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/spinner/LoginSpinner.jsx -------------------------------------------------------------------------------- /front-end/src/components/spinner/Spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/components/spinner/Spinner.jsx -------------------------------------------------------------------------------- /front-end/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/index.css -------------------------------------------------------------------------------- /front-end/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/index.js -------------------------------------------------------------------------------- /front-end/src/pages/AdminAllEmployeeViewPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/AdminAllEmployeeViewPage.js -------------------------------------------------------------------------------- /front-end/src/pages/AdminSingleEmployeeEditPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/AdminSingleEmployeeEditPage.js -------------------------------------------------------------------------------- /front-end/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/Home.jsx -------------------------------------------------------------------------------- /front-end/src/pages/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/Login.jsx -------------------------------------------------------------------------------- /front-end/src/pages/MyProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/MyProfile.jsx -------------------------------------------------------------------------------- /front-end/src/pages/NoMatch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/NoMatch.jsx -------------------------------------------------------------------------------- /front-end/src/pages/Projects.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/Projects.jsx -------------------------------------------------------------------------------- /front-end/src/pages/RegisterPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/RegisterPage.jsx -------------------------------------------------------------------------------- /front-end/src/pages/SingleProjectPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/SingleProjectPage.jsx -------------------------------------------------------------------------------- /front-end/src/pages/SingleTaskPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/SingleTaskPage.js -------------------------------------------------------------------------------- /front-end/src/pages/Tasks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/Tasks.css -------------------------------------------------------------------------------- /front-end/src/pages/Tasks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/pages/Tasks.jsx -------------------------------------------------------------------------------- /front-end/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/reportWebVitals.js -------------------------------------------------------------------------------- /front-end/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingErik/constructionManagementSystem/HEAD/front-end/src/setupTests.js --------------------------------------------------------------------------------