| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | refactor: avoid useless assignement before return statement | Armand Philippot | 2022-01-04 | 6 | -47/+24 |
| | | |||||
| * | refactor(sharing): avoid nested template literals | Armand Philippot | 2022-01-04 | 7 | -29/+31 |
| | | | | | | This improves readability. I also rename a variable to avoid duplicate between global scope and useEffect scope. | ||||
| * | build(stylelint): allow use of css modules selectors like global/local | Armand Philippot | 2022-01-04 | 1 | -0/+4 |
| | | |||||
| * | chore: add a back to top link | Armand Philippot | 2022-01-04 | 5 | -1/+121 |
| | | |||||
| * | chore(icons): add direction to arrow icon and split path | Armand Philippot | 2022-01-04 | 2 | -10/+78 |
| | | | | | I can now animate separatly the arrow head and the arrow body. | ||||
| * | chore(prism): replace Coldark theme with a custom theme | Armand Philippot | 2022-01-03 | 7 | -9/+311 |
| | | |||||
| * | chore: add line numbers to all prism blocks and translate copy button | Armand Philippot | 2022-01-03 | 3 | -1/+64 |
| | | |||||
| * | chore: add styles to WP blocks | Armand Philippot | 2022-01-03 | 5 | -15/+262 |
| | | |||||
| * | chore: display subjects list under articles | Armand Philippot | 2022-01-03 | 5 | -6/+94 |
| | | |||||
| * | chore: add prismjs for syntax highlighting | Armand Philippot | 2021-12-30 | 557 | -3/+34965 |
| | | |||||
| * | chore(homepage): replace absolute links with custom components | Armand Philippot | 2021-12-29 | 2 | -1/+75 |
| | | |||||
| * | chore: make year sticky in posts list | Armand Philippot | 2021-12-29 | 2 | -4/+25 |
| | | |||||
| * | chore: replace read more link with ButtonLink component | Armand Philippot | 2021-12-29 | 10 | -79/+107 |
| | | | | | | I also fix the load more button position since I removed the margin auto. | ||||
| * | chore: add a button-like component for links | Armand Philippot | 2021-12-29 | 4 | -1/+88 |
| | | |||||
| * | chore: add a theme toggle | Armand Philippot | 2021-12-27 | 18 | -9/+457 |
| | | | | | Dark theme is not implemented yet. | ||||
| * | chore: display comments as a tree | Armand Philippot | 2021-12-27 | 5 | -9/+51 |
| | | | | | | | I was displaying comments without the parent/children link. Now, each child is displayed under its parent. I also remove the reply button for children to avoid too many child depth. | ||||
| * | feat: use mdx for pages | Armand Philippot | 2021-12-24 | 16 | -156/+958 |
| |\ | |||||
| | * | chore: replace CV content with mdx content | Armand Philippot | 2021-12-24 | 7 | -96/+8 |
| | | | | | | | | | | | Since I replace the other pages, there is no reason to fetch this page content through WP GraphQL. | ||||
| | * | chore: replace homepage content with MDX content | Armand Philippot | 2021-12-24 | 4 | -40/+3 |
| | | | | | | | | | | | I cannot import custom blocks through WP GraphQL, so I prefer to use MDX file. This way I cannot import custom components. | ||||
| | * | chore: replace legal notice page content with MDX content | Armand Philippot | 2021-12-24 | 2 | -15/+5 |
| | | | | | | | | | | | I cannot use WordPress shortcodes from a custom plugin through WP GraphQL so I'm using mdx file instead to define the page content. | ||||
| | * | build: add a typescript declaration file for MDX | Armand Philippot | 2021-12-24 | 2 | -0/+13 |
| | | | | | | | | | | | I need to inform Typescript than I am exporting a meta constant from MDX files. | ||||
| | * | build: add module alias for content directory | Armand Philippot | 2021-12-24 | 2 | -0/+2 |
| | | | |||||
| | * | build: add a git submodule to manage content in a separate repo | Armand Philippot | 2021-12-24 | 2 | -0/+3 |
| | | | |||||
| | * | build: configure next to use mdx files | Armand Philippot | 2021-12-24 | 3 | -5/+924 |
| |/ | |||||
| * | chore: add a skip to content link | Armand Philippot | 2021-12-22 | 3 | -1/+52 |
| | | |||||
| * | chore: replace svg imports with components | Armand Philippot | 2021-12-22 | 23 | -281/+588 |
| | | | | | It allows me to control the colors of each SVG paths. | ||||
| * | fix: use state to define hostname in sharing component | Armand Philippot | 2021-12-21 | 1 | -2/+3 |
| | | | | | | | The window is not available during build, so an error occured. By using React hooks to set the hostname once in the browser, it works as expected. | ||||
| * | chore: add a sharing component | Armand Philippot | 2021-12-21 | 5 | -0/+371 |
| | | |||||
| * | chore: add a table of contents | Armand Philippot | 2021-12-21 | 6 | -11/+61 |
| | | |||||
| * | chore: add a hook to build headings tree | Armand Philippot | 2021-12-21 | 2 | -0/+118 |
| | | |||||
| * | chore: add a breadcrumb component | Armand Philippot | 2021-12-21 | 12 | -36/+128 |
| | | |||||
| * | chore: move toolbar size to global scope | Armand Philippot | 2021-12-20 | 5 | -5/+18 |
| | | | | | It allows me to manage footer padding on small viewports. | ||||
| * | chore: create search view | Armand Philippot | 2021-12-20 | 4 | -4/+127 |
| | | |||||
| * | chore: add missing changes in mainNav component | Armand Philippot | 2021-12-20 | 1 | -8/+12 |
| | | | | | I forgot to add them in the previous commit... | ||||
| * | chore: define search form visibility | Armand Philippot | 2021-12-20 | 8 | -29/+155 |
| | | |||||
| * | chore: add a button to open/close search in toolbar | Armand Philippot | 2021-12-20 | 6 | -2/+221 |
| | | |||||
| * | chore: add a toolbar component | Armand Philippot | 2021-12-20 | 5 | -11/+71 |
| | | |||||
| * | refactor: rewrite types and services | Armand Philippot | 2021-12-20 | 34 | -1117/+1106 |
| | | | | | | | | I was repeating myself a lot in services. So I rewrited the different functions to improve readability and I extracted some formatting functions to put them in utils. I also rewrited/reorganized some types to keep consistent names. | ||||
| * | chore: add subject view | Armand Philippot | 2021-12-18 | 4 | -5/+344 |
| | | |||||
| * | chore: add a 404 page | Armand Philippot | 2021-12-18 | 2 | -0/+56 |
| | | |||||
| * | chore: create mutation to add a new comment on posts | Armand Philippot | 2021-12-17 | 7 | -3/+191 |
| | | |||||
| * | chore: create mutation to send mail from contact form | Armand Philippot | 2021-12-17 | 4 | -9/+99 |
| | | |||||
| * | chore: add title and meta desc to posts | Armand Philippot | 2021-12-17 | 2 | -19/+36 |
| | | |||||
| * | chore: add a comment form to posts | Armand Philippot | 2021-12-17 | 3 | -1/+62 |
| | | |||||
| * | chore: add meta to single posts | Armand Philippot | 2021-12-17 | 7 | -6/+153 |
| | | |||||
| * | build: add words to cSpells to avoid false issues | Armand Philippot | 2021-12-17 | 1 | -1/+2 |
| | | | | | My website is in French, so I use some french words inside slugs. | ||||
| * | chore: display comments list on posts | Armand Philippot | 2021-12-17 | 7 | -2/+225 |
| | | |||||
| * | chore: create thematic page view | Armand Philippot | 2021-12-16 | 5 | -2/+303 |
| | | | | | | | | For now I have to repeat some markup/styles, I cannot reuse PostsList component. WP GraphQL does not offer edges for ACF Post2Post or filters to get thematic posts with another way. I should create custom fields in backend to improve the posts fetching. | ||||
| * | refactor: move SWR to blog page | Armand Philippot | 2021-12-16 | 2 | -50/+70 |
| | | | | | This way I can reuse PostsList component with another posts fetcher. | ||||
| * | chore: display year between blog posts | Armand Philippot | 2021-12-16 | 8 | -25/+55 |
| | | |||||
