Skip to content

Commit

Permalink
test launch
Browse files Browse the repository at this point in the history
  • Loading branch information
wslyvh committed Oct 30, 2024
1 parent 91c33bf commit 96e4d67
Show file tree
Hide file tree
Showing 9 changed files with 769 additions and 744 deletions.
1,295 changes: 646 additions & 649 deletions devcon-api/data/vectors/devcon-7.json

Large diffs are not rendered by default.

152 changes: 98 additions & 54 deletions devcon-api/data/vectors/dictionary.json

Large diffs are not rendered by default.

Binary file modified devcon-api/src/db/devcon.db
Binary file not shown.
30 changes: 0 additions & 30 deletions devcon-api/src/swagger/definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,36 +62,6 @@
}
}
},
"/account/import/{id}": {
"get": {
"tags": [
"Account"
],
"description": "",
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "OK"
},
"400": {
"description": "Bad Request"
},
"404": {
"description": "Not Found"
},
"500": {
"description": "Internal Server Error"
}
}
}
},
"/account/{id}": {
"put": {
"tags": [
Expand Down
3 changes: 3 additions & 0 deletions devcon-app/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ const Index = (props: any) => {
}
}, [])

// TODO: Temporary test launch
return <></>

return (
<AppLayout pageTitle="Dashboard" breadcrumbs={[{ label: 'Dashboard' }]}>
<SEO title="Dashboard" />
Expand Down
4 changes: 3 additions & 1 deletion devcon-app/src/pages/schedule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ export default pageHOC((props: any) => {

// console.log(sessions, 'sessions?')
// console.log(props.event, 'event?')
// console.log(props.rooms)

console.log(props.rooms)
// TODO: Temporary test launch
return <></>

return (
<AppLayout pageTitle="Schedule" breadcrumbs={[{ label: 'Schedule' }]}>
Expand Down
13 changes: 8 additions & 5 deletions devcon-app/src/pages/schedule/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ export default (props: any) => {

if (!props.session) return null

// TODO: Temporary test launch
return <></>

return (
<>
<SEO title={props.session.title} description={props.session.description} separator="@" />
Expand All @@ -42,13 +45,13 @@ export default (props: any) => {
}

export async function getStaticPaths() {
const sessions = await fetchSessions()
const paths = sessions.map(i => {
return { params: { id: i.sourceId } }
})
// const sessions = await fetchSessions()
// const paths = sessions.map(i => {
// return { params: { id: i.sourceId } }
// })

return {
paths,
paths: [], // TODO: Temporary test launch
fallback: 'blocking',
}
}
Expand Down
3 changes: 3 additions & 0 deletions devcon-app/src/pages/speakers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ export default pageHOC((props: any) => {
// }
// }, [selectedSpeaker])

// TODO: Temporary test launch
return <></>

return (
<AppLayout pageTitle="Speakers" breadcrumbs={[{ label: 'Speakers' }]}>
<SEO title={'Speakers'} />
Expand Down
13 changes: 8 additions & 5 deletions devcon-app/src/pages/speakers/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ export default (props: any) => {

if (!props.speaker) return null

// TODO: Temporary test launch
return <></>

return (
<>
<SEO title={props.speaker.name} description={props.speaker.description} separator="@" />
Expand All @@ -45,13 +48,13 @@ export default (props: any) => {
}

export async function getStaticPaths() {
const speakers = await fetchSpeakers()
const paths = speakers.map(i => {
return { params: { id: i.sourceId } }
})
// const speakers = await fetchSpeakers()
// const paths = speakers.map(i => {
// return { params: { id: i.sourceId } }
// })

return {
paths,
paths: [],
fallback: 'blocking',
}
}
Expand Down

0 comments on commit 96e4d67

Please sign in to comment.