Skip to content

Commit 5c164e1

Browse files
authored
Merge branch 'main' into blog-post-rerum
Signed-off-by: Lalith Adithya Reddy Avuthu <[email protected]>
2 parents cf112ae + edd8f67 commit 5c164e1

8 files changed

+53
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
title: Experience contributing to OSS-SLU
3+
slug: experience_contributing_to_oss-slu
4+
authors: [anjali]
5+
hide_table_of_contents: false
6+
---
7+
8+
Recently, I undertook the challenge of updating the **'About'** page for open source with SLU at https://oss-slu.github.io/docs/about. This page includes **About Us** content alongside the profiles of the **Leadership Team**.
9+
10+
<!--truncate-->
11+
12+
### The Challenge
13+
The goal was to update the details of our **current** and **previous tech leads** within a markdown file. Originally, each tech lead was represented by individual `div` elements in a markdown file. As the number of tech leads grew, so did the length of the document.
14+
15+
![Current Tech Leads](./experience-contributing-to-oss-20241130/current-tech-leads.jpg)
16+
17+
![Previous Tech Leads](./experience-contributing-to-oss-20241130/previous-tech-leads.jpg)
18+
19+
### Initial Approach
20+
To streamline this, I considered moving from plain **Markdown** to **MDX**, which allows embedding React components directly into markdown files. This switch required creating `next.config.js`, which essentially tells **Next.js** to support MDX. I crafted a `Profile` component in `src/components/people`, aiming for better maintainability by grouping react components by functionality.
21+
22+
![Component Tree](./experience-contributing-to-oss-20241130/file-tree-outer.jpg)
23+
24+
I replaced each static `div` with this dynamic `Profile` component within the MDX file, which seemed promising. However, this transition didn't reduce the overall verbosity as I had hoped. To address this, I experimented using JSX and loops directly in the MDX files, aiming to replace multiple `Profile` components with a single loop that could dynamically render each tech lead. This approach intended to simplify the document further by minimizing repetitive code. Unfortunately, this method faced limitations when dealing with intricate functionalities, emphasizing the constraints of MDX with more complex logic.
25+
26+
### A Strategic Pivot
27+
Realizing the limitations of directly using MDX for complex interactions, I shifted strategy. I created separate React components for the current and previous tech leads and sourced their data from JSON files — `currentGradTechLeads.json` and `prevGradTechLeads.json`.
28+
29+
![JSON Data Tree](./experience-contributing-to-oss-20241130/json-data.jpg)
30+
31+
This approach allowed me to loop through the JSON data within these components, dynamically populating the `Profile` component. By consolidating all profiles under the CurrentTechLeads and PrevTechLeads components within the MDX file, I eliminated approximately 60-70 lines of code, simplifying the document structure and enhancing maintainability.
32+
33+
### Understanding MDX’s Power and Limitations
34+
This experience highlighted MDX's strengths in enriching markdown files with interactive React elements and the ease of embedding JSX directly. However, it also revealed its limitations in executing more complex conditional rendering and iterative processes. For such dynamic functionalities, external JavaScript proved to be more effective, offering greater flexibility and control over the content management and interaction logic on the page.
35+
36+
### Final Touches
37+
Ensuring the page's navigational elements remained intact was crucial, so I have tested to ensure all links and anchors functioned correctly, preserving the user experience.
38+
39+
![Navigator on About Page](./experience-contributing-to-oss-20241130/navigator.jpg)
40+
41+
### Reflections and Takeaways
42+
This project highlighted the evolving capabilities of web technologies like **MDX** and **React**, demonstrating their potential to transform content management. The use of MDX, coupled with React and external JSON data, provided a modular, maintainable approach that could easily be adapted or expanded by future developers.
43+
44+
Contributing to this project was an enriching experience, deepening my understanding of modern content management strategies and reinforcing the importance of adaptability in web development. Check out my work and contribute at [**OSS-SLU GitHub**](https://github.com/oss-slu/oss-slu.github.io).
45+

blog/authors.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,17 @@ maryam:
4040
url: https://github.com/Moshrefi
4141
image_url: /img/maryam_avatar.jpeg
4242

43+
anjali:
44+
name: Anjali Putta
45+
title: Graduate research assistant at Saint Louis University
46+
url: https://anjaliofficial.netlify.app/
47+
image_url: /img/anjali_avatar.jpeg
48+
4349
Ajith Akuthota:
4450
name: Ajith Akuthota
4551
title: Tech Lead at Open Source with SLU
4652
url: https://github.com/AjithAkuthota23
47-
53+
4854
Lalith Adithya Reddy Avuthu:
4955
name: Lalith Adithya Reddy Avuthu
5056
title: Tech Lead at Open Source with SLU
Loading
Loading
Loading
Loading
Loading

src/data/people/prevGradTechLeads.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"profileLink": "https://github.com/loganwyas"
3131
},
3232
{
33-
"name": "Ruthvik Manneem",
33+
"name": "Ruthvik Mannem",
3434
"image": "/img/ruthvik_avatar.png",
3535
"profileLink": "https://github.com/ruthvikm"
3636
},

0 commit comments

Comments
 (0)