9. 作業

待辦事項(To-Do List)

javascript 資料夾中,建立 assignment 資料夾。然後在 assignment 資料夾內,建立以下資料夾及檔案:

  • index.html

  • css/index.css

  • js/index.js

建議執行順序:

介面1 → 介面2 → 資料1 → 資料2 → 介面3 → 資料3 → 介面4 → 資料4 → 介面5 → 資料5 → 介面6 → 資料6。

介面

第一步:基本介面及 text 欄位事件

提供 html 及 CSS:

<article class="task_container">
  <h1 class="title1">任務管理</h1>

  <div class="task_add_block">
    <input type="text" class="task_name" placeholder="輸入待辦事項…">
    <button type="button" class="task_add">新增</button>
  </div>

  <div class="task_list_parent">
    <ul class="task_list">
    </ul>
  </div>
</article>

完成以下項目:

  • index.html 頁面需載入 index.jsindex.css 檔。

  • input.task_name 在 focus 事件觸發時,div.task_add_block 加上 -on class。

  • input.task_name 在 blur 事件觸發時,div.task_add_block 移除 -on class。

結果示意:

第二步:新增待辦事項

更新 html、css:

<!-- 載入 Font Awesome -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js"></script>

新增「待辦事項」的 html:

<li>
  <div class="item_flex">
    <div class="left_block">
      <div class="btn_flex">
        <button type="button" class="btn_up">往上</button>
        <button type="button" class="btn_down">往下</button>
      </div>
    </div>
    <div class="middle_block">
      <div class="star_block">
        <span class="star" data-star="1"><i class="fas fa-star"></i></span>
        <span class="star" data-star="2"><i class="fas fa-star"></i></span>
        <span class="star" data-star="3"><i class="fas fa-star"></i></span>
        <span class="star" data-star="4"><i class="fas fa-star"></i></span>
        <span class="star" data-star="5"><i class="fas fa-star"></i></span>
      </div>
      <p class="para">這是任務這是任務這是任務這是任務這是任務這是任務這是任務這是任務這是任務這是任務這是任務這是任務</p>
    </div>
    <div class="right_block">
      <div class="btn_flex">
        <button type="button" class="btn_update">更新</button>
        <button type="button" class="btn_delete">移除</button>
      </div>
    </div>
  </div>
</li>

完成以下項目:

  • 按下「新增」按鈕時,將以上的待辦事項 html,新增到 ul.task_list 裡面的最前面。

  • 如果沒有輸入待辦事項,按「新增」的話,不能有任何反應。

  • 新增成功的話,待辦事項欄位要清空。

  • 輸入的待辦事項,如果文字的最左邊、最右邊有空格,需移除。(語法:JS 內建的 trim() 函式)。

  • 按下「Enter」鍵,也要能新增待辦事項。

結果示意:

第三步:移除與清空

更新 index.html:

將以下這行放到 h1 標籤之前:

<button type="button" class="btn_empty">清空</button>

更新 index.css:

/* ===== 清空按鈕 ===== */
button.btn_empty{
  float: right;
  background: none;
  background-color: white;
  padding: 0;
  margin: 0;
  border: 1px solid lightgray;
  border-radius: 3px;
  height: 30px;
  width: 50px;
  outline: none;
  font-size: 1.6rem;
  cursor: pointer;
}

完成以下項目:

  • 按下「移除」按鈕,需詢問使用者是否要移除,若確定的話,ul.task_list 裡的第一層子元素 li 標籤,加上 fade_out 這個 class,就會淡出 1 秒,然後請移除該筆待辦事項。

  • 按下「清空」按鈕,需詢問使用者是否要清空,若確定的話,ul.task_list 裡的第一層子元素 li 標籤,加上 fade_out 這個 class,就會淡出 1 秒,然後請清除全部的待辦事項。

結果示意:

第四步:更新待辦事項

index.js 檔案更新,待辦事項更新以下結構,以老師自己寫的為例,有以下這行:

<p class="para">${item.name}</p>;

在其下方,加上這行(留意有加上 -none 這個 class,即預設是消失狀態):

<input type="text" class="task_name_update -none" placeholder="更新待辦事項…" value="${item.name}">

更新 index.css:

div.middle_block input.task_name_update{
  width: 100%;
  border: 1px solid lightgray;
  border-radius: 3px 0 0 3px;
  height: 40px;
  font-size: 2rem;
  padding: 5px 10px;
  outline: none;
}
div.middle_block input.task_name_update::placeholder{
  color: lightgray;
}

.-none{
  display: none;
}

完成以下項目:

  • 按下「更新」按鈕,出現一般文字框,然後可以更新。

  • 再按下「更新」按鈕,回到不可編輯的狀態,但待辦事項要是更新的。

  • 如果所更新的待辦事項,沒有輸入文字,跳出提醒視窗(alert),顯示「請輸入待辦事項」。

  • 待辦事項的文字若最左邊、最右邊有空格的話,需移除。

結果示意:

第五步:排序

更新 index.css:

