首发!点歌系统也有鸿蒙版了?老王抢先体验了一把 - HarmonyOS技术社区 - 电子技术论坛 - 广受欢迎的专业电子论坛
分享 收藏 返回

[文章]

首发!点歌系统也有鸿蒙版了?老王抢先体验了一把

大家好,我是老王~

鸿蒙前段时间新出了方舟开发框架,声明式开发模式,和react就很相似。此项目基于ArkUI 3.0开发,算是一个比较完善的系统。

在做这个项目过程中遇到了很多问题,能解决的都解决了,不能解决的会在此提出,后面框架升级解决后会再次更新。

接下来将从这几个方面讲解开发的系统,项目目录、开发过程、还有最主要的组件相关内容等。

一、实现效果


二、项目目录


三、组件
实现组件
  • 其实很简单,使用@Component修饰的结构体都具有组件化能力
组件的各种修饰器
  • @Entry:如果你想让该组件作为你这个页面的默认入口就需要使用这个修饰器
  • @Preview: 可以在DevEco的PC预览上进行单组件预览
  • @Builder: 在一个自定义组件内快速生成多个布局内容,我觉得这个很鸡肋,直接使用自定义组件也是可以的
  • @Extend:这个组件比较实用,如果想覆盖自定义组件的一些属性,直接使用这个组件修饰即可修改
组件定义和使用
  • 新建一个Components文件夹,文件夹中放各种组件
  • 组件需要使用es6的import导入、export导出
  1. // 组件定义
  2. @Component
  3. export struct Component {
  4.     build() {
  5.       Text('我的第一个组件')
  6.     }
  7. }
  8. // 组件使用
  9. import {Component} from '你的文件路径'
  10. Component()

组件的数据通信
  • 父组件传值到子组件,父组件直接传值过去即可,如:Component({value: '传递的值'}),子组件接收的话,需要定义一个value属性接收
  • 如果更改数据后需要页面同步更改需要使用@States修饰进行修饰
  • 父子组件双向通信,父组件需要定义value属性,并使用@States修饰器修饰,子组件定义value属性接收,同时使用@Link修饰器修饰,这样子组件数据修改后父组件会同步修改
  • 子组件调用父组件方法,文档中并没有相关说明,但是如果想要调用父组件方法的话可以先双向通信,然后父组件中使用@Watch修饰器监听属性变化,属性一旦变化执行相应方法
四、项目开发
主入口


  • 主入口设定了一个当前展示页面的currentid,点击底部nav时currentId会变化,根据currentId展示不同的页面。
  • 数据改变页面不会刷新,如果想要页面进行刷新,需要给依赖的数据增加装饰器@State,同时@State修饰的数据对组件显隐有一定作用
  • 数据超出限定范围,是无法滚动的,需要给超出组件外层包裹Scroll组件
  • 主要代码
  1. @Entry
  2. @Component
  3. struct Index {
  4.   @State currentId: number = 1
  5.   build() {
  6.     Column() {
  7.       Scroll() {
  8.         Column() {
  9.           if (this.currentId === 1) {
  10.             // 点歌页面
  11.             ChooseSong()
  12.           } else if (this.currentId === 2) {
  13.             // 遥控页面
  14.             RemoteControl()
  15.           } else {
  16.             // 我的页面
  17.             Home()
  18.           }
  19.         }.width('100%')
  20.       }.height('91%').scrollBarWidth(0)
  21.       // 底部nav
  22.       Column() {
  23.         MyBottomNav({ currentId: $currentId })
  24.       }.width('100%').height('9%')
  25.     }.width('100%').height('100%')
  26.   }
  27. }

