Compare commits

..

4 Commits

11 changed files with 75 additions and 61 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 697 KiB

View File

@ -3,13 +3,14 @@ import { PersonalData } from "./PersonalDataTypes";
export const personalData: PersonalData = {
updatedDate: '2023-05-26',
name: "David Hrdina Němeček",
brief: "Software developer, people manager.",
brief: "Software developer. Engineering lead & manager.",
contacts: [
{icon: 'browser-firefox', text: 'www.dejvino.cz'},
{icon: 'envelope-at', text: 'explosive@dejvino.cz'},
{icon: 'git', text: 'https://git.dejvino.cz'},
{icon: 'telephone', text: '+420 111 222 333'},
{icon: 'file-earmark-person', text: 'https://cv.dejvino.cz'},
{icon: 'telephone', text: '+420 775 26 26 32'},
{icon: 'geo-alt', text: 'Brno, Czechia'}
],
@ -64,7 +65,7 @@ export const personalData: PersonalData = {
position: `Personal projects`,
description: `Various hardware and software projects. Usually open sourced and published on [projects.dejvino.com](https://projects.dejvino.com) .
These include video games, utilities, 3D models, devices with embedded microcontrollers etc.`,
tags: ['Java', 'Python', 'C/C++', 'Embedded devices', 'OpenSCAD', 'TypeScript', 'Linux', 'Git', 'Self-hosting']
tags: ['Java', 'Python', 'C/C++', 'Embedded Software', 'OpenSCAD', 'TypeScript', 'Linux', 'Open Source', 'Git', 'Self-hosting']
}
},
@ -75,21 +76,23 @@ export const personalData: PersonalData = {
company: `Faculty of Informatics, Masaryk University Brno`,
timerange: '2011 - 2013',
description: `Master's thesis: Efficient computation and visualization of correlations in medical signals.`,
tags: ['C/C++', 'Supercomputers', 'OpenMPI', 'Python', 'Visualization', 'Data science']
},
{
position: `Bachelor's degree, Parallel and Distributed Systems`,
company: `Faculty of Informatics, Masaryk University Brno`,
timerange: '2008 - 2011',
description: `Bachelor's thesis: Parallel implementation of force-field decompression algorithm.`,
tags: ['C/C++', 'Supercomputers', 'OpenMPI', 'Data science']
}
]
},
skills: {
primary: ['Java', 'TypeScript', 'JavaScript', 'Engineering leadership', 'Linux'],
secondary: ['SQL', 'Kotlin', 'Go', 'C/C++', 'NodeJs', 'Git', 'Preact', 'Embedded devices'],
primary: ['Java', 'TypeScript', 'JavaScript', 'Linux', 'Engineering Leadership'],
secondary: ['SQL', 'Kotlin', 'C/C++', 'NodeJs', 'Git', 'Preact', 'Embedded Software'],
languages: ['Czech (native)', 'English (proficient)', 'German (elementary)'],
others: ['Driver\'s license (B)']
//others: ['Driver\'s license (B)']
},
interests: ['Guitars', 'Heavy Metal', 'Mazda MX-5', 'DIY electronics', 'Linux', 'Open source'],
};

View File

