Skip to content
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
6 changes: 6 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"presets": [
"es2015",
"react"
]
}
6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/**
* Created by tema on 27.11.16.
*/

const express = require('express');

const app = express();

app.use('/', express.static(`${__dirname}/prod`));
app.use('/css', express.static(`${__dirname}/prod/css`));
app.use('/js', express.static(`${__dirname}/prod/js`));

const port = process.env.PORT || 5000;
app.listen(port, () => {
console.log(`Listening on ${port}`);
});
43 changes: 43 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"name": "react-homework",
"version": "1.0.0",
"description": "Реализовать todomvc из прошлого домашнего задания на чистом React",
"main": "index.js",
"dependencies": {
"express": "^4.14.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"todomvc-app-css": "^2.0.6",
"todomvc-common": "^1.0.3",
"webpack": "^1.14.0",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"jsx-loader": "^0.13.2",
"react-hot-loader": "^1.3.1",
"style-loader": "^0.13.1"
},
"devDependencies": {
"webpack-dev-server": "^1.16.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --hot --inline --history-api-fallback",
"postinstall": "webpack --config ./webpack-prod.config.js --progress --colors",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artmaks/react-homework.git"
},
"author": "artem",
"license": "ISC",
"bugs": {
"url": "https://github.com/artmaks/react-homework/issues"
},
"homepage": "https://github.com/artmaks/react-homework#readme"
}
13 changes: 13 additions & 0 deletions prod/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Your app name</title>
<meta charset="utf-8">
<link href="./css/styles.css" rel="stylesheet" type="text/css"/>

</head>
<body>
<div id="app"></div>
<script src="./js/app.js"></script>
</body>
</html>
74 changes: 74 additions & 0 deletions src/components/Footer/Footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
.footer {
color: #777;
padding: 10px 15px;
height: 20px;
text-align: center;
border-top: 1px solid #e6e6e6;
}

.footer:before {
content: '';
position: absolute;
right: 0;
bottom: 0;
left: 0;
height: 50px;
overflow: hidden;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2),
0 8px 0 -3px #f6f6f6,
0 9px 1px -3px rgba(0, 0, 0, 0.2),
0 16px 0 -6px #f6f6f6,
0 17px 2px -6px rgba(0, 0, 0, 0.2);
}

.todo-count {
float: left;
text-align: left;
}

.todo-count strong {
font-weight: 300;
}

.filters {
margin: 0;
padding: 0;
list-style: none;
position: absolute;
right: 0;
left: 0;
}

.filters li {
display: inline;
}

.filters li a {
color: inherit;
margin: 3px;
padding: 3px 7px;
text-decoration: none;
border: 1px solid transparent;
border-radius: 3px;
}

.filters li a:hover {
border-color: rgba(175, 47, 47, 0.1);
}

.filters li a.selected {
border-color: rgba(175, 47, 47, 0.2);
}

.clear-completed,
html .clear-completed:active {
float: right;
position: relative;
line-height: 20px;
text-decoration: none;
cursor: pointer;
}

.clear-completed:hover {
text-decoration: underline;
}
39 changes: 39 additions & 0 deletions src/components/Footer/Footer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import React, {Component} from 'react';
require("./Footer.css");


export default class Footer extends Component {

showAll() {
this.props.setFilter('all');
}

showActive() {
this.props.setFilter('active');
}

showCompleted() {
this.props.setFilter('completed');
}

render() {
return (
<footer className="footer">
<span className="todo-count"><strong>{this.props.itemsLeft}</strong> items left</span>
<ul className="filters">
<li>
<a onClick={this.showAll.bind(this)} className={this.props.filter === 'all' ? "selected" : ''} href="#">All</a>
</li>
<li>
<a onClick={this.showActive.bind(this)} className={this.props.filter === 'active' ? "selected" : ''} href="#">Active</a>
</li>
<li>
<a onClick={this.showCompleted.bind(this)} className={this.props.filter === 'completed' ? "selected" : ''} href="#">Completed</a>
</li>
</ul>
<button className="clear-completed" onClick={this.props.clearCompleted}>Clear completed</button>
</footer>

);
}
}
12 changes: 12 additions & 0 deletions src/components/Header/Header.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.header h1 {
position: absolute;
top: -155px;
width: 100%;
font-size: 100px;
font-weight: 100;
text-align: center;
color: rgba(175, 47, 47, 0.15);
-webkit-text-rendering: optimizeLegibility;
-moz-text-rendering: optimizeLegibility;
text-rendering: optimizeLegibility;
}
15 changes: 15 additions & 0 deletions src/components/Header/Header.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React, { Component } from 'react';
import LargeInput from './../LargeInput/LargeInput'
require("./Header.css");