点歌页面




  • ets框架暂时未出输入框组件,暂时采用布局写的假输入框,等出了输入框组件再行替换
  • 搜索框组件点击事件在父组件中定义,isClick用@Link修饰可实现数据双向绑定,父组件通过监听isClick的变化来触发点击事件
  • prompt.showToastt弹窗事件,ets不支持,使用会报错,添加至歌曲列表的弹窗事件支持后会加入进去。


  • 这个页面有5个组件,搜索框组件、menu组件、title组件、歌曲推荐组件、歌曲列表组件
  • 代码
  1. // 主入口
  2. @Entry
  3. @Component
  4. export struct ChooseSong {
  5.   @State currentId: number = 1
  6.   @State @Watch("clickHandle") isClick: boolean = false
  7.   @State searchValue:string = ''
  8.   clickHandle() {
  9.     router.push({
  10.       uri: 'pages/search'
  11.     })
  12.   }

  13.   build() {
  14.     Column() {
  15.       // 搜索框
  16.       Flex({ justifyContent: FlexAlign.Center }) {
  17.         MySearch({isClick: $isClick, searchValue: $searchValue})
  18.       }.margin({ top: 15 }).width('100%')

  19.       // 轮播图
  20.       Swiper() {
  21.         ForEach(bannerImage, (item) => {
  22.           Image(item.url).width('100%').height('100%').border({ radius: 10 })
  23.         }, item => item.id)
  24.       }
  25.       .width('92%')
  26.       .height(150)
  27.       .margin({ top: 15 })
  28.       .index(1)
  29.       .autoPlay(true)

  30.       // 子menu
  31.       Flex({ justifyContent: FlexAlign.Center }) {
  32.         MyMenu({menuList: songMenu})
  33.       }.margin({ top: 15 }).width('100%')

  34.       // 热门推荐
  35.       Column() {
  36.         MyTitle({ title: '热门推荐' })
  37.         SongSheet({ dataList: songRecommend, isShowAll: true })
  38.       }.margin({ top: 15 }).width('100%')

  39.       // 新歌速递
  40.       Column() {
  41.         MyTitle({ title: '新歌速递' })
  42.         SongList({ dataList: songData })
  43.       }.margin({ top: 30 }).width('100%')
  44.     }.width('100%')
  45.   }
  46. }
  47. // 输入框组件
  48. @Component
  49. export struct MySearch {
  50.   [url=home.php?mod=space&uid=41289]@Link[/url] isClick: Boolean
  51.   @Link searchValue: string
  52.   build() {
  53.     Flex({alignItems: ItemAlign.Center}) {
  54.       Image($r('app.media.search')).width(24).height(24).margin({left: 10, right: 10})
  55.       Text(this.searchValue ? this.searchValue : '搜索歌曲、歌手').fontSize(16).fontColor(this.searchValue ? '#000' : '#999')
  56.     }.width('92%').height(40).backgroundColor('#eee').border({radius: 10}).onClick(() => {
  57.       this.isClick = !this.isClick
  58.     })
  59.   }
  60. }
  61. // 分类menu组件
  62. @Component
  63. export struct MyMenu {
  64.   @State menuList: object[] = []
  65.   @State width: string = '25%'
  66.   @State height: string | number = 80
  67.   @State isShowBorder: boolean = false

  68.   build() {
  69.     Flex({ alignItems: ItemAlign.Center, wrap: FlexWrap.Wrap, justifyContent: FlexAlign.SpaceBetween }) {
  70.       ForEach(this.menuList, (item) => {
  71.         Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
  72.           Image(item.icon).width(40).height(40).margin({ top: 6, bottom: 6 })
  73.           Text(item.name).fontSize(18).fontColor('#000')
  74.         }
  75.         .width(this.width)
  76.         .height(this.height)
  77.         .backgroundColor(this.isShowBorder ? '#fff' : '')
  78.         .border({ radius: 15 })
  79.         .margin({ bottom: 20 })
  80.         .onClick(() => {
  81.           if (item.url) {
  82.             router.push({
  83.               uri: item.url,
  84.               params: item.params
  85.             })
  86.           }
  87.         })
  88.       }, item => item.id)
  89.     }.width('92%').height(100)
  90.   }
  91. }
  92. // 标题组件
  93. @Component
  94. export struct MyTitle {
  95.   @State title: string = '热门推荐'
  96.   build() {
  97.     Flex({justifyContent: FlexAlign.Center}) {
  98.       Text('——').fontSize(20).fontColor($r('app.color.base'))
  99.       Text(this.title).fontColor($r('app.color.base')).fontSize(20).margin({left: 15, right: 15})
  100.       Text('——').fontSize(20).fontColor($r('app.color.base'))
  101.     }
  102.   }
  103. }
  104. // 热门推荐组件
  105. @Component
  106. export struct SongSheet {
  107.   @State dataList: object[] = []
  108.   @State isShowAll: boolean = false
  109.   build() {
  110.     Flex({ alignItems: ItemAlign.Center, wrap: FlexWrap.Wrap }) {
  111.       ForEach(this.dataList, (item) => {
  112.         Column() {
  113.           Image(item.img).width(80).height(80).margin({ top: 6, bottom: 6 }).border({ radius: 5 })
  114.           Text(item.name).fontSize(16).fontColor('#000')
  115.         }.width('33%').margin({ top: 10 }).onClick(() => {
  116.           router.push({
  117.             uri: 'pages/search',
  118.             params: {
  119.               searchValue: item.name,
  120.               isShowAll: this.isShowAll
  121.             }
  122.           })
  123.         })
  124.       }, item => item.id)
  125.     }.width('92%').margin({ top: 10 })
  126.   }
  127. }
  128. // 歌曲列表组件
  129. @Component
  130. export struct SongList {
  131.   @State dataList: song[] = []
  132.   setDataList(id) {
  133.     console.log(id)
  134.     this.dataList = this.dataList.map(item => {
  135.       return item.id === id ? {...item, star: !item.star} : item
  136.     })
  137.   }
  138.   build() {
  139.     Column() {
  140.       ForEach(this.dataList, (item) => {
  141.         Flex({ alignItems: ItemAlign.Center }) {
  142.           Column() {
  143.             Text(item.name).fontSize(16).fontColor('#000')
  144.             Text(item.author).fontSize(14).fontColor('#666').margin({ top: 3 })
  145.           }.width('66%').alignItems(HorizontalAlign.Start).margin({ left: '5%' })

  146.           Flex() {
  147.             Image($r('app.media.xz')).width(30).height(30).margin({ right: 8 }).onClick(() => {
  148.               console.log('加入列表')
  149.             })
  150.             Image(item.star ? $r('app.media.scY') : $r('app.media.scN')).width(30).height(30).onClick(() => {
  151.               this.setDataList(item.id)
  152.             })
  153.           }.width('23%')
  154.         }
  155.         .width('100%')
  156.         .border({ width: item.id % 2 ? 1 : 0, color: '#eee' })
  157.         .padding({ top: 10, bottom: 10 })
  158.         .onClick(() => {
  159.           item.star = !item.star
  160.         })
  161.       }, item => item.id)
  162.     }.width('100%').margin({ top: 20 })
  163.   }
  164. }

