微信小程序todo list

效果顯示

todo-list.gif

幾個(gè)技能點(diǎn)

  1. 點(diǎn)擊view切換可編輯狀態(tài)的input排惨,回車(chē)后运准,要回到文本模式
  2. 將bindtap改為catchtap幌氮,阻止與checkbox沖突
  3. 注意sort()函數(shù)的坑,是按字符ascii排序胁澳,而非數(shù)值大小该互,所以要傳遞sort()排序回調(diào)方法

代碼

代碼里有詳情的注釋?zhuān)暾a托管在git,https://gitee.com/laeser/demo-weapp
)

JS文件

Page({
  data: {
    todos: [
      {
        title: '明天9點(diǎn)打電話給老張'
      },
      {
        title: '打電話給老王'
      },
      {
        title: '打電話'
      }
    ]
  },
  onLoad() {
    // 調(diào)用模擬數(shù)據(jù)代碼韭畸,需要時(shí)打開(kāi)下面的注釋
    // this.mock()
  },
  // 模擬長(zhǎng)列表數(shù)據(jù)源
  mock() {
    // 生成12行數(shù)據(jù)宇智,看底部刪除按鈕是否正常
    const todos = []
    for (let index = 0; index < 12; index++) {
      todos.push({
        title: index
      })
    }
    // 保存數(shù)據(jù)源
    this.setData({
      todos: todos
    })
  },
  add(e) {
    // 獲取文本框里的內(nèi)容
    const title = e.detail.value
    // 如果文本為空,給出toast提示
    if (!title) {
      wx.showToast({
        title: '請(qǐng)輸入內(nèi)容'
      })
      return
    }
    // 獲取原來(lái)數(shù)據(jù)源
    let todos = this.data.todos
    // 構(gòu)建todo對(duì)象
    let todo = {
      title: title
    }
    // 向數(shù)組最后添加一個(gè)元素
    todos.push(todo)
    // 保存數(shù)據(jù)源
    this.setData({
      todos: todos,
      title: ''
    })
  },
  editing(e) {
    // 獲取當(dāng)時(shí)點(diǎn)擊的是第n個(gè)元素
    const index = e.currentTarget.dataset.index
    // 設(shè)定currentIndex值胰丁,讓當(dāng)前的文本框高亮
    this.setData({
      currentIndex: index
    })
  },
  edit(e) {
    // 獲取input組件上的取值
    const title = e.detail.value
    // 設(shè)定currentIndex值随橘,改變它的聚會(huì)
    const index = e.currentTarget.dataset.index
    // 獲取原來(lái)數(shù)據(jù)源
    let todos = this.data.todos
    // 修改當(dāng)前元素的title值
    todos[index].title = title
    // 保存數(shù)據(jù)源
    this.setData({
      todos: todos,
      currentIndex: -1
    })
  },
  // 勾選事件
  checkboxChange(e) {
    // 取出當(dāng)前復(fù)選框的值
    const values = e.detail.value
    // 保存數(shù)據(jù)源
    this.setData({
      checkIndices: values
    })
  },
  // 批量刪除
  deleteAll() {
    const checkIndices = this.data.checkIndices
    // 判斷是不是數(shù)組,并且元素個(gè)數(shù)大于1
    if (Array.isArray(checkIndices) && checkIndices.length > 0) {
      // 刪除確認(rèn)
      wx.showModal({
        title: '確定刪除嗎锦庸?',
        success: ({ confirm }) => {
          if (confirm) {
            // 從后往前遍歷机蔗,不會(huì)造成index錯(cuò)亂
            let todos = this.data.todos
            for (let i = checkIndices.length - 1; i >= 0; i--) {}
            // 注意sort原生是按string的ascii排序,會(huì)造成1,11,2這樣一系列數(shù)據(jù)排序不合預(yù)期
            checkIndices
              .sort((a, b) => {
                return a - b
              })
              .reverse()
            // 逆序后就可以逐一刪除元素
            checkIndices.forEach(item => {
              todos.splice(item, 1)
            })
            // 保存數(shù)據(jù)源萝嘁,同時(shí)checkIndices將它復(fù)位
            this.setData({
              todos: todos,
              checkIndices: []
            })
            // 給出提示框
            wx.showToast({
              title: '刪除成功'
            })
          }
        }
      })
    } else {
      wx.showToast({
        title: '請(qǐng)先勾選'
      })
    }
  },
  // 失去焦點(diǎn)事件
  bindblur(e) {
    // 列表中的文本框失去焦點(diǎn)時(shí)梆掸,currentIndex復(fù)位,讓它們?nèi)炕氐轿锤吡恋臓顟B(tài)
    this.setData({
      currentIndex: -1
    })
  }
})

