首页 > 其他分享 >HarmonyOS-基础之联系人案例

HarmonyOS-基础之联系人案例

时间:2024-04-12 23:14:12浏览次数:13  
标签:false Contacts contacts 联系人 isShow 案例 HarmonyOS boolean

使用前面学习的相关组件和api实现联系人的CRUD; 效果如下

image

父组件
import { Contacts } from '../domain/Model'
import ContactsItem from '../components/ContactsItem'

@Entry
@Component
struct ContactsExample {
  // 联系人数组
  @State contactsArr: Contacts[] = [
    new Contacts(1, '张三丰', false, false, '18898789098', false),
    new Contacts(2, '张无忌', false, false, '15876768989', false)
  ]
  // 复选框|删除按钮 显示与隐藏
  @State isShow: boolean = false
  @State next: number = 1000

  build() {
    Column() {

      // 顶部
      Row() {
        Text('联系人').fontSize(20)
        Blank()
        Button(this.isShow ? '取消' : '选择').onClick(() => {
          this.isShow = !this.isShow
        })
        Button('+').margin({ left: 10 }).onClick(() => {
          this.contactsArr.push(new Contacts(this.next++, Math.random().toFixed(3)
            .toString(), false, false, `1899898${this.next}`, false))
        })
      }.width('100%')

      // body 联系人信息
      List({ space: 5 }) {
        ForEach(this.contactsArr, (contacts: Contacts, index: number) => {
          ListItem() {
            ContactsItem({ contacts: contacts, isShow: $isShow })
          }
        }, (contacts: Contacts) => contacts.id.toString())
      }.margin({ top: 20 }).layoutWeight(1)

      if (this.isShow) {
        // 底部
        Button('删除')
          .backgroundColor(Color.Red)
          .type(ButtonType.Normal)
          .onClick(() => {
            this.contactsArr = this.contactsArr.filter(item => !item.isSelect)
          })
      }
    }.width('100%')
    .padding(20)
  }
}
子组件
// 联系人组件
import { Contacts } from '../domain/Model'

@Component
export default struct ContactsItem {
  @ObjectLink contacts: Contacts
  @Link isShow: boolean

  build() {
    Column() {
      // 联系人 | 收藏
      Row({ space: 5 }) {
        if (this.isShow) {
          // 复选框
          Checkbox().select(this.contacts.isSelect).onChange((val) => {
            console.log(val + "")
            this.contacts.isSelect = val
          })
        }
        // 头像
        Image($rawfile('avatar.jpg')).width(30).height(30)
        // 联系人名称
        Text(this.contacts.name)
        Blank()
        // 收藏按钮
        Image($rawfile(this.contacts.isSave ? 'collection.png' : 'cancel_collection.png'))
          .width(30)
          .height(30)
          .onClick(() => {
            console.log(this.contacts.isSave + "")
            this.contacts.isSave = !this.contacts.isSave
          })
      }.width('100%')
      .onClick(() => {
        this.contacts.isExpand = !this.contacts.isExpand
      })
      // 分割线
      Divider().strokeWidth(3).margin({ top: 5 })
      if (this.contacts.isExpand) {
        Row() {
          Text('联系人:')
          Text(this.contacts.phone)
        }.width('100%')
      }
    }.width('100%')
    .margin({ top: 10 })
  }
}
模型(class类)
@Observed
export class Contacts {
  id: number
  name: string
  isSelect: boolean
  isSave: boolean
  phone: string
  isExpand: boolean

  constructor(id: number, name: string, isSelect: boolean, isSave: boolean, phone: string, isExpand: boolean) {
    this.id = id
    this.name = name
    this.isSelect = isSelect
    this.isSave = isSave
    this.phone = phone
    this.isExpand = isExpand
  }
}

标签:false,Contacts,contacts,联系人,isShow,案例,HarmonyOS,boolean
From: https://www.cnblogs.com/ybbit/p/18132311

相关文章