首页 > 其他分享 >鸿蒙NEXT开发案例:血型遗传计算

鸿蒙NEXT开发案例:血型遗传计算

时间:2024-11-21 19:40:20浏览次数:1  
标签:const string 鸿蒙 血型 基因 NEXT State 组合

 

【引言】

血型遗传计算器是一个帮助用户根据父母的血型预测子女可能的血型的应用。通过选择父母的血型,应用程序能够快速计算出孩子可能拥有的血型以及不可能拥有的血型。这个过程不仅涉及到了简单的数据处理逻辑,还涉及到UI设计与交互体验的设计。

【环境准备】

• 操作系统:Windows 10
• 开发工具:DevEco Studio NEXT Beta1 Build Version: 5.0.3.806
• 目标设备:华为Mate60 Pro
• 开发语言:ArkTS
• 框架:ArkUI
• API版本:API 12

【开发步骤】

1. 创建组件

首先,我们使用@Entry和@Component装饰器创建一个名为BloodTypeCalculator的组件。这标志着我们的组件是鸿蒙NEXT应用的一个入口点。

@Entry
@Component
struct BloodTypeCalculator {
  // 组件的状态和方法定义
}

2. 定义状态

为了控制组件的外观和行为,我们定义了一系列的状态变量,如主题颜色、文本颜色、边框颜色等。同时,我们也定义了两个数组来存储可能和不可能的血型结果。

@State private themeColor: string | Color = Color.Orange;
@State private textColor: string = "#2e2e2e";
@State private lineColor: string = "#d5d5d5";
@State private possibleBloodTypesText: string = "";
@State private impossibleBloodTypesText: string = "";

3. 血型逻辑实现

接下来,实现了几个关键的方法来处理血型相关的逻辑。这些方法包括根据血型获取基因组合、组合父母的基因以获得子代可能的基因组合、根据基因组合确定血型等。

getGenes(bloodType: string): string[];
combineGenes(fatherGenes: string[], motherGenes: string[]): string[];
getBloodTypesFromGenes(genes: string[]): string[];

4. 交互逻辑

为了实现用户选择父母血型后自动计算子代血型的功能,我们使用了@Watch装饰器监听选择的变化,并在变化时调用计算方法更新结果显示。

@State @Watch('capsuleSelectedIndexesChanged') fatherBloodTypeIndex: number[] = [0];
@State @Watch('capsuleSelectedIndexesChanged') motherBloodTypeIndex: number[] = [0];

capsuleSelectedIndexesChanged() {
  // 更新血型信息
}

5. UI设计

最后,我们构建了用户界面,包括页面标题、工具介绍、父母血型选择区域以及结果显示区域。这里使用了Column、Row、Text和SegmentButton等组件来布局和美化界面。

build() {
  Column() {
    // 页面标题
    Text('血型遗传计算');
    // 其他UI元素...
  }
  .height('100%')
  .width('100%')
  .backgroundColor("#f4f8fb");
}

总结

通过上述步骤,我们成功地开发了一个基于鸿蒙NEXT的血型遗传计算器。这个案例不仅展示了鸿蒙NEXT框架下组件化开发的基本流程,同时也体现了通过合理的状态管理和逻辑处理,可以轻松实现复杂的业务需求。对于希望深入了解鸿蒙NEXT框架的开发者来说,这是一个很好的实践案例。希望这篇文章能为你提供灵感,鼓励你在鸿蒙NEXT的开发道路上继续前行。

【完整代码】

// 导入SegmentButton及其相关类型定义
import { SegmentButton, SegmentButtonItemTuple, SegmentButtonOptions } from '@kit.ArkUI';

// 使用@Entry装饰器标记此组件为入口点
@Entry
  // 使用@Component装饰器标记此结构体为一个组件
@Component
  // 定义一个名为BloodTypeCalculator的结构体,用于实现血型遗传计算功能
struct BloodTypeCalculator {
  // 定义主题颜色,默认为橙色
  @State private themeColor: string | Color = Color.Orange;
  // 定义文本颜色,默认为深灰色
  @State private textColor: string = "#2e2e2e";
  // 定义边框颜色,默认为浅灰色
  @State private lineColor: string = "#d5d5d5";
  // 定义基础内边距大小,默认为30
  @State private basePadding: number = 30;
  // 存储可能的血型结果
  @State private possibleBloodTypesText: string = "";
  // 存储不可能的血型结果
  @State private impossibleBloodTypesText: string = "";
  // 定义血型列表,包含A、B、AB、O四种血型
  @State private bloodTypeList: object[] = [Object({ text: 'A' }), Object({ text: 'B' }), Object({ text: 'AB' }), Object({ text: 'O' })];
  // 初始化单选胶囊按钮的配置项
  @State singleSelectCapsuleOptions: SegmentButtonOptions | undefined = undefined;
  // 监听父亲血型选择变化
  @State @Watch('capsuleSelectedIndexesChanged') fatherBloodTypeIndex: number[] = [0];
  // 监听母亲血型选择变化
  @State @Watch('capsuleSelectedIndexesChanged') motherBloodTypeIndex: number[] = [0];

  // 根据血型获取其可能的基因组合
  getGenes(bloodType: string): string[] {
    console.info(`bloodType:${bloodType}`);
    switch (bloodType) {
      case 'A': return ['A', 'O']; // A型血可能的基因组合
      case 'B': return ['B', 'O']; // B型血可能的基因组合
      case 'AB': return ['A', 'B']; // AB型血可能的基因组合
      case 'O': return ['O']; // O型血可能的基因组合
      default: throw new Error('Invalid blood type'); // 非法血型抛出错误
    }
  }

  // 组合父母的基因以获得子代可能的基因组合
  combineGenes(fatherGenes: string[], motherGenes: string[]): string[] {
    const possibleGenes: string[] = []; // 用于存储可能的基因组合
    for (const fatherGene of fatherGenes) {
      for (const motherGene of motherGenes) {
        const combinedGene = [fatherGene, motherGene].sort().join(''); // 将父母的基因组合并排序后加入数组
        if (!possibleGenes.includes(combinedGene)) {
          possibleGenes.push(combinedGene); // 如果组合尚未存在,则加入数组
        }
      }
    }
    return possibleGenes; // 返回所有可能的基因组合
  }

  // 根据基因组合确定血型
  getBloodTypesFromGenes(genes: string[]): string[] {
    const bloodTypes: string[] = []; // 用于存储可能的血型
    for (const gene of genes) {
      if (gene === 'AA' || gene === 'AO' || gene === 'OA') {
        bloodTypes.push('A'); // 基因组合为AA、AO或OA时,血型为A
      } else if (gene === 'BB' || gene === 'BO' || gene === 'OB') {
        bloodTypes.push('B'); // 基因组合为BB、BO或OB时,血型为B
      } else if (gene === 'AB' || gene === 'BA') {
        bloodTypes.push('AB'); // 基因组合为AB或BA时,血型为AB
      } else if (gene === 'OO') {
        bloodTypes.push('O'); // 基因组合为OO时,血型为O
      }
    }
    // 去除重复的血型
    return bloodTypes.filter((value, index, self) => self.indexOf(value) === index);
  }

  // 计算孩子可能的血型及不可能的血型
  calculatePossibleBloodTypes(father: string, mother: string) {
    const fatherGenes = this.getGenes(father); // 获取父亲的基因组合
    const motherGenes = this.getGenes(mother); // 获取母亲的基因组合
    const possibleGenes = this.combineGenes(fatherGenes, motherGenes); // 组合父母的基因
    const possibleBloodTypes = this.getBloodTypesFromGenes(possibleGenes); // 从基因组合中获取可能的血型
    const allBloodTypes: string[] = ['A', 'B', 'AB', 'O']; // 所有可能的血型列表
    const impossibleBloodTypes = allBloodTypes.filter(bt => !possibleBloodTypes.includes(bt)); // 计算不可能的血型
    console.log(this.possibleBloodTypesText = `孩子可能血型:${possibleBloodTypes.join('、')}`); // 显示可能的血型
    console.log(this.impossibleBloodTypesText = `孩子不可能血型:${impossibleBloodTypes.join('、')}`); // 显示不可能的血型
  }

  // 当胶囊按钮的选择发生变化时调用此函数
  capsuleSelectedIndexesChanged() {
    let father: string = this.bloodTypeList[this.fatherBloodTypeIndex[0]]['text']; // 获取父亲选择的血型
    let mother: string = this.bloodTypeList[this.motherBloodTypeIndex[0]]['text']; // 获取母亲选择的血型
    this.calculatePossibleBloodTypes(father, mother); // 计算并更新血型信息
  }

  // 在组件即将出现时调用此函数
  aboutToAppear(): void {
    this.singleSelectCapsuleOptions = SegmentButtonOptions.capsule({
      buttons: this.bloodTypeList as SegmentButtonItemTuple, // 设置胶囊按钮的选项
      multiply: false, // 单选模式
      fontColor: Color.White, // 字体颜色为白色
      selectedFontColor: Color.White, // 选中时字体颜色为白色
      selectedBackgroundColor: this.themeColor, // 选中背景色为主题色
      backgroundColor: this.lineColor, // 背景色为边框颜色
      backgroundBlurStyle: BlurStyle.BACKGROUND_THICK // 背景模糊效果
    });
    this.capsuleSelectedIndexesChanged(); // 初始化时调用选择变化处理函数
  }

  // 构建用户界面
  build() {
    Column() {
      // 页面标题
      Text('血型遗传计算')
        .fontColor(this.textColor) // 文本颜色
        .fontSize(18) // 字体大小
        .width('100%') // 宽度为100%
        .height(50) // 高度为50
        .textAlign(TextAlign.Center) // 文本居中对齐
        .backgroundColor(Color.White) // 背景色为白色
        .shadow({ // 添加阴影效果
          radius: 2, // 阴影半径
          color: this.lineColor, // 阴影颜色
          offsetX: 0, // 水平偏移量
          offsetY: 5 // 垂直偏移量
        });

      // 工具介绍部分
      Column() {
        Text('工具介绍').fontSize(20).fontWeight(600).fontColor(this.textColor);
        Text('血型是以A、B、O三种遗传因子的组合而决定的,根据父母的血型,就可以判断出以后出生的孩子的血型。')
          .fontSize(18).fontColor(this.textColor).margin({ top: `${this.basePadding / 2}lpx` });
      }
      .alignItems(HorizontalAlign.Start)
      .width('650lpx')
      .padding(`${this.basePadding}lpx`)
      .margin({ top: `${this.basePadding}lpx` })
      .borderRadius(10)
      .backgroundColor(Color.White)
      .shadow({
        radius: 10,
        color: this.lineColor,
        offsetX: 0,
        offsetY: 0
      });

      // 父亲血型选择部分
      Column() {
        Row() {
          Text('父亲血型').fontColor(this.textColor).fontSize(18);
          SegmentButton({
            options: this.singleSelectCapsuleOptions, // 胶囊按钮的配置项
            selectedIndexes: this.fatherBloodTypeIndex // 当前选中的索引
          }).width('400lpx');
        }.height(45).justifyContent(FlexAlign.SpaceBetween).width('100%');

        // 母亲血型选择部分
        Row() {
          Text('母亲血型').fontColor(this.textColor).fontSize(18);
          SegmentButton({
            options: this.singleSelectCapsuleOptions, // 胶囊按钮的配置项
            selectedIndexes: this.motherBloodTypeIndex // 当前选中的索引
          }).width('400lpx');
        }.height(45).justifyContent(FlexAlign.SpaceBetween).width('100%');
      }
      .alignItems(HorizontalAlign.Start)
      .width('650lpx')
      .padding(`${this.basePadding}lpx`)
      .margin({ top: `${this.basePadding}lpx` })
      .borderRadius(10)
      .backgroundColor(Color.White)
      .shadow({
        radius: 10,
        color: this.lineColor,
        offsetX: 0,
        offsetY: 0
      });

      // 显示计算结果
      Column() {
        Row() {
          Text(this.possibleBloodTypesText).fontColor(this.textColor).fontSize(18);
        }.height(45).justifyContent(FlexAlign.SpaceBetween).width('100%');
        Row() {
          Text(this.impossibleBloodTypesText).fontColor(this.textColor).fontSize(18);
        }.height(45).justifyContent(FlexAlign.SpaceBetween).width('100%');
      }
      .alignItems(HorizontalAlign.Start)
      .width('650lpx')
      .padding(`${this.basePadding}lpx`)
      .margin({ top: `${this.basePadding}lpx` })
      .borderRadius(10)
      .backgroundColor(Color.White)
      .shadow({
        radius: 10,
        color: this.lineColor,
        offsetX: 0,
        offsetY: 0
      });
    }
    .height('100%')
    .width('100%')
    .backgroundColor("#f4f8fb"); // 页面背景色
  }
}

  

标签:const,string,鸿蒙,血型,基因,NEXT,State,组合
From: https://www.cnblogs.com/zhongcx/p/18561407

相关文章

  • 鸿蒙5.0南向开发:HiChecker开发指导
     鸿蒙NEXT开发实战往期必看文章:一分钟了解”纯血版!鸿蒙HarmonyOSNext应用开发!“非常详细的”鸿蒙HarmonyOSNext应用开发学习路线!(从零基础入门到精通)HarmonyOSNEXT应用开发案例实践总结合(持续更新......)HarmonyOSNEXT应用开发性能优化实践总结(持续更新......)概述Hi......
  • 鸿蒙5.0南向开发:HiDumper开发概述
     鸿蒙NEXT开发实战往期必看文章:一分钟了解”纯血版!鸿蒙HarmonyOSNext应用开发!“非常详细的”鸿蒙HarmonyOSNext应用开发学习路线!(从零基础入门到精通)HarmonyOSNEXT应用开发案例实践总结合(持续更新......)HarmonyOSNEXT应用开发性能优化实践总结(持续更新......)功能简......
  • 鸿蒙5.0南向开发:HiSysEvent工具
     鸿蒙NEXT开发实战往期必看文章:一分钟了解”纯血版!鸿蒙HarmonyOSNext应用开发!“非常详细的”鸿蒙HarmonyOSNext应用开发学习路线!(从零基础入门到精通)HarmonyOSNEXT应用开发案例实践总结合(持续更新......)HarmonyOSNEXT应用开发性能优化实践总结(持续更新......)概述目......
  • 鸿蒙项目实战(六):HMRouter实现两次返回退出应用
    1、定义一个生命周期类ExitAppLifecycle实现IHMLifecycle接口import{HMLifecycle,HMLifecycleContext,IHMLifecycle}from'@hadss/hmrouter';@HMLifecycle({lifecycleName:'ExitAppLifecycle'})exportclassExitAppLifecycleimplementsIHMLifecycle{......
  • 鸿蒙NEXT开发案例:简体繁体转换器
    【引言】简体繁体转换器是一个实用的小工具,它可以帮助用户轻松地在简体中文和繁体中文之间进行转换。对于需要频繁处理两岸三地文档的用户来说,这样的工具无疑是提高工作效率的好帮手。本案例将展示如何利用鸿蒙NEXT提供的组件和服务,结合第三方库@nutpi/chinese_transverter,来实......
  • HarmonyOS Next企业级数据安全防护实战:加解密技术综合应用
    本文旨在深入探讨华为鸿蒙HarmonyOSNext系统(截止目前API12)在企业级数据安全防护中加解密技术的综合应用,基于实际开发实践进行总结。主要作为技术分享与交流载体,难免错漏,欢迎各位同仁提出宝贵意见和问题,以便共同进步。本文为原创内容,任何形式的转载必须注明出处及原作者。一、......
  • HarmonyOS Next加解密算法开发实践与优化策略
    本文旨在深入探讨华为鸿蒙HarmonyOSNext系统(截止目前API12)中加解密算法开发的实践经验与优化策略,基于实际开发案例进行总结。主要作为技术分享与交流载体,难免错漏,欢迎各位同仁提出宝贵意见和问题,以便共同进步。本文为原创内容,任何形式的转载必须注明出处及原作者。一、加解密......
  • HarmonyOS Next加解密算法中的参数与模式详解
    本文旨在深入探讨华为鸿蒙HarmonyOSNext系统(截止目前API12)中加解密算法参数与模式的技术细节,基于实际开发实践进行总结。主要作为技术分享与交流载体,难免错漏,欢迎各位同仁提出宝贵意见和问题,以便共同进步。本文为原创内容,任何形式的转载必须注明出处及原作者。一、加解密参数......
  • HarmonyOS Next智能家居系统安全加固:加解密技术的深度应用
    本文旨在深入探讨华为鸿蒙HarmonyOSNext系统(截止目前API12)在智能家居系统安全加固中加解密技术的应用,基于实际开发经验进行总结。主要作为技术分享与交流载体,难免错漏,欢迎各位同仁提出宝贵意见和问题,以便共同进步。本文为原创内容,任何形式的转载必须注明出处及原作者。一、智......
  • 鸿蒙实战开发—— IPC与RPC通信
    ......