Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5f97194
feat: Introduce year-based routing and 2025 event edition components,…
anyulled Dec 6, 2025
f7188fe
chore: Add VS Code launch configuration and disable several navigatio…
anyulled Dec 6, 2025
5872560
Update src/2025/Home/components/Faqs/Faqs.tsx
anyulled Dec 6, 2025
9c508b6
Update src/views/Home/components/Home/Home.tsx
anyulled Dec 6, 2025
0a04b37
refactor: Consolidate sponsor display components into a single `Spons…
anyulled Dec 6, 2025
df0f2fc
feat: Update conference data to 2026, remove sponsor-related tests, a…
anyulled Dec 6, 2025
f105315
feat: Add VS Code launch configuration and update `@vitest/coverage-v…
anyulled Dec 7, 2025
23b9c4f
refactor: centralize `TalkCard` component to `@components/common` and…
anyulled Dec 7, 2025
c3195b2
test: add comprehensive unit tests for the MeetingDetail component
anyulled Dec 7, 2025
4256ce6
refactor: Extract year-specific data and logic into wrapper component…
anyulled Dec 7, 2025
7e034fc
refactor: centralize ActionButtons component and remove redundant tes…
anyulled Dec 7, 2025
b2217b6
feat: conditionally render the countdown component based on `edition?…
anyulled Dec 7, 2025
a3fc592
refactor: move countdown components from 2025-specific path to views …
anyulled Dec 7, 2025
e3a293b
feat: introduce `VenueWTC` component and dynamically render travel ve…
anyulled Dec 8, 2025
70b48fd
feat: enable year-specific content and routing for the sponsorship pa…
anyulled Dec 8, 2025
8ba5836
feat: enable dynamic year-specific Code of Conduct pages and routing.
anyulled Dec 8, 2025
0a2f368
ci: update SonarCloud GitHub Action and comment out schedule navigati…
anyulled Dec 8, 2025
3562470
ci: Enhance SonarCloud workflow by adding a cache name for node modul…
anyulled Dec 9, 2025
26a8be3
ci: add SONAR_TOKEN to SonarCloud workflow.
anyulled Dec 9, 2025
f712c14
feat: pull request feedback
anyulled Dec 11, 2025
499fdaa
refactor: Change SectionTitle subtitle from h2 to h3 and add a space …
anyulled Dec 11, 2025
ccf05ea
feat: remove accomodation
anyulled Dec 18, 2025
877b32e
feat: updated faqs
anyulled Dec 18, 2025
9a8d3c9
test: skipping tests for unavailable functionality
anyulled Dec 18, 2025
eaa5e60
style: new image
anyulled Dec 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,29 @@ name: sonar analysis

on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
types: [ opened, synchronize, reopened ]
types: [opened, synchronize, reopened]

jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

steps:
# Checkout
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
# Load cache modules
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -42,7 +46,7 @@ jobs:

# Send report to sonar
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
uses: SonarSource/sonarqube-scan-action@v4.2.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"command": "npm start",
"name": "Run npm start",
"request": "launch",
"type": "node-terminal"
},
]
}
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified public/images/devBcn-sponsorship.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/wtc-auditorio.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/wtc.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
115 changes: 0 additions & 115 deletions src/2023/Cfp/CfpSection2023.test.tsx

This file was deleted.

113 changes: 0 additions & 113 deletions src/2023/Cfp/CfpSection2023.tsx

This file was deleted.

10 changes: 10 additions & 0 deletions src/2023/Cfp/CfpSectionWrapper.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React, { FC } from "react";
import CfpSection from "@views/Cfp/CfpSection";
import data2023 from "@data/2023.json";
import { data } from "./CfpData";

export const CfpSectionWrapper: FC = () => {
return <CfpSection conferenceConfig={data2023} cfpData={data} />;
};

export default CfpSectionWrapper;
59 changes: 0 additions & 59 deletions src/2023/Home/components/ActionButtons/ActionButtons.tsx

This file was deleted.

Loading
Loading