Compare commits
No commits in common. "e3a4b1d5f16b29801192fd37e1403f0882286cec" and "2e14a05a73dc0ae024d429cd8988b33818d5db89" have entirely different histories.
e3a4b1d5f1
...
2e14a05a73
5 changed files with 27 additions and 98 deletions
|
@ -1,25 +1,20 @@
|
|||
//import "./App.css";
|
||||
import { useState } from "react";
|
||||
import Feed from "./components/feed";
|
||||
import ChangeLogInput from "./components/changeLogInput";
|
||||
|
||||
function App() {
|
||||
const [feed, setFeed] = useState(tempData);
|
||||
const [logInput, setLogInput] = useState("");
|
||||
|
||||
return (
|
||||
<>
|
||||
<ChangeLogInput
|
||||
setLogInput={setLogInput}
|
||||
logInput={logInput}
|
||||
feed={feed}
|
||||
setFeed={setFeed}
|
||||
/>
|
||||
<Feed entries={feed} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
//body={item.body}
|
||||
//topics={item.topics}
|
||||
//date={item.date}
|
||||
|
||||
const tempData = [
|
||||
{
|
||||
body: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec vitae nibh velit. Vivamus maximus elit et eleifend hendrerit. Praesent ac metus eget risus accumsan finibus. Cras tempor dignissim dolor, ut tempus tortor interdum non. Sed sit amet fringilla turpis. Sed congue feugiat orci, vel iaculis libero venenatis eu.",
|
||||
|
|
|
@ -1,39 +0,0 @@
|
|||
import PropTypes from "prop-types";
|
||||
import styles from "./changeLogInput.module.css";
|
||||
|
||||
const ChangeLogInput = (props) => {
|
||||
const handleClick = (e) => {
|
||||
const newEntry = {
|
||||
body: props.logInput,
|
||||
topics: ["test"],
|
||||
date: new Date().toLocaleDateString(),
|
||||
id: crypto.randomUUID(),
|
||||
};
|
||||
|
||||
props.setFeed([newEntry, ...props.feed]);
|
||||
props.setLogInput("");
|
||||
};
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<textarea
|
||||
rows="1"
|
||||
placeholder="What did you change..."
|
||||
className={styles.input}
|
||||
onChange={(e) => props.setLogInput(e.target.value)}
|
||||
value={props.logInput}
|
||||
/>
|
||||
<button onClick={handleClick} className={styles.btn}>
|
||||
Submit
|
||||
</button>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
ChangeLogInput.propTypes = {
|
||||
setLogInput: PropTypes.func,
|
||||
logInput: PropTypes.string,
|
||||
feed: PropTypes.array,
|
||||
setFeed: PropTypes.func,
|
||||
};
|
||||
|
||||
export default ChangeLogInput;
|
|
@ -1,45 +0,0 @@
|
|||
.container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.input {
|
||||
outline: 1px solid black;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.btn {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
/*.inputSizer {*/
|
||||
/* display: inline-grid;*/
|
||||
/* vertical-align: top;*/
|
||||
/* align-items: center;*/
|
||||
/* position: relative;*/
|
||||
/**/
|
||||
/* &.stacked {*/
|
||||
/* align-items: stretch;*/
|
||||
/**/
|
||||
/* &::after,*/
|
||||
/* textarea {*/
|
||||
/* grid-area: 2 / 1;*/
|
||||
/* }*/
|
||||
/* }*/
|
||||
/* &::after,*/
|
||||
/* textarea {*/
|
||||
/* width: auto;*/
|
||||
/* grid-area: 1 / 2;*/
|
||||
/* resize: none;*/
|
||||
/* background: none;*/
|
||||
/* appearance: none;*/
|
||||
/* border: none;*/
|
||||
/* }*/
|
||||
/* &::after {*/
|
||||
/* content: attr(data-value) " ";*/
|
||||
/* visibility: hidden;*/
|
||||
/* white-space: pre-wrap;*/
|
||||
/* }*/
|
||||
/*}*/
|
|
@ -12,7 +12,6 @@
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 0 1 60%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cardBottom {
|
||||
|
|
|
@ -21,7 +21,26 @@ body {
|
|||
/*min-height: 100vh;*/
|
||||
}
|
||||
|
||||
/*h1 {*/
|
||||
/* font-size: 3.2em;*/
|
||||
/* line-height: 1.1;*/
|
||||
/*}*/
|
||||
h1 {
|
||||
font-size: 3.2em;
|
||||
line-height: 1.1;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 8px;
|
||||
border: 1px solid transparent;
|
||||
padding: 0.6em 1.2em;
|
||||
font-size: 1em;
|
||||
font-weight: 500;
|
||||
font-family: inherit;
|
||||
background-color: #1a1a1a;
|
||||
cursor: pointer;
|
||||
transition: border-color 0.25s;
|
||||
}
|
||||
button:hover {
|
||||
border-color: #646cff;
|
||||
}
|
||||
button:focus,
|
||||
button:focus-visible {
|
||||
outline: 4px auto -webkit-focus-ring-color;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue