work finished through 2b on exercise checklist

main
Jason 3 years ago
parent b18ee4e062
commit 8673a7fdad

@ -19,11 +19,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge"> <meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hack or Snooze</title> <title>Hack or Snooze</title>
<link <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
rel="stylesheet" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous">
<link rel="stylesheet" href="css/site.css"> <link rel="stylesheet" href="css/site.css">
<link rel="stylesheet" href="css/user.css"> <link rel="stylesheet" href="css/user.css">
<link rel="stylesheet" href="css/stories.css"> <link rel="stylesheet" href="css/stories.css">
@ -32,8 +29,8 @@
<body> <body>
<!-- top navigation bar --> <!-- top navigation bar -->
<nav> <nav>
<div class="navbar-brand"> <div class="navbar-brand">
<a class="nav-link" href="#" id="nav-all">Hack or Snooze</a> <a class="nav-link" href="#" id="nav-all">Hack or Snooze</a>
</div> </div>
@ -45,10 +42,10 @@
<a class="nav-link" href="#" id="nav-user-profile"></a> <a class="nav-link" href="#" id="nav-user-profile"></a>
<a class="hidden" id="nav-logout" href="#"><small>(logout)</small></a> <a class="hidden" id="nav-logout" href="#"><small>(logout)</small></a>
</div> </div>
</nav> </nav>
<!-- area for stories (all stories, user stories, favorites) --> <!-- area for stories (all stories, user stories, favorites) -->
<section class="stories-container container"> <section class="stories-container container">
<!-- loading message (removed by JS after stories loaded) --> <!-- loading message (removed by JS after stories loaded) -->
<div id="stories-loading-msg">Loading&hellip;</div> <div id="stories-loading-msg">Loading&hellip;</div>
@ -56,11 +53,12 @@
<!-- List of all stories --> <!-- List of all stories -->
<ol id="all-stories-list" class="stories-list"></ol> <ol id="all-stories-list" class="stories-list"></ol>
</section> </section>
<!-- Login and signup forms --> <!-- Login and signup and add story forms -->
<section class="account-forms-container container"> <section class="account-forms-container container">
<!--add story form-->
<form id="add-story-form" class="add-story hidden"> <form id="add-story-form" class="add-story hidden">
<h4>Add a story</h4> <h4>Add a story</h4>
<label for="story-title">Title: </label> <label for="story-title">Title: </label>
@ -104,17 +102,18 @@
</div> </div>
<button type="submit">create account</button> <button type="submit">create account</button>
</form> </form>
</section> </section>
<!-- Library JS & our JS --> <!-- Library JS & our JS -->
<script src="https://unpkg.com/jquery"></script> <script src="https://unpkg.com/jquery"></script>
<script src="https://unpkg.com/axios/dist/axios.js"></script> <script src="https://unpkg.com/axios/dist/axios.js"></script>
<script src="js/models.js"></script> <script src="js/models.js"></script>
<script src="js/main.js"></script> <script src="js/main.js"></script>
<script src="js/nav.js"></script> <script src="js/nav.js"></script>
<script src="js/user.js"></script> <script src="js/user.js"></script>
<script src="js/stories.js"></script> <script src="js/stories.js"></script>
</body> </body>
</html> </html>

@ -73,13 +73,17 @@ async function getNewStoryAndSubmit(evt) {
title: title, title: title,
author: author, author: author,
url: url url: url
} };
// instantiate a Story with obj and display on page // instantiate a Story with obj and display on page
const resultOfAddStoryCall = await storyList.addStory(currentUser, newStory); const resultOfAddStoryCall = await storyList.addStory(currentUser, newStory);
console.log("resultOfAddStoryCall: ", resultOfAddStoryCall); console.log("resultOfAddStoryCall: ", resultOfAddStoryCall);
hidePageComponents(); hidePageComponents();
putStoriesOnPage(); await getAndShowStoriesOnStart();
//resets form with empty values
$addStoryForm.trigger("reset");
} }
//event listener for add story form submit
$addStoryForm.on("submit", getNewStoryAndSubmit); $addStoryForm.on("submit", getNewStoryAndSubmit);
Loading…
Cancel
Save