Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Programs.ProgramsList #135

Open
wants to merge 6 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions src/components/Show/ListShows/Views/Desktop/Styles/common.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
& {
padding-left: px(94);

.categoryContainer {
.mainTitle {
margin-top: px(134);
color: $tempColor32;
font-family: 'Exo 2';
font-size: px(56);
font-weight: 600;
}

.list {
display: flex;
flex-wrap: wrap;
margin-top: px(98);

.item {
position: relative;
width: px(592);
height: px(560);
margin-right: px(40);
margin-bottom: px(38);
border-radius: px(8);
cursor: pointer;
overflow: hidden;

&:hover {
.info {
height: px(416);
}
}

.image {
width: px(592);
height: px(320);
background-size: cover;
}

.info {
display: flex;
position: absolute;
bottom: 0;
left: 0;
flex-direction: column;
align-items: center;
width: 100%;
height: px(240);
padding: px(36) px(40) px(44);
background-color: $mainColor1;

.title {
color: $tempColor32;
font-family: 'Exo 2';
font-size: px(40);
font-weight: 700;
line-height: px(48);
text-align: center;
}

.description {
margin-top: px(30);
font-size: px(32);
line-height: px(40);
text-align: center;
overflow: hidden;
}
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'common';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'common';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'common';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'common';
53 changes: 53 additions & 0 deletions src/components/Show/ListShows/Views/Desktop/Styles/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
@import 'theme/MediaQueries';
@import 'theme/PxFunction';
@import 'theme/Palette';

.programListComponent {
@function px($px) {
@return pxMedia($px, tabletPortrait)
}

@media #{$tabletPortrait} {
@import 'tabletPortrait';
}

@function px($px) {
@return pxMedia($px, tabletLandscape)
}

@media #{$tabletLandscape} {
@import 'tabletLandscape';
}

@function px($px) {
@return pxMedia($px, desktop)
}

@media #{$desktop} {
@import 'desktop';
}

@function px($px) {
@return pxMedia($px, desktopWide)
}

@media #{$desktopWide} {
@import 'desktopWide';
}

@function px($px) {
@return pxMedia($px, desktopHD)
}

@media #{$desktopHD} {
@import 'desktopHD';
}

@function px($px) {
@return pxMedia($px, desktopMega)
}

@media #{$desktopMega} {
@import 'desktopMega';
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'common';
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
@import 'common';

& {
padding-left: px(72);

.categoryContainer {
.mainTitle {
margin-top: px(98);
color: $tempColor32;
font-family: 'Exo 2';
font-size: px(42);
}

.list {
margin-top: px(72);

.item {
width: px(444);
height: px(420);
margin-right: px(30);
margin-bottom: px(34);
border-radius: px(6);

.image {
width: px(444);
height: px(240);
}

.info {
height: px(180);
padding: px(20) px(32) px(46);

.title {
font-size: px(30);
line-height: px(34);
}

.description {
margin-top: px(16);
font-size: px(24);
line-height: px(30);
}
}

&:hover {
.info {
height: px(312);
}
}
}
}
}
}
49 changes: 49 additions & 0 deletions src/components/Show/ListShows/Views/Desktop/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import React, { PropTypes } from 'react';

import Styles from './Styles/main.scss';
import Grid from 'theme/Grid.scss';

export default function Common(props) {
const { items } = props;

const categoryContainerItems = items.map((item) => {
return (
<div className={ Styles.categoryContainer } key={ item.id }>
<h1 className={ Styles.mainTitle }>{ item.title }</h1>
<div className={ Styles.list }>
{
item.items.map((e) => {
const imageStyle = {
backgroundImage: `url(${e.image})`
};

return (
<div className={ Styles.item } key={ e.id }>
<div className={ Styles.image } style={ imageStyle }/>
<div className={ Styles.info }>
<h3 className={ Styles.title }>{ e.title }</h3>
<p className={ Styles.description }>
{ e.description }
</p>
</div>
</div>
);
})
}
</div>
</div>
);
});

return (
<section className={ Grid.container }>
<div className={ Styles.programListComponent }>
{ categoryContainerItems }
</div>
</section>
);
}

Common.propTypes = {
items: PropTypes.array.isRequired
};
114 changes: 114 additions & 0 deletions src/components/Show/ListShows/Views/Desktop/tpl.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
import React, { PropTypes } from 'react';

import Styles from './Styles/main.scss';
import Grid from 'theme/Grid.scss';

export default function Common() {
const imageStyle = {
backgroundImage: 'url(https://cdn.hope.ua/web/tv.hope.ua/banners/ban1-mobile.jpg)'
};

return (
<section className={ Grid.container }>
<div className={ Styles.programListComponent }>
<div className={ Styles.categoryContainer }>
<h1 className={ Styles.mainTitle }>На каждый день</h1>
<div className={ Styles.list }>
<div className={ Styles.item }>
<div className={ Styles.image } style={ imageStyle }/>
<div className={ Styles.info }>
<h3 className={ Styles.title }>Є проблема</h3>
<p className={ Styles.description }>
Малюваки — дитяча пізнавальна програма,
де слухають захопливі історії, вчаться малювати,
а ще співають щоразу нову пісеньку — караоке.
</p>
</div>
</div>
<div className={ Styles.item }>
<div className={ Styles.image } style={ imageStyle }/>
<div className={ Styles.info }>
<h3 className={ Styles.title }>Модная книга</h3>
<p className={ Styles.description }>
Малюваки — дитяча пізнавальна програма,
де слухають захопливі історії, вчаться малювати,
а ще співають щоразу нову пісеньку — караоке.
</p>
</div>
</div>
<div className={ Styles.item }>
<div className={ Styles.image } style={ imageStyle }/>
<div className={ Styles.info }>
<h3 className={ Styles.title }>5 хвилин для вічності</h3>
<p className={ Styles.description }>
Малюваки — дитяча пізнавальна програма,
де слухають захопливі історії, вчаться малювати,
а ще співають щоразу нову пісеньку — караоке.
</p>
</div>
</div>
<div className={ Styles.item }>
<div className={ Styles.image } style={ imageStyle }/>
<div className={ Styles.info }>
<h3 className={ Styles.title }>Спасенні</h3>
<p className={ Styles.description }>
Малюваки — дитяча пізнавальна програма,
де слухають захопливі історії, вчаться малювати,
а ще співають щоразу нову пісеньку — караоке.
</p>
</div>
</div>
<div className={ Styles.item }>
<div className={ Styles.image } style={ imageStyle }/>
<div className={ Styles.info }>
<h3 className={ Styles.title }>Є проблема</h3>
<p className={ Styles.description }>
Малюваки — дитяча пізнавальна програма,
де слухають захопливі історії, вчаться малювати,
а ще співають щоразу нову пісеньку — караоке.
</p>
</div>
</div>
<div className={ Styles.item }>
<div className={ Styles.image } style={ imageStyle }/>
<div className={ Styles.info }>
<h3 className={ Styles.title }>Модная книга</h3>
<p className={ Styles.description }>
Малюваки — дитяча пізнавальна програма,
де слухають захопливі історії, вчаться малювати,
а ще співають щоразу нову пісеньку — караоке.
</p>
</div>
</div>
<div className={ Styles.item }>
<div className={ Styles.image } style={ imageStyle }/>
<div className={ Styles.info }>
<h3 className={ Styles.title }>5 хвилин для вічності</h3>
<p className={ Styles.description }>
Малюваки — дитяча пізнавальна програма,
де слухають захопливі історії, вчаться малювати,
а ще співають щоразу нову пісеньку — караоке.
</p>
</div>
</div>
<div className={ Styles.item }>
<div className={ Styles.image } style={ imageStyle }/>
<div className={ Styles.info }>
<h3 className={ Styles.title }>Спасенні</h3>
<p className={ Styles.description }>
Малюваки — дитяча пізнавальна програма,
де слухають захопливі історії, вчаться малювати,
а ще співають щоразу нову пісеньку — караоке.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
);
}

Common.propTypes = {
mediaType: PropTypes.string.isRequired
};
Loading