@ -7,7 +7,7 @@ export default function AboutBrief() {
const person = usePersonContext()
return (
<Container className='about-brief' fluid>
<h1>{person.name}</h1>
<h1 className='person-name'>{person.name}</h1>
<div className='brief'>{md(person.brief)}</div>
</Container>
)

View File

@ -3,6 +3,6 @@ import Image from 'react-bootstrap/Image'
export default function Photo() {
return (
<Image alt='Photograph of the person' rounded fluid src='photo.png'></Image>
<Image className="photo" alt='Photograph of the person' rounded fluid src='photo.png'></Image>
)
}

View File

@ -6,7 +6,7 @@ import TagCloud from './TagCloud';
export default function Skills() {
const person = useContext(PersonContext)
return (
<Container className='skills'>
<Container className='skills' fluid>
<h2>Skills</h2>
<TagCloud title='Primary' icon='bookmark-star' style='primary' tags={person.skills.primary} />
{person.skills.secondary && (

View File

@ -12,9 +12,9 @@ export type Props = {
export default function TagCloud(props: Props) {
const containerClasses = ['tag-cloud', 'cloud-' + (props.style || 'standard')]
return (
<Container className={containerClasses.join(' ')}>
<Container className={containerClasses.join(' ')} fluid>
<h4>{props.icon && (<i className={'bi-' + props.icon}> </i>)}{props.title}</h4>
<Container className='tag-badges'>
<Container className='tag-badges' fluid>
{props.tags.map((tag: string) => (<Tag key={tag} text={tag} />) )}
</Container>
</Container>

View File

@ -1,7 +1,7 @@
import React from 'react';
import Container from 'react-bootstrap/Container';
import useSize from '../../hooks/Size';
import useInWidthRange from '../../hooks/InWidthRange';
import { JobListProps } from './types';
import JobsAccordion from './JobsAccordion';
import JobsCards, { JobsCardsPlaceholder } from './JobsCards';
@ -10,19 +10,14 @@ export type Props = {
heading: string,
} & JobListProps
const defaultProps = {
entriesPerRow: 2,
currentHeading: 'Currently',
}
export default function JobHistory(props: Props) {
const {SizeWrapper, size} = useSize()
const jobsList = size.width === 0 ? <JobsCardsPlaceholder /> : (
size.width < 600 ? <JobsAccordion {...props} /> : <JobsCards {...props} />)
const {SizeWrapper, inRange} = useInWidthRange(600)
const jobsList = inRange === undefined ? <JobsCardsPlaceholder /> : (
inRange ? <JobsAccordion {...props} /> : <JobsCards {...props} />)
return (
<Container>
<Container fluid>
<h2>{props.heading}</h2>
<SizeWrapper>
{jobsList}

View File

@ -8,6 +8,19 @@ body {
padding-top: 1rem;
padding-bottom: 0.2rem;
}
.person-name {
margin-top: calc(min(6vw, 5rem));
font-weight: bold;
font-size: calc(1.375rem + min(1.4vw, 1rem));
}
.brief {
font-size: 120%;
}
.contacts {
margin-top: 2rem;
}
.footer {
margin-top: 2rem;
filter: opacity(75%)
@ -17,7 +30,7 @@ body {
filter: opacity(75%)
}
.container > h2, h3, h4 {
.container > h2, .container-fluid > h2, h3, h4 {
margin-top: 1em;
}
@ -55,6 +68,7 @@ body {
}
.tag-badges > span {
margin: 0.4em;
color: #222;
}
.contacts .contact {
margin: 0.75em;
@ -65,6 +79,14 @@ body {
.accordion {
margin: 1rem;
}
.main-container .accordion-button:not(.collapsed) {
color: #222;
background-color: RGBA(217, 216, 216, 0.3);
}
.main-container .accordion-button.collapsed {
color: #0e489d;
background-color: RGBA(153, 165, 213, 0.3);
}
.multiline {
white-space: pre-line;
}

View File

@ -0,0 +1,28 @@
import React, { ForwardedRef, ReactNode, forwardRef, useEffect, useLayoutEffect, useRef, useState } from "react";
export default function useInWidthRange(threshold: number) {
const areaRef = useRef<HTMLDivElement>(null)
const [inRange, setInRange] = useState<boolean | undefined>(undefined)
function SizeWrapper(props: {children: ReactNode }) {
return (
<div ref={areaRef}>{props.children}</div>
)
}
useEffect(() => {
function updateState() {
if (areaRef.current) {
const width = areaRef.current.offsetWidth
setInRange(width <= threshold)
}
}
updateState()
addEventListener("resize", updateState);
return () => {
removeEventListener("resize", updateState)
};
}, [areaRef, threshold, setInRange])
return {SizeWrapper, inRange}
}

View File

@ -1,30 +0,0 @@
import React, { ForwardedRef, ReactNode, forwardRef, useEffect, useLayoutEffect, useRef, useState } from "react";
export default function useSize() {
const areaRef = useRef<HTMLDivElement>(null)
const [size, setSize] = useState({ width: 0, height: 0 })
function SizeWrapper(props: {children: ReactNode }) {
return (
<div ref={areaRef}>{props.children}</div>
)
}
useEffect(() => {
function updateSize() {
if (areaRef.current) {
setSize({
width: areaRef.current.offsetWidth,
height: areaRef.current.offsetHeight
})
}
}
updateSize()
addEventListener("resize", updateSize);
return () => {
removeEventListener("resize", updateSize)
};
}, [areaRef, setSize])
return {SizeWrapper, size}
}

View File

@ -16,13 +16,9 @@ export default function Home() {
<Container className='main-container' fluid='xxl'>
<Row>
<Col xs={'auto'} sm={4} lg={2}><Photo /></Col>
<Col>
<Row>
<Col xs={'auto'} lg={6}><AboutBrief /></Col>
<Col xs={'auto'} lg={6}><Contacts /></Col>
</Row>
</Col>
<Col xs={3} sm={3} lg={2}><Photo /></Col>
<Col xs={9} sm={9} lg={5}><AboutBrief /></Col>
<Col xs={12} lg={5}><Contacts /></Col>
</Row>
<Row>
<Col xs={12} xl={7}>
@ -31,7 +27,7 @@ export default function Home() {
<Row><Education /></Row>
</Col>
<Col>
<Row><Skills /></Row>
<Skills />
</Col>
</Row>
<Row><Footer /></Row>