遥控页面


  • 增减组件主要是有个用@Link修饰的value属性,记录当前的value值,当value值改变会直接改变父组件的值
  • 使用prompt.showToast弹窗显示当前的音量,编辑器底部报错,这个应该是官方问题。等解决了再把项目改下
  • 代码
  1. @Entry
  2. @Component
  3. export struct RemoteControl {
  4.   @State @Watch('changeVolume') volume: number = 10 // 音量
  5.   @State @Watch('changeTone') tone: number = 10 // 音调
  6.   changeVolume() {
  7.     prompt.showToast({
  8.       message: `当前音量为${this.volume}`,
  9.       duration: 2000,
  10.     });
  11.   }
  12.   changeTone() {
  13.     console.log(`当前音调为${this.tone}`)
  14.   }
  15.   build() {
  16.     Column() {
  17.       // 音量开关
  18.       Column() {
  19.         Column() {
  20.           Flex({ justifyContent: FlexAlign.Center }) {
  21.             Flex({ alignItems: ItemAlign.Center }) {
  22.               Image($r("app.media.yf")).width(30).height(30).margin({ right: 5 })
  23.               Text('音乐音量').fontSize(20)
  24.             }
  25.             MySwitch({value: $volume})
  26.           }

  27.           Flex({ justifyContent: FlexAlign.Center }) {
  28.             Flex({ alignItems: ItemAlign.Center }) {
  29.               Image($r("app.media.tj")).width(30).height(30).margin({ right: 5 })
  30.               Text('升降调').fontSize(20)
  31.             }

  32.             MySwitch({value: $tone})
  33.           }.margin({ top: 40 })
  34.         }.padding({ left: 40, right: 40, top: 30, bottom: 50 })

  35.         Blank().width('100%').height(2).backgroundColor('#999')
  36.       }.margin({ top: 15 }).width('100%')

  37.       Flex({justifyContent: FlexAlign.Center}) {
  38.         ForEach(menuList, item => {
  39.           Column() {
  40.             Flex({justifyContent:FlexAlign.Center, alignItems: ItemAlign.Center}) {
  41.               Image(item.icon).width(30).height(30)
  42.             }.width(60).height(60).border({radius: 30}).margin({bottom: 10}).linearGradient({
  43.               angle: 0,
  44.               direction: GradientDirection.Bottom,
  45.               colors: item.color
  46.             })
  47.             Text(item.name).fontSize(16)
  48.           }.width('23%')
  49.         }, item => item.id)
  50.       }.width('100%').margin({top: 50})

  51.       // 轮播图
  52.       Swiper() {
  53.         ForEach(bannerImage, (item) => {
  54.           Image(item.url).width('100%').height('100%').border({ radius: 10 })
  55.         }, item => item.id)
  56.       }
  57.       .width('92%')
  58.       .height(150)
  59.       .margin({ top: 100 })
  60.       .index(1)
  61.       .autoPlay(true)
  62.     }.width('100%')
  63.   }
  64. }
  65. // 增加减少开关
  66. @Component
  67. export struct MySwitch {
  68.   @Link value: number

  69.   build() {
  70.     Flex() {
  71.       // 减少
  72.       Button({ type: ButtonType.Circle, stateEffect: true }) {
  73.         Text('-').fontSize(40).fontColor('#fff').position({ y: -5, x: 0 })
  74.       }
  75.       .width(45)
  76.       .height(45)
  77.       .backgroundColor('#005bea')
  78.       .margin({ left: 2, top: 2 })
  79.       .onClick(() => {
  80.         this.value -= 1
  81.       })
  82.       // 增加
  83.       Button({ type: ButtonType.Circle, stateEffect: true }) {
  84.         Text('+').fontSize(40).fontColor('#fff')
  85.       }
  86.       .width(45)
  87.       .height(45)
  88.       .margin({ left: 18, top: 2 })
  89.       .backgroundColor('#fa71cd')
  90.       .onClick(() => {
  91.         this.value += 1
  92.       })
  93.     }.border({ width: 2, color: '#999', radius: 38 }).width(128).height(55)
  94.   }
  95. }