wxml文件

<!-- 操作區(qū)域主體內(nèi)容 -->
<view class="main">
  <input type="text" name="title" value="{{title}}" class="add" placeholder="請(qǐng)輸入記錄內(nèi)容" confirm-type="done" placeholder-class="input-placeholder" auto-focus bindconfirm="add" />
  <!-- 使用checkbox-group作為容器牙言,方便勾選 -->
  <checkbox-group bindchange="checkboxChange">
    <!-- 遍歷數(shù)據(jù)源 -->
    <label wx:for="{{todos}}" class="list" wx:key="">
      <!-- 復(fù)選按鈕酸钦,取值就是index值,回傳checkbox改變事件回調(diào) -->
      <checkbox value="{{index}}" checked="{{item.checked}}" />
      <!-- 文本框咱枉,由于currentIndex的存在而具有高亮狀態(tài) -->
      <input name="editor" catchtap="editing" data-index="{{index}}" value="{{item.title}}" disabled="{{currentIndex !== index}}" focus="{{currentIndex === index}}" class="input-common {{currentIndex !== index ? 'input-disabled' : 'input-enabled'}}" bindconfirm="edit" bindblur="bindblur" />
    </label>
  </checkbox-group>
</view>
<!-- 刪除按鈕容器 -->
<view class="delete-container">
  <button type="warn" class="delete-all" bindtap="deleteAll">刪除</button>
</view>

wxss文件

/* 主體區(qū)域的樣式卑硫,設(shè)定內(nèi)外邊距 */
.main {
  padding: 0 10px;
  margin-top: 10px;
  margin-bottom: 60px;
}

/* 文本框通用樣式 */
input {
  color: #666;
  border: 1px solid #999;
  border-radius: 4px;
  padding: 6px;
}

/* 文本框placeholder占位字符的樣式 */
input.input-placeholder {
  color: #999;
}

/* 頁(yè)首添加用文本框背景色 */
.add {
  background-color: white;
}

/* 文本內(nèi)容的flex布局 */
.list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
}

/* 不論高亮與否都需要具備的樣式 */
.input-common {
  color: #000;
  flex: 1;
}

/* 非高亮?xí)r的樣式 */
.input-disabled {
  border: 1px solid #F8F8F8
}

/* 高亮?xí)r的樣式 */
 .input-enabled {
  background: white;
}

view.delete-container {
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0px;
  width: 100%;
  text-align: center;
  background-color: #F8F8F8;
}

button.delete-all {
  margin: 10px;
}

關(guān)注我

歡迎關(guān)注訂閱號(hào)【黃秀杰】

mp
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市庞钢,隨后出現(xiàn)的幾起案子拔恰,更是在濱河造成了極大的恐慌,老刑警劉巖基括,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件颜懊,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡风皿,警方通過(guò)查閱死者的電腦和手機(jī)河爹,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)桐款,“玉大人咸这,你說(shuō)我怎么就攤上這事∧д#” “怎么了媳维?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)遏暴。 經(jīng)常有香客問(wèn)我侄刽,道長(zhǎng),這世上最難降的妖魔是什么朋凉? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任州丹,我火速辦了婚禮,結(jié)果婚禮上杂彭,老公的妹妹穿的比我還像新娘墓毒。我一直安慰自己,他們只是感情好亲怠,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布所计。 她就那樣靜靜地躺著,像睡著了一般团秽。 火紅的嫁衣襯著肌膚如雪主胧。 梳的紋絲不亂的頭發(fā)上钾腺,一...
    開(kāi)封第一講書(shū)人閱讀 49,166評(píng)論 1 284
  • 那天,我揣著相機(jī)與錄音讥裤,去河邊找鬼。 笑死姻报,一個(gè)胖子當(dāng)著我的面吹牛己英,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播吴旋,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼损肛,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了荣瑟?” 一聲冷哼從身側(cè)響起治拿,我...
    開(kāi)封第一講書(shū)人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎笆焰,沒(méi)想到半個(gè)月后劫谅,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡嚷掠,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年捏检,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片不皆。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡贯城,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出霹娄,到底是詐尸還是另有隱情能犯,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布犬耻,位于F島的核電站踩晶,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏香追。R本人自食惡果不足惜合瓢,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望透典。 院中可真熱鬧晴楔,春花似錦、人聲如沸峭咒。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)凑队。三九已至则果,卻和暖如春幔翰,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背西壮。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工遗增, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人款青。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓做修,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親抡草。 傳聞我的和親對(duì)象是個(gè)殘疾皇子饰及,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容