div.task_list_parent ul.task_list > li:first-child button.btn_up{
  background-color: lightgray !important;
  cursor: not-allowed !important;
  color: gray;
}
div.task_list_parent ul.task_list > li:last-child button.btn_down{
  background-color: lightgray !important;
  cursor: not-allowed !important;
  color: gray;
}

完成以下項目:

  • 按下「往上」按鈕,與上面的待辦事項對調。(註:每個待辦事項是以 li 為單位。)

  • 按下「往下」按鈕,與下面的待辦事項對調。

  • 第一個的待辦事項,「往上」按鈕按了要沒反應;最後一個的待辦事項,「往下」按鈕按了要沒反應。

結果示意:

第六步:重要性的星號

更新 index.css:

/* ===== 重要性的星號 ===== */
div.star_block{
  display: inline-block;
}
div.star_block > span.star{
  cursor: pointer;
  display: inline-block;
  margin-right: 3px;
}
div.star_block > span.star.-on{
  color: yellow;
}

完成以下項目:

  • 點擊星號的時候,該星號加上 -on 這個 class,然後該筆待辦事項,星號數( data-star )小於等於點擊的星號數的話,也要加上 -on 這個 class;反之則移除。

結果示意:

資料更新至 localStorage

第一步:新增資料至 localStorage

資料儲存至 localStorage,提供參考原始碼如下:

let item_id = Date.now(); // timestamp 當做該項的 id

// 儲存到 localStorage
let task = {
  "item_id": item_id,
  "name": task_text, // 新增的待辦事項文字
  "star": 0 // 預設 0
};
let tasks = JSON.parse(localStorage.getItem("tasks"));
if(tasks){ // 若存在
  tasks.unshift(task);
}else{ // 若不存在
  tasks = [task];
}
localStorage.setItem("tasks", JSON.stringify(tasks));

第二步:從 localStorage 取得資料

提示:頁面 DOMContentLoaded 事件發生之後,執行某個函式(例:get_tasks()),這段函式用途是將 localStorage 裡的資料抓出來,然後進行資料的處理,拼裝完 html 之後,再丟回到頁面上:

在 DOMContentLoaded 事件發生之後,執行以下程式:

document.addEventListener("DOMContentLoaded", function(){

  get_tasks(); // DOMContentLoaded 事件發生時,執行這裡的程式
  
});

第三步:移除 localStorage 裡的資料

提示:先認識 陣列.filter() 函式:https://codepen.io/carlos411/pen/RwBmybr

移除 localStorage 中的單筆待辦事項:

// 抓取待辦事項的 id
let item_id = e.target.closest("li").getAttribute("data-id");

// 從 localStorage 取得資料
let tasks = JSON.parse(localStorage.getItem("tasks"));

let updated_tasks = tasks.filter(function(item, i){
  return item_id != item.item_id;
});

// 回存至 localStorage
localStorage.setItem("tasks", JSON.stringify(updated_tasks));

清空 localStorage 所有的資料,內建就有的程式語法:

localStorage.clear();

第四步:更新 localStorage 中,name 的資料

提示:將待辦事項從 localStorage 裡全部抓出來,然後跑迴圈,然後找到欲更新的待辦事項,將 name 換掉,然後回存至 localStorage,部份原始碼:

// 取得待辦事項的 id
let item_id = e.target.closest("li").getAttribute("data-id");
// 從 localStorage 取得資料
let tasks = JSON.parse(localStorage.getItem("tasks"));
tasks.forEach(function(task, i){
  
});
// 回存至 localStorage
localStorage.setItem("tasks", JSON.stringify(tasks));

第五步:更新 localStorage 中的排序

提供寫好的參考原始碼:

function items_sort(item_id, direction){

  let tasks = JSON.parse(localStorage.getItem("tasks"));

  if(direction == "up"){ // 往上
    for(let i = 0; i < tasks.length; i++){
      if(item_id == tasks[i].item_id){
        [tasks[i - 1], tasks[i]] = [tasks[i], tasks[i - 1]];
        break;
      }
    }
  }

  if(direction == "down"){ // 往下
    for(let i = 0; i < tasks.length; i++){
      if(item_id == tasks[i].item_id){
        [tasks[i], tasks[i + 1]] = [tasks[i + 1], tasks[i]];
        break;
      }
    }
  }

  localStorage.setItem("tasks", JSON.stringify(tasks));
}

第六步:更新 localStorage 中,star 的資料

仿照第四步更新 name 的部份,很類似。提供部份原始碼:

// 取得待辦事項的 id
let item_id = span_el.closest("li").getAttribute("data-id");

// 從 localStorage 取得資料
let tasks = JSON.parse(localStorage.getItem("tasks"));
tasks.forEach(function(task, i){
  
});

// 回存至 localStorage
localStorage.setItem("tasks", JSON.stringify(tasks));

完成。

繳交期限

0/(日) 晚上 點之前繳交。

繳交方式

assignment 資料夾,壓成一個壓縮檔,然後繳交至 Tibame 後台。

前端班後台網址:https://frontend.tibame.com/

JAVA班後台網址:https://java.tibame.com/

參考作法

Last updated