Code Samples
I've included a few samples of code and prototypes I've worked on in the past. I generally build these for practice or to test approaches to accomplish development tasks.
React Dashboard Example
This is an example dashboard I'm working on to practice writing React components. I decided to try out the React Material-UI library (https://material-ui.com/) to integrate certain components and styling capabilities and I've included the Victory charting library (https://formidable.com/open-source/victory/) to practice building charts. I'll be adding more items to the dashboard as time goes by along with unit tests.
GitHub Repository: https://github.com/jacornwell/react-dashboard-example
Line Chart Notes
This was an exercise to try and closely duplicate a chart built by someone else using a charting library I had not previously used. I came across DrayNow's chart when reading an article they published on LinkedIn.
Target Chart: https://draynow.com/wp-content/uploads/2020/09/ATL-Rail-2020-1280x720-c-default.png
Charting Library: Victory - https://formidable.com/open-source/victory/
The data lines in the original chart have drop shadows. I didn't implement that in this example.
I abbreviated the X-axis tick labels since I had a lot of overlap using the full month names.
The icons in the original chart's legend are drawn as a horizontal line with a circle at the center. I'm simply displaying a circle for each data line and filling them with the corresponding colors.
The data points reflected in my graph are estimates of the data points displayed in the original chart.
React Layout Samples
This is another project I set up to practice React development. I thought I would build out common layouts to use as points of reference when building future React applications. I'm planning to add more examples to this project that will give me the opportunity to learn more about the react router, state management, unit testing, and building out forms with React.
Note: In the preview below, you may see the mobile-friendly layout instead of the standard layouts depending on the width of the application's display area. You can toggle between the three layouts using the "Left Pane", "Notched", and "Full" buttons below the application's display.
Parallax Image Scrolling
In my past projects, I've never had to implement parallax image scrolling so I thought I'd walk through an example to see how it works. I used a few pictures I took while on vacation to build this sample.