Skip to content

Commit a13e232

Browse files
committed
Merge branch 'stage'
2 parents c94cec4 + 85c1f60 commit a13e232

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+8458
-723
lines changed

.eslintrc.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"extends": "next/core-web-vitals"
2+
"extends": "next/core-web-vitals",
3+
"rules": {
4+
"react-hooks/exhaustive-deps": "off"
5+
}
36
}

.github/workflows/deployment.yml

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
# Sample workflow for building and deploying a Next.js site to GitHub Pages
2+
#
3+
# To get started with Next.js see: https://nextjs.org/docs/getting-started
4+
#
5+
name: Deploy Next.js site to Pages
6+
7+
on:
8+
# Runs on pushes targeting the default branch
9+
push:
10+
branches: ["dev"]
11+
12+
# Allows you to run this workflow manually from the Actions tab
13+
workflow_dispatch:
14+
15+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
16+
permissions:
17+
contents: read
18+
pages: write
19+
id-token: write
20+
21+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
22+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
23+
concurrency:
24+
group: "pages"
25+
cancel-in-progress: false
26+
27+
jobs:
28+
# Build job
29+
build:
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v4
34+
- name: Detect package manager
35+
id: detect-package-manager
36+
run: |
37+
if [ -f "${{ github.workspace }}/yarn.lock" ]; then
38+
echo "manager=yarn" >> $GITHUB_OUTPUT
39+
echo "command=install" >> $GITHUB_OUTPUT
40+
echo "runner=yarn" >> $GITHUB_OUTPUT
41+
exit 0
42+
elif [ -f "${{ github.workspace }}/package.json" ]; then
43+
echo "manager=npm" >> $GITHUB_OUTPUT
44+
echo "command=ci" >> $GITHUB_OUTPUT
45+
echo "runner=npx --no-install" >> $GITHUB_OUTPUT
46+
exit 0
47+
else
48+
echo "Unable to determine package manager"
49+
exit 1
50+
fi
51+
- name: Setup Node
52+
uses: actions/setup-node@v4
53+
with:
54+
node-version: "20"
55+
cache: ${{ steps.detect-package-manager.outputs.manager }}
56+
- name: Setup Pages
57+
uses: actions/configure-pages@v4
58+
with:
59+
# Automatically inject basePath in your Next.js configuration file and disable
60+
# server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized).
61+
#
62+
# You may remove this line if you want to manage the configuration yourself.
63+
static_site_generator: next
64+
- name: Restore cache
65+
uses: actions/cache@v4
66+
with:
67+
path: |
68+
.next/cache
69+
# Generate a new cache whenever packages or source files change.
70+
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
71+
# If source files changed but packages didn't, rebuild from a prior cache.
72+
restore-keys: |
73+
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-
74+
- name: Install dependencies
75+
run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
76+
- name: Build with Next.js
77+
run: ${{ steps.detect-package-manager.outputs.runner }} npx --no-install next build
78+
# - name: Static HTML export with Next.js
79+
# run: ${{ steps.detect-package-manager.outputs.runner }} next export
80+
- name: Ensure output directory exists
81+
run: mkdir -p ./out
82+
83+
- name: Upload artifact
84+
uses: actions/upload-pages-artifact@v3
85+
with:
86+
path: ./out
87+
88+
# Deployment job
89+
deploy:
90+
environment:
91+
name: github-pages
92+
url: ${{ steps.deployment.outputs.page_url }}
93+
runs-on: ubuntu-latest
94+
needs: build
95+
steps:
96+
- name: Deploy to GitHub Pages
97+
id: deployment
98+
uses: actions/deploy-pages@v4

generate-output-json.js

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
const csvFilePath = './public/data.csv'
2+
const csv = require('csvtojson')
3+
const groupBy = require("lodash.groupby");
4+
const fs = require('fs')
5+
const relations = require('./public/output.json')
6+
7+
function removeEmptyFields(obj) {
8+
return Object.fromEntries(Object.entries(obj).filter(([_, v]) => v));
9+
}
10+
11+
function parseTags(tags) {
12+
const list = tags.split(';').map(el => el.trim()).filter((item) => item).map(line => {
13+
const [key, value] = line.split(':')
14+
return {
15+
key: key.trim(),
16+
value: value?.trim() || value
17+
}
18+
})
19+
const groupedList = groupBy(list, 'key');
20+
21+
const output = {}
22+
23+
Object.keys(groupedList).forEach(key => {
24+
output[key] = groupedList[key].map(item => item.value)
25+
});
26+
return output;
27+
}
28+
29+
30+
async function generateOutputJson() {
31+
// load relationships from json
32+
const relatedData = new Map();
33+
relations.forEach((item) => {
34+
relatedData.set(item['Key'], item);
35+
});
36+
37+
const jsonArray = await csv().fromFile(csvFilePath)
38+
const output = jsonArray.map((item) => {
39+
const manualTags = parseTags(item['Manual Tags'] || "")
40+
const autoTags = parseTags(item['Automatic Tags'] || "")
41+
const relations = relatedData.get(item['Key'])?.PARSED_RELATES_TO || [];
42+
// const tags = relatedData.get(item['Key'])?.PARSED_MANUAL_TAGS || [];
43+
const level = manualTags['CO-DESIGN LEVEL'] || [];
44+
delete manualTags['CO-DESIGN LEVEL'];
45+
46+
manualTags['CO_DESIGN_LEVEL'] = level;
47+
const coreToolKits = manualTags['CORE TOOLKIT'];
48+
if(coreToolKits) {
49+
manualTags['CORE_TOOLKIT'] = coreToolKits;
50+
delete manualTags['CORE TOOLKIT'];
51+
}
52+
return {
53+
...removeEmptyFields(item),
54+
'PARSED_MANUAL_TAGS': manualTags,
55+
'PARSED_AUTOMATIC_TAGS': autoTags,
56+
'PARSED_RELATES_TO': relations
57+
}
58+
});
59+
fs.writeFileSync('./public/data.json', JSON.stringify(output, null, 2))
60+
}
61+
62+
generateOutputJson()

next-seo.config.ts

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { NextSeoProps } from "next-seo"
2+
export default {
3+
title: "CoDesignSytemsMap",
4+
description:
5+
"A map of design systems and their components, patterns, and tools.",
6+
} as NextSeoProps

next.config.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/**
2+
* @type {import('next').NextConfig}
3+
*/
4+
const nextConfig = {
5+
reactStrictMode: false,
6+
output: "export",
7+
images: {
8+
unoptimized: true,
9+
},
10+
};
11+
12+
module.exports = nextConfig;

0 commit comments

Comments
 (0)