当前位置:   article > 正文

HarmonyOS元服务开发实践:桌面卡片字典_元服务 应用卡片

元服务 应用卡片

一、项目说明
1.DEMO创意为卡片字典。
2.不同卡片显示不同内容:微卡、小卡、中卡、大卡,根据不同卡片特征显示同一个字的不同内容,基于用户习惯可选择喜欢的卡片。
3.万能卡片刷新:用户点击卡片刷新按钮查看新内容,同时卡片设置了定时刷新,让用户每天看到的卡片都是新的文字,便于用户学习和查阅。
4.元服务内具有搜索功能,用户可以通过搜索查询相应的字和解释,采用了类似现在用户习惯的上下滑动方式来进行逐字详细阐述。
5.基于API9、ArkTS语言开发,通过serverless云服务实现注册、登录等功能。
二、元服务效果
1.万能卡片效果

 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

2.元服务内页
 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区


三、项目开发
1.环境搭建
软件要求:
DevEco Studio版本:DevEco Studio 3.1 Release及以上版本。
HarmonyOS SDK版本:API version 9及以上版本。
硬件要求:
设备类型:华为手机或运行在DevEco Studio上的华为手机设备模拟器。
HarmonyOS系统:3.1.0 Developer Release及以上版本。

2.主要代码结构解读
 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区


entry/src/main/ets: 文件入口
common:公共资源文件
images:公共图片资源
Constants.ts:公共常量
CountryViewModel.ts:国家号码类
LazyFE_Class.ets:懒数据加载类
Log.ts:日志类

components:封装组件文件

database:数据库封装类
data_cyhz.ets:数据文件

entryability:应用/服务入口

entryformability:卡片服务

pages:应用/服务页面
Auth.ets:认证授权
CloudFunction.ets:云函数
CloudProject.ets:云项目
CloudStorage.ets:云存储
Index.ets:主页
User_Login.ets:登录页
User_SignUp.ets:注册页
User_VerifyCodeLogin.ets:验证码登录页

services:后台操作类

widget:服务卡片

resources:资源文件目录

3.进入应用说明
由于创建的是云模板项目,所以无需额外配置SDK依赖,只需要注意的是,云模板的初始集成sdk位置不一样,所以我们还是在应用初始化阶段使用context初始化SDK,推荐在entryability的onCreate中进行。
 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区


4.首页
我们需要给应用添加底部菜单栏,用于切换不同的应用模块,由于各个模块之间属于完全独立的情况,并且不需要每次切换都进行界面的刷新,所以我们用到了Tabs,TabContent组件。
 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区


本应用一共有首页、我的两个模块,分别对应Tabs组件的两个子组件TabContent。

首页包含搜索文字和滑动浏览信息两个模块,具体代码实现我们将在下边分模块进行说明。

搜索文字:主要用到Search组件,通过搜索文字来跳转到相应的文字展示信息,主要代码如下:

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

  1. ...
  2. //常用汉字搜索栏
  3. Column() {
  4. Search({ value: this.submitValue, placeholder: '汉字搜索', controller: this.search })
  5. .searchButton('搜索')
  6. .placeholderColor(Color.Grey)
  7. .textFont({ size: 14, weight: 400 })
  8. .margin({ left: 20, right: 20 })
  9. .onSubmit((value: string) => {
  10. this.submitValue = value
  11. for (let i = 0; i < wz.length; i++) {
  12. const element: any = wz[i];
  13. if (this.submitValue == element.zi) {
  14. this.swiperIndex = i
  15. this.submitValue = ''
  16. }
  17. }
  18. })
  19. .onChange((value: string) => {
  20. this.changeValue = value
  21. })
  22. }.width("100%").margin({ top: 20, bottom: 20 })
  23. ......

浏览信息模块:主要用到swiper组件,通过数据的懒加载行为,来预缓存数据,通过滑动页面来展示文字信息,主要代码如下:

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

  1. ...
  2. //常用汉字轮播部分
  3. Column() {
  4. Swiper(this.swiperController) {
  5. LazyForEach(this.data_wz, (item: any) => {
  6. Column() {
  7. ...
  8. }.width("100%")
  9. .height("100%")
  10. .justifyContent(FlexAlign.Start)
  11. .alignItems(HorizontalAlign.Start)
  12. }, item => item)
  13. }
  14. .vertical(true)
  15. .cachedCount(2)
  16. .autoPlay(false)
  17. .indicator(false)
  18. .loop(false)
  19. .duration(400)
  20. .itemSpace(0)
  21. .curve(Curve.Linear)
  22. .cachedCount(3)
  23. .index(this.swiperIndex)
  24. .disableSwipe(this.disableSwipe)
  25. .onChange((index: number) => {
  26. console.info("swiper:" + index.toString())
  27. this.swiperIndex = index
  28. })
  29. }.width("100%")
  30. ...

