| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | chore: create a CodeBlock component for MDX rendering | Armand Philippot | 2022-01-26 | 2 | -0/+41 | |
| | | ||||||
| * | chore: adjust colors and grid layout | Armand Philippot | 2022-01-25 | 1 | -31/+0 | |
| | | ||||||
| * | chore: wrap dates with time tag | Armand Philippot | 2022-01-25 | 4 | -70/+74 | |
| | | ||||||
| * | chore: add reading time in posts meta | Armand Philippot | 2022-01-25 | 3 | -24/+69 | |
| | | ||||||
| * | chore: display a progress bar before load more button | Armand Philippot | 2022-01-25 | 2 | -0/+58 | |
| | | | | | | Since I'm using cursor pagination, users cannot know if there is a lot of posts available. With this cursor, they can verify the progression. | |||||
| * | chore: display total found posts in page meta | Armand Philippot | 2022-01-25 | 2 | -9/+23 | |
| | | ||||||
| * | refactor(project): replace repo api call method with hook and swr | Armand Philippot | 2022-01-24 | 1 | -22/+19 | |
| | | | | | | | | | | | Instead of using post slug and an environment variable to fetch repo data, I use the given repo in each project MDX file. It allows me to fetch data from another user/organization if needed. To make it work, I no longer provide the full URL in MDX file. The new format is: "User/repo-slug". I also replaced the fetch method with SWR to improve caching and to avoid React complaining about cleanup useEffect. | |||||
| * | refactor: rename all subject occurrences into topic | Armand Philippot | 2022-01-23 | 5 | -41/+40 | |
| | | | | | | I change the name in graphql endpoint, so I decided to repercute this change here. | |||||
| * | chore: include projects inside breadcrumb | Armand Philippot | 2022-01-20 | 1 | -1/+22 | |
| | | ||||||
| * | chore: add a project summary component | Armand Philippot | 2022-01-20 | 2 | -0/+195 | |
| | | ||||||
| * | chore: add projects to main nav | Armand Philippot | 2022-01-20 | 6 | -10/+120 | |
| | | | | | | | I redesign a little the main nav on small screens so it can takes two columns when the screen height is low. I change the 2xs breakpoint to 500px instead of 400px. | |||||
| * | chore: add single project view | Armand Philippot | 2022-01-20 | 2 | -3/+3 | |
| | | ||||||
| * | chore: add a page for projects | Armand Philippot | 2022-01-20 | 4 | -0/+188 | |
| | | ||||||
| * | chore: allow ReactElement as intro in PostHeader | Armand Philippot | 2022-01-19 | 1 | -7/+22 | |
| | | ||||||
| * | chore: add opengraph and twitter meta | Armand Philippot | 2022-01-19 | 1 | -0/+8 | |
| | | ||||||
| * | refactor(config): move defaultLocale as property of config.locales | Armand Philippot | 2022-01-19 | 2 | -2/+2 | |
| | | | | | | I will need the country code, so I think it makes more sense to gather them inside the same property. | |||||
| * | chore: add structured data using schema.org and JSON-LD | Armand Philippot | 2022-01-19 | 5 | -62/+226 | |
| | | | | | I also added the featured image on single article. | |||||
| * | chore: improve keyboard navigation | Armand Philippot | 2022-01-18 | 2 | -2/+36 | |
| | | | | | | Add some focus styles mainly in toolbar components to help identify active items when navigating with a keyboard. | |||||
| * | feat: add a setting to disable animations and transitions | Armand Philippot | 2022-01-17 | 2 | -0/+37 | |
| | | | | | | Some users may not know the reduced motion settings, so I provide an option directly on the website to disable animations. | |||||
| * | refactor(settings): make toggle reusable | Armand Philippot | 2022-01-17 | 7 | -48/+94 | |
| | | | | | | Toggle will be used for others settings so I extract the functionnality from ThemeToggle. | |||||
| * | feat: implement dark mode | Armand Philippot | 2022-01-17 | 18 | -41/+91 | |
| | | ||||||
| * | chore: replace copyright icon import with custom component | Armand Philippot | 2022-01-17 | 5 | -6/+38 | |
| | | | | | | It allows me to set the colors with CSS and it will be easier to implement dark mode. | |||||
| * | refactor(styles): rename shadow and border variables | Armand Philippot | 2022-01-16 | 27 | -110/+95 | |
| | | ||||||
| * | chore: add a spinner when content is loading | Armand Philippot | 2022-01-16 | 6 | -34/+119 | |
| | | ||||||
| * | chore(meta): add a link to comments on single post pages | Armand Philippot | 2022-01-16 | 1 | -1/+8 | |
| | | ||||||
| * | chore(comments): handle comment reply | Armand Philippot | 2022-01-15 | 6 | -23/+90 | |
| | | ||||||
| * | fix: keep logo consistent on zoom | Armand Philippot | 2022-01-15 | 1 | -1/+1 | |
| | | ||||||
| * | chore: update sidebar and widgets styles | Armand Philippot | 2022-01-15 | 30 | -105/+513 | |
| | | | | | | | | | | I'm now using a widget that can be expanded/collapsed. It also allows me to handle more effectively widgets overflow and to avoid styles repetitions. However, with stylelint rule "no-descending-specificity", I'm not sure if the stylesheets are really logical... Maybe I should deactivate this rule. | |||||
| * | refactor(buttons): add a tertiary kind (previously links styles) | Armand Philippot | 2022-01-14 | 3 | -51/+19 | |
| | | ||||||
| * | chore(homepage): add icons to some buttons | Armand Philippot | 2022-01-14 | 1 | -7/+0 | |
| | | ||||||
| * | chore: improve load more button accessibility | Armand Philippot | 2022-01-14 | 2 | -16/+41 | |
| | | | | | | | On click, the focus should be moved to the last post in the list instead of keeping it on load more button. It helps to keep a consistent navigation for keyboard users for example. | |||||
| * | chore: improve Branding component | Armand Philippot | 2022-01-14 | 2 | -22/+96 | |
| | | ||||||
| * | chore: change posts list styles | Armand Philippot | 2022-01-14 | 3 | -10/+40 | |
| | | ||||||
| * | chore: change secondary button styles | Armand Philippot | 2022-01-14 | 1 | -18/+19 | |
| | | ||||||
| * | chore(toolbar): close modals on click/focus outside | Armand Philippot | 2022-01-14 | 3 | -16/+94 | |
| | | ||||||
| * | fix: remove focus on route change | Armand Philippot | 2022-01-13 | 1 | -1/+10 | |
| | | ||||||
| * | chore: add feed formats to document head | Armand Philippot | 2022-01-13 | 1 | -0/+22 | |
| | | ||||||
| * | fix(toc): render on each route change and exclude aside titles | Armand Philippot | 2022-01-11 | 1 | -3/+0 | |
| | | | | | | | On subject pages for example, the table of contents was not updated on route change. So I added router.asPath as dependency of useEffect. I also changed the query to exclude all titles in aside (ToC, widgets). | |||||
| * | fix(widget): remove items limit for ThematicsList and TopicsList | Armand Philippot | 2022-01-11 | 2 | -10/+2 | |
| | | | | | | | | By default WPGraphQL gets only the 10 first items if first is not specified. So some subjects was not displayed. I also add an order by title to the query. So I no longer need to sort arrays inside components. | |||||
| * | chore(widget): add a related thematics widget | Armand Philippot | 2022-01-11 | 3 | -1/+36 | |
| | | ||||||
| * | chore(widget): pass title to TopicsList as parameter | Armand Philippot | 2022-01-11 | 1 | -3/+12 | |
| | | | | | | I also choose to no display the current topic in the list if the current page is a subject. | |||||
| * | chore(widget): add a related topics widget | Armand Philippot | 2022-01-11 | 6 | -9/+33 | |
| | | ||||||
| * | chore(meta): display subjects instead of thematics on Thematic pages | Armand Philippot | 2022-01-11 | 2 | -3/+29 | |
| | | ||||||
| * | chore(widgets): pass title to thematics list as parameter | Armand Philippot | 2022-01-11 | 1 | -4/+12 | |
| | | | | | | If the current page is a thematic, I also choose to not display the current thematic in the list. | |||||
| * | fix(back-to-top): set translate with percentage | Armand Philippot | 2022-01-11 | 1 | -6/+5 | |
| | | | | | | With px/rem, on zoom the arrow head is not positionned correctly. Using percentage fix this issue. | |||||
| * | refactor(sidebar): use a component to avoid styles repetition | Armand Philippot | 2022-01-11 | 5 | -10/+75 | |
| | | | | | | | I also fix some overflow/sticky issues. I have to set overflow auto only when there is no button-like links otherwise, with translate, the button is cropped on hover. | |||||
| * | chore: add PDF and image format to CV page | Armand Philippot | 2022-01-10 | 3 | -1/+51 | |
| | | ||||||
| * | chore: add a social media widget on contact and cv pages | Armand Philippot | 2022-01-10 | 3 | -1/+121 | |
| | | ||||||
| * | refactor(aside): move width from aside to sharing widget | Armand Philippot | 2022-01-10 | 3 | -1/+3 | |
| | | | | | Only the Sharing widget needs the "min-content" width. | |||||
| * | refactor(styles): use css grid to stylize post header | Armand Philippot | 2022-01-10 | 2 | -13/+35 | |
| | | | | | | By using pseudo elements instead of background with padding, it is easier to control the look of posts header. | |||||