我的页面


  • 这个页面有两个组件,个人信息卡片组件,menu组件
  • 使用帮助和意见反馈是同一个页面,通过使用路由传值方式来判断进入的属哪个页面router.push({ uri: item.url,params: item.params})
  • 使用router.getParams()方法获取路由地址里面传递的params的值
  • 代码
  1. @Entry
  2. @Component
  3. export struct Home {
  4.   build() {
  5.     Column() {
  6.       Image($r('app.media.bg')).width('100%').height(230)
  7.       // 个人信息卡片
  8.       PerInfo()

  9.       // 子menu
  10.       Flex({ justifyContent: FlexAlign.Center }) {
  11.         MyMenu({menuList: homeMenuList, width: '45%', height: 120, isShowBorder: true})
  12.       }.margin({ top: -60 }).width('90%')


  13.     }.width('100%').height('100%').backgroundColor('#eee')
  14.   }
  15. }
  16. // 个人信息卡片
  17. @Component
  18. export struct PerInfo {
  19.   build() {
  20.     Column() {
  21.       Column() {
  22.         Image($r('app.media.tx')).width(80).height(80).border({radius: 40, width: 3, color: '#999'})
  23.         Text('石  凡').fontSize(20).margin({top: 10}).fontColor($r('app.color.base')).fontWeight(600)
  24.       }.margin({top: -40})
  25.       Flex() {
  26.         ForEach(homeInfoList, item => {
  27.           Flex({direction: FlexDirection.Column, alignItems: ItemAlign.Center}) {
  28.             Text(item.value.toString()).fontSize(22).fontColor($r('app.color.base')).fontWeight(600)
  29.             Text(item.name).fontSize(18).margin({top: 8})
  30.           }.width('33.3%')
  31.         }, item=>item.id)
  32.       }.margin({top: -5})
  33.     }.width('86%').backgroundColor('#fff').height(200).margin({top: -120}).border({radius: 10})
  34.   }
  35. }

搜索页




  • 搜索框组件点击事件在父组件中定义,isClick用@Link修饰可实现数据双向绑定,父组件通过监听isClick的变化来触发点击事件
  • 通过输入框是否有值来判断是否展示热门搜索
  • 通过监听输入框的值的变化来过滤歌曲库,展示搜索过后的歌曲
  • 代码
  1. @Entry
  2. @Component
  3. struct SearchPage {
  4.   @State @Watch("clickHandle") isClick: boolean = false
  5.   @State @Watch("changeValue") searchValue: string = ''
  6.   @State isShowAll: boolean = false
  7.   dataList: object[] = []

  8.   setDataList() {
  9.     if (this.isShowAll) {
  10.       this.dataList = songData.sort(item => {
  11.         return Math.random() > 0.5 ? -1 : 1
  12.       })
  13.       return false;
  14.     }
  15.     this.dataList = songData.filter(item => {
  16.       console.log(item.author.indexOf(this.searchValue) + item.name.indexOf(this.searchValue) + '')
  17.       return (item.author.indexOf(this.searchValue) !== -1 || item.name.indexOf(this.searchValue) !== -1) ? item : ''
  18.     })
  19.   }
  20.   changeValue() {
  21.     this.setDataList()
  22.   }
  23.   aboutToAppear() {
  24.     this.searchValue = router.getParams() ? router.getParams().searchValue : ''
  25.     this.isShowAll = router.getParams() ? router.getParams().isShowAll : false

  26.     this.setDataList()
  27.   }
  28.   clickHandle() {
  29.     console.log('弹出输入键盘')
  30.   }

  31.   build() {
  32.     Scroll() {
  33.       Column() {
  34.         // 搜索框
  35.         Flex({ justifyContent: FlexAlign.Center }) {
  36.           MySearch({ isClick: $isClick, searchValue: $searchValue })
  37.         }.margin({ top: 15 }).width('100%')

  38.         if (this.searchValue || this.isShowAll) {
  39.           Column() {
  40.             MyTitle({ title: '搜索结果' })
  41.             SongList({ dataList: this.dataList })
  42.           }.margin({ top: 30 }).width('100%')
  43.         } else {
  44.           // 热门搜索
  45.           Flex({ direction: FlexDirection.Column }) {
  46.             Text('热门搜索').fontSize(16).fontColor('#999')
  47.             BreadBlock({searchValue: $searchValue})
  48.           }.width('92%').margin({ top: 15 })
  49.         }
  50.       }
  51.       .width('100%')
  52.     }

  53.   }
  54. }
  55. // 热门搜索
  56. @Component
  57. export struct BreadBlock {
  58.   @Link searchValue: string
  59.   build() {
  60.     Flex({ wrap: FlexWrap.Wrap }) {
  61.       ForEach(hotSearchList, item => {
  62.           Text(item)
  63.             .fontSize(16)
  64.             .padding({ left: 15, right: 15, top: 16 })
  65.             .onClick(() => {
  66.               this.searchValue = item
  67.             })
  68.       }, item => item)
  69.     }
  70.   }
  71. }

方舟开发框架现在还不是很完善,开发完整大型项目还是很费力,但是一些小dome还是可以开发的。希望框架越来越完善,毕竟声明式开发是未来的开发的主流趋势。

最后附上git地址:https://gitee.com/shi-fan-a/song-ordering-system

——————
原创:老王丨【公众号:鸿蒙开发者老王】华为认证讲师 / 腾讯认证讲师 / 鸿蒙开发先行者

回帖(1)

王栋春

2021-11-16 21:36:56
楼主技术不错

更多回帖

×
发帖