• 作者:老汪软件技巧
  • 发表时间:2024-08-23 07:02
  • 浏览量:

在鸿蒙(HarmonyOS)开发中,样式复用是提高开发效率和保持代码整洁性的重要手段。通过复用CSS样式,开发者可以避免在多个组件中重复编写相同的样式代码,从而减少代码冗余,提升项目的可维护性。本文将介绍鸿蒙开发中CSS样式复用的几种方法,包括使用@Styles和@Extend装饰器,以及跨文件样式复用和组件复用的高级技巧。

1. 使用@Styles进行样式复用

@Styles是鸿蒙开发中用于定义和复用组件样式的装饰器。它可以将多条样式设置提炼成一个方法,然后在组件声明的位置直接调用。@Styles可以定义在组件内部或全局,但全局定义的@Styles方法需要在方法名前添加function关键字。

组件内复用

在组件内部定义@Styles方法时,不需要使用function关键字。这种方法适用于当前组件内部样式的复用。

@Entry  
@Component  
struct MyComponent {  
    build() {  
        Column({ space: 20 }) {  
            Text('Text 1').commonStyle().fontColor(Color.White).fontSize(20)  
            Button('Button 1', { type: ButtonType.Capsule }).commonStyle().fontSize(20)  
        }  
        .width('80%')  
        .height('100%')  
        .justifyContent(FlexAlign.Center)  
    }  
  
    @Styles  
    commonStyle() {  
        .width('60%')  
        .height(50)  
        .backgroundColor(Color.Red)  
    }  
}

全局复用

全局定义的@Styles方法需要在方法名前添加function关键字,并且只能在当前.ets文件中使用。

@Entry  
@Component  
struct MyComponent {  
    build() {  
        Column({ space: 20 }) {  
            Text('Text 1').globalStyle().fontColor(Color.White).fontSize(20)  
            Button('Button 1', { type: ButtonType.Capsule }).globalStyle().fontSize(20)  
        }  
        .width('80%')  
        .height('100%')  
        .justifyContent(FlexAlign.Center)  
    }  
}  
  
@Styles  
function globalStyle() {  
    .width('60%')  
    .height(50)  
    .backgroundColor(Color.Red)  
}

2. 使用@Extend扩展组件样式

鸿蒙用js__鸿蒙html

与@Styles不同,@Extend装饰器用于扩展特定类型的组件样式。它只能定义在全局,并且只支持封装指定组件的私有属性、私有事件和自身定义的全局方法。

@Extend(Button)  
function buttonStyle(color: ResourceColor) {  
    .width('60%')  
    .height(50)  
    .backgroundColor(color)  
    .fontSize(20)  
    .fontWeight(FontWeight.Bold)  
}  
  
@Entry  
@Component  
struct MyComponent {  
    build() {  
        Column({ space: 20 }) {  
            Button('Button 1', { type: ButtonType.Capsule }).buttonStyle(Color.Green)  
            Button('Button 2', { type: ButtonType.Capsule }).buttonStyle(Color.Red)  
        }  
        .width('80%')  
        .height('100%')  
        .justifyContent(FlexAlign.Center)  
    }  
}

3. 跨文件样式复用

在鸿蒙开发中,跨文件样式复用通常通过创建公共样式文件或自定义组件库来实现。这些公共样式或组件可以在多个页面或组件中重复使用,从而减少代码冗余。

公共样式文件

可以在项目的某个目录下创建公共样式文件(如styles.ets),然后在需要的地方导入并使用这些样式。

// styles.ets  
@Styles  
function commonTextStyle() {  
    .fontSize(16)  
    .fontWeight(FontWeight.Bold)  
}  
  
// 在其他文件中  
import { commonTextStyle } from './styles'  
  
@Entry  
@Component  
struct MyComponent {  
    build() {  
        Text('Hello').commonTextStyle()  
    }  
}

自定义组件库

对于复杂的样式复用场景,可以创建自定义组件库。这些组件库可以包含具有特定样式和功能的组件,供整个项目或跨项目使用。

// CustomButton.ets  
@Component  
export