export default class Header extends Component {
render() {
return (
<div className='header'>
<h1>todos</h1>
<LargeInput inputText={this.props.inputText} onTextChange={this.props.onTextChange} onAddTodo={this.props.onAddTodo} />
</div>
);
}
}
25 changes: 25 additions & 0 deletions src/components/LargeInput/LargeInput.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
.new-todo,
.edit {
position: relative;
margin: 0;
width: 100%;
font-size: 24px;
font-family: inherit;
font-weight: inherit;
line-height: 1.4em;
border: 0;
color: inherit;
padding: 6px;
border: 1px solid #999;
box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.new-todo {
padding: 16px 16px 16px 60px;
border: none;
background: rgba(0, 0, 0, 0.003);
box-shadow: inset 0 -2px 1px rgba(0,0,0,0.03);
}
17 changes: 17 additions & 0 deletions src/components/LargeInput/LargeInput.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React, { Component } from 'react';
require("./LargeInput.css");

export default class LargeInput extends Component {

AddTodoKeyPress(e) {
if (e.keyCode == 13) {
this.props.onAddTodo(e);
}
}

render() {
return (
<input className="new-todo" value={this.props.inputText} onChange={this.props.onTextChange} onKeyDown={this.AddTodoKeyPress.bind(this)}/>
);
}
}
97 changes: 97 additions & 0 deletions src/components/Todo/Todo.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
.todo-list li {
position: relative;
font-size: 24px;
border-bottom: 1px solid #ededed;
}

.todo-list li:last-child {
border-bottom: none;
}

.todo-list li.editing {
border-bottom: none;
padding: 0;
}

.todo-list li.editing .edit {
display: block;
width: 506px;
padding: 12px 16px;
margin: 0 0 0 43px;
}

.todo-list li.editing .view {
display: none;
}

.todo-list li .toggle {
text-align: center;
width: 40px;
/* auto, since non-WebKit browsers doesn't support input styling */
height: auto;
position: absolute;
top: 0;
bottom: 0;
margin: auto 0;
border: none; /* Mobile Safari */
-webkit-appearance: none;
appearance: none;
}

.todo-list li .toggle:after {
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#ededed" stroke-width="3"/></svg>');
}

.todo-list li .toggle:checked:after {
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#bddad5" stroke-width="3"/><path fill="#5dc2af" d="M72 25L42 71 27 56l-4 4 20 20 34-52z"/></svg>');
}

.todo-list li label {
word-break: break-all;
padding: 15px 60px 15px 15px;
margin-left: 45px;
display: block;
line-height: 1.2;
transition: color 0.4s;
}

.todo-list li.completed label {
color: #d9d9d9;
text-decoration: line-through;
}

.todo-list li .destroy {
display: none;
position: absolute;
top: 0;
right: 10px;
bottom: 0;
width: 40px;
height: 40px;
margin: auto 0;
font-size: 30px;
color: #cc9a9a;
margin-bottom: 11px;
transition: color 0.2s ease-out;
}

.todo-list li .destroy:hover {
color: #af5b5e;
cursor: pointer;
}

.todo-list li .destroy:after {
content: '×';
}

.todo-list li:hover .destroy {
display: block;
}

.todo-list li .edit {
display: none;
}

.todo-list li.editing:last-child {
margin-bottom: -1px;
}
Loading