5.我的
我的页包含游客登陆、用户登录两个模块。
其中游客登陆不显示登录信息以及应用部分功能,仅能使用部分应用能力;
用户登录显示用户部分信息,并展开应用所有功能,需要用户注册登录;
具体代码实现我们将在下边分模块进行说明。

游客登录:

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

  1. ...
  2. //游客登陆状态
  3. if (this.isVisitor) {
  4. //头像信息
  5. Column() {
  6. Image($r('app.media.icon'))
  7. .width(90)
  8. .objectFit(ImageFit.Contain)
  9. .borderRadius(50)
  10. Text(this.isVisitor ? "游客_" : this.userName).fontSize(16).margin(20)
  11. Button(this.isLogin ? "退出" : "登录", { type: ButtonType.Capsule })
  12. .fontSize(14)
  13. .width('120')
  14. .height('30')
  15. .backgroundColor(0xf48fb1)
  16. .onClick(() => {
  17. router.replaceUrl({
  18. url: "pages/User_Login"
  19. })
  20. })
  21. }
  22. .width('90%')
  23. .height('240')
  24. .borderRadius(12)
  25. .margin({ top: 20 })
  26. .backgroundColor(0xFFFFFF)
  27. .shadow({ radius: 12, color: 0xCECECE, offsetX: 4, offsetY: 6 })
  28. .justifyContent(FlexAlign.Center)
  29. }
  30. ...

