Job Costing #11 – Loading the Excel Files

This post is part of a series on an ongoing project. Today I'm going to explore calling the legacy code from my Kotlin Spring controller. This will focus on calling the code that performs the analysis of the three input files and produces the output that will be sent back to the frontend. getTimeSheetData() The first … Continue reading Job Costing #11 – Loading the Excel Files

Job Costing #7 – Uploading Files Part 2

This post is part of a series on an ongoing project. In yesterday's post, I added support for uploading files to the backend. Today I'm going to focus on implementing the frontend side. InputFile State For starters, I need to add state to the InputFile component. The component can exist in the initial state - without … Continue reading Job Costing #7 – Uploading Files Part 2

Job Costing #4 – Adding React

Now it's time to add a React frontend into my Maven/Kotlin/Spring project. I've found that trying to blend the React code under the standard Maven structure as something like /src/main/frontend to be rather problematic. So I'm going to embed the React source within a /frontend directory directly under the project's root directory. React Init First, … Continue reading Job Costing #4 – Adding React