Skip to content

Commit

Permalink
Merge 217fde4 into 32f1d6c
Browse files Browse the repository at this point in the history
  • Loading branch information
MrOrz committed Aug 28, 2022
2 parents 32f1d6c + 217fde4 commit 8455626
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 1 deletion.
10 changes: 10 additions & 0 deletions components/SideSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,13 @@ export const SideSectionText = withStyles(() => ({
</article>
);
});

export const SideSectionImage = withStyles(() => ({
asideImage: {
maxWidth: '100%',
maxHeight: '100px',
verticalAlign: 'bottom',
},
}))(({ classes, className, ...props }) => {
return <img className={cx(classes.asideImage, className)} {...props} />;
});
7 changes: 7 additions & 0 deletions components/SideSection.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
SideSectionLinks,
SideSectionLink,
SideSectionText,
SideSectionImage,
} from './SideSection';

export default {
Expand Down Expand Up @@ -36,6 +37,12 @@ export const SideSectionStructure = () => (
section 3 Side section 3 Side section 3 Side section 3{' '}
</SideSectionText>
</SideSectionLink>
<SideSectionLink>
<SideSectionImage src="https://placekitten.com/300/200" />
</SideSectionLink>
<SideSectionLink>
<SideSectionImage src="https://placekitten.com/200/500" />
</SideSectionLink>
</SideSectionLinks>
</SideSection>
</Container>
Expand Down
28 changes: 28 additions & 0 deletions components/__snapshots__/SideSection.stories.storyshot
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,34 @@ exports[`Storyshots SideSection Side Section Structure 1`] = `
</Component>
</a>
</Component>
<Component>
<a
className="Component-asideItem"
>
<Component
src="https://placekitten.com/300/200"
>
<img
className="Component-asideImage"
src="https://placekitten.com/300/200"
/>
</Component>
</a>
</Component>
<Component>
<a
className="Component-asideItem"
>
<Component
src="https://placekitten.com/200/500"
>
<img
className="Component-asideImage"
src="https://placekitten.com/200/500"
/>
</Component>
</a>
</Component>
</div>
</Component>
</aside>
Expand Down
9 changes: 8 additions & 1 deletion pages/article/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import {
SideSectionLinks,
SideSectionLink,
SideSectionText,
SideSectionImage,
} from 'components/SideSection';
import Hyperlinks from 'components/Hyperlinks';
import CurrentReplies from 'components/CurrentReplies';
Expand Down Expand Up @@ -145,6 +146,8 @@ const LOAD_ARTICLE = gql`
node {
id
text
articleType
attachmentUrl(variant: THUMBNAIL)
articleCategories {
categoryId
}
Expand Down Expand Up @@ -496,7 +499,11 @@ function ArticlePage() {
passHref
>
<SideSectionLink>
<SideSectionText>{node.text}</SideSectionText>
{node.articleType === 'IMAGE' ? (
<SideSectionImage src={node.attachmentUrl} />
) : (
<SideSectionText>{node.text}</SideSectionText>
)}
<ArticleInfo className={classes.asideInfo} article={node} />
</SideSectionLink>
</Link>
Expand Down

0 comments on commit 8455626

Please sign in to comment.