用户登录:

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

  1. ...
  2. //已经登陆状态
  3. if (!this.isVisitor) {
  4. //头像信息
  5. Column() {
  6. ...
  7. }
  8. .width('90%')
  9. .height('240')
  10. .borderRadius(12)
  11. .margin({ top: 20 })
  12. .backgroundColor(0xFFFFFF)
  13. .shadow({ radius: 12, color: 0xCECECE, offsetX: 4, offsetY: 6 })
  14. .justifyContent(FlexAlign.Center)
  15. //选择项
  16. Column() {
  17. ...
  18. }.width('100%')
  19. .height("100%")
  20. .backgroundColor(0xF5F5F5)
  21. .justifyContent(FlexAlign.Start)

6.注册登录页
让用户进行账号注册,能够完全使用应用。
 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区


 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区


核心代码:

  1. ...
  2. .onClick(() => {
  3. if (this.phoneNumber !== '' && this.password !== '') {
  4. let verifyCodeSettings = new VerifyCodeSettingBuilder()
  5. .setAction(VerifyCodeAction.REGISTER_LOGIN)
  6. .setLang('zh_CN')
  7. .setSendInterval(60)
  8. .build();
  9. agconnect.auth().requestPhoneVerifyCode(this.countryCode, this.phoneNumber, verifyCodeSettings)
  10. .then(verifyCodeResult => {
  11. this.startTimer()
  12. //验证码申请成功
  13. }).catch(error => {
  14. //验证码申请失败
  15. Prompt.showToast({ message: "请输入正确的手机号和密码" + JSON.stringify(error) })
  16. });
  17. }else {
  18. Prompt.showToast({ message: "手机号和密码不能为空" })
  19. }
  20. })
  21. ......
  22. ......
  23. .onClick(() => {
  24. if (this.phoneNumber !== '' && this.password !== '') {
  25. let user = new PhoneUserBuilder()
  26. .setCountryCode(this.countryCode)
  27. .setPhoneNumber(this.phoneNumber)
  28. .setPassword(this.password) //可以给用户设置初始密码。填写后后续可以用密码来登录
  29. .setVerifyCode(this.VerifyCode)
  30. .build();
  31. agconnect.auth().createPhoneUser(user)
  32. .then(result => {
  33. // 创建用户成功
  34. AppStorage.Set('phoneNumber', user.phoneNumber)
  35. AppStorage.Set('password', user.password)
  36. AppStorage.Set('isVisitor', false)
  37. AppStorage.Set('isLogin', true)
  38. AppStorage.Set('userName', user.phoneNumber)
  39. router.pushUrl({
  40. url: "pages/Index"
  41. })
  42. })
  43. .catch(error => {
  44. // 创建用户失败
  45. Prompt.showToast({ message: "注册失败," + JSON.stringify(error),duration:4 })
  46. })
  47. } else {
  48. Prompt.showToast({ message: "手机号和密码不能为空" })
  49. }
  50. })

7.其他云服务
说明:这是云模板初始业务,如有其他业务需求,可自行添加。
 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区


四、卡片开发
按需求添加卡片,也可以只用初始创建卡片,修改相关卡片参数即可。

1.创建卡片
 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区


2.初始卡片修改相关参数
打开resources/base/profile目录下的form_config.json文件,按需修改参数
 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区


3.卡片加载与获取数据

卡片加载更新部分由EntryFormAbility.ts文件完成,这里可参考官方文档操作即可。

由于没有连接到后台数据部分,所以我们这里采用自定义模拟数据,然后在每次卡片挂载到桌面时,随机选取卡片内容,代码如下:
 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

  1. ...
  2. aboutToAppear() {
  3. let idx = Math.floor((Math.random() * wz_arr.length))
  4. this.zi = wz_arr[idx].zi
  5. this.pinYin = wz_arr[idx].pinYin
  6. this.buShou = wz_arr[idx].buShou
  7. this.biHua = wz_arr[idx].biHua
  8. this.fanTi = wz_arr[idx].fanTi
  9. this.near_words = wz_arr[idx].near_words
  10. this.reverse_words = wz_arr[idx].reverse_words
  11. this.explain = wz_arr[idx].explain.toString()
  12. }
  13. ...

4.卡片主要代码

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

  1. ...
  2. Column() {
  3. //微卡
  4. Stack() {
  5. Text(this.zi)
  6. .width("100%")
  7. .textAlign(TextAlign.Center)
  8. .fontSize(30)
  9. .fontColor('#1f1f1f')
  10. .fontWeight(600)
  11. .margin({right:20})
  12. Row(){
  13. Image("/common/images/R2.png")
  14. .width(18)
  15. .height(18)
  16. .margin({right:"15%"})
  17. .objectRepeat(ImageRepeat.NoRepeat)
  18. .onClick(()=>{
  19. this.rotateAngle = 180
  20. this.aboutToAppear()
  21. })
  22. .rotate({ angle: this.rotateAngle })
  23. .animation({
  24. duration:300,
  25. curve: Curve.Linear,
  26. playMode: PlayMode.Normal
  27. })
  28. }.width("100%").justifyContent(FlexAlign.End)
  29. }
  30. .width("100%")
  31. .height(72)
  32. //小卡、中卡
  33. Flex({direction:FlexDirection.Column,wrap:FlexWrap.Wrap,justifyContent:FlexAlign.Start}){
  34. Column(){
  35. Text("拼音:"+this.pinYin).fontSize(14).margin({left:15})
  36. Text("部首:"+this.buShou).fontSize(14).margin({top:4,left:15})
  37. Text("笔画:"+this.biHua).fontSize(14).margin({top:4,left:15})
  38. Text("繁体:"+this.fanTi).fontSize(14).margin({top:4,left:15})
  39. }.width(208)
  40. .justifyContent(FlexAlign.Start)
  41. .alignItems(HorizontalAlign.Start)
  42. Column(){
  43. Text("近义词:"+this.near_words).fontSize(12).margin({right:15})
  44. Text("反义词:"+this.reverse_words).fontSize(12).margin({top:4,right:15})
  45. }
  46. .justifyContent(FlexAlign.Start)
  47. .alignItems(HorizontalAlign.Start)
  48. }
  49. .width("100%")
  50. .height(102)
  51. //大卡
  52. Column(){
  53. Text("解释:").width("100%").textAlign(TextAlign.Start).fontSize(12).margin({left:15,right:15})
  54. Text(this.explain).fontSize(14).margin({top:4,left:15,right:15})
  55. }.width("100%")
  56. .height("100%")
  57. .justifyContent(FlexAlign.Start)
  58. .alignItems(HorizontalAlign.Start)
  59. }
  60. .width("100%")
  61. .alignItems(HorizontalAlign.Center)
  62. .backgroundImage("/common/images/cywz.jpg")
  63. .backgroundImageSize(ImageSize.Cover)
  64. .onClick(() => {
  65. postCardAction(this, {
  66. "action": this.ACTION_TYPE,
  67. "abilityName": this.ABILITY_NAME,
  68. "params": {
  69. "message": this.MESSAGE,
  70. }
  71. });
  72. })
  73. ...

五、项目运行
 

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区


六、结语
各位感兴趣的开发者可以点击进入元服务官网,详细了解元服务、万能卡片相关信息。大家还可以在华为手机的负一屏、华为应用市场元服务专区体验本文作者及团队已经上架运营的元服务-成语心情,用万能卡片按照自己的心情来刷刷成语吧。

HarmonyOS元服务开发实践:桌面卡片字典-开源基础软件社区

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/567204
推荐阅读
相关标签
  

闽ICP备14008679号