1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

added updated nodes to flow

This commit is contained in:
Fedor Katurov 2019-10-30 17:26:30 +07:00
parent 6f76bec2c0
commit 74cd181530
13 changed files with 128 additions and 30 deletions

View file

@ -21,6 +21,7 @@ export const FlowGrid: FC<IProps> = ({
nodes,
heroes,
recent,
updated,
onSelect,
onChangeCellView,
}) => (
@ -30,7 +31,7 @@ export const FlowGrid: FC<IProps> = ({
<FlowHero heroes={heroes} />
</div>
<div className={styles.stamp}>
<FlowRecent recent={recent} />
<FlowRecent recent={recent} updated={updated} />
</div>
{nodes.map(node => (

View file

@ -1,4 +1,5 @@
$cols: $content_width / $cell;
$stamp_color: $content_bg;
.grid {
padding: $gap / 2;
@ -11,8 +12,8 @@ $cols: $content_width / $cell;
grid-template-rows: 50vh $cell;
grid-auto-rows: $cell;
grid-auto-flow: row dense;
grid-column-gap: $grid_line;
grid-row-gap: $grid_line;
grid-column-gap: $gap;
grid-row-gap: $gap;
@include tablet {
padding: 0 $gap;
@ -72,10 +73,11 @@ $cols: $content_width / $cell;
}
.stamp {
@include outer_shadow();
// grid-row: -1 / 3;
grid-row-end: span 2;
grid-column: -2 / -1;
background: darken($content_bg, 8%);
background: $stamp_color;
border-radius: $radius;
padding: $gap;
display: flex;
@ -85,4 +87,16 @@ $cols: $content_width / $cell;
display: flex;
align-items: stretch;
justify-content: stretch;
overflow: hidden;
position: relative;
&::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
height: 60px;
width: 100%;
background: linear-gradient(transparentize($stamp_color, 1), $stamp_color 90%);
}
}

View file

@ -1,19 +1,45 @@
import React, { FC } from 'react';
import * as styles from './styles.scss';
import { IFlowState } from '~/redux/flow/reducer';
import { getURL } from '~/utils/dom';
import { Link } from 'react-router-dom';
import { URLS } from '~/constants/urls';
import classNames from 'classnames';
interface IProps {
recent: IFlowState['recent'];
updated: IFlowState['updated'];
}
const FlowRecent: FC<IProps> = ({ recent }) => (
const FlowRecent: FC<IProps> = ({ recent, updated }) => (
<div className={styles.grid}>
{updated &&
updated.slice(0, 20).map(node => (
<Link key={node.id} className={styles.item} to={URLS.NODE_URL(node.id)}>
<div
className={classNames(styles.thumb, styles.new)}
style={{ backgroundImage: `url("${getURL({ url: node.thumbnail })}")` }}
/>
<div className={styles.info}>
<div className={styles.title}>{node.title}</div>
<div className={styles.comment}>{node.created_at}</div>
</div>
</Link>
))}
{recent &&
recent.slice(0, 9).map(node => (
<div key={node.id} className={styles.item}>
<div className={styles.thumb} />
<div className={styles.info}>{node.title}</div>
</div>
recent.slice(0, 20).map(node => (
<Link key={node.id} className={styles.item} to={URLS.NODE_URL(node.id)}>
<div
className={styles.thumb}
style={{ backgroundImage: `url("${getURL({ url: node.thumbnail })}")` }}
/>
<div className={styles.info}>
<div className={styles.title}>{node.title}</div>
<div className={styles.comment}>{node.created_at}</div>
</div>
</Link>
))}
</div>
);

View file

@ -1,9 +1,7 @@
.grid {
display: grid;
grid-template-rows: repeat(9, 1fr);
grid-template-columns: auto;
row-gap: $grid_line;
display: flex;
justify-content: stretch;
flex-direction: column;
flex: 1;
& > div {
@ -20,17 +18,51 @@
font: $font_12_regular;
border-radius: $radius;
flex-direction: row;
margin-bottom: $gap;
color: white;
text-decoration: none;
}
.thumb {
height: 100%;
width: 40px;
margin-right: $grid_line;
// padding-left: 100%;
background: red;
// flex:
height: 48px;
margin-right: $gap;
background: 50% 50% no-repeat/cover;
border-radius: $radius;
flex: 0 0 48px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
&.new {
&::after {
content: ' ';
width: 12px;
height: 12px;
border-radius: 100%;
background: $red;
box-shadow: $content_bg 0 0 0 5px;
position: absolute;
right: -2px;
bottom: -2px;
}
}
}
.info {
flex: 1;
min-width: 0;
}
.title {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
font: $font_16_semibold;
}
.comment {
font: $font_12_regular;
margin-top: 4px;
opacity: 0.5;
}