【引言】
血型遗传计算器是一个帮助用户根据父母的血型预测子女可能的血型的应用。通过选择父母的血型,应用程序能够快速计算出孩子可能拥有的血型以及不可能拥有的血型。这个过程不仅涉及到了简单的数据处理逻辑,还涉及到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"); // 页面背景色}
}