翼度科技»论坛 编程开发 JavaScript 查看内容

StencilJs学习之组件装饰器

4

主题

4

帖子

12

积分

新手上路

Rank: 1

积分
12
stenciljs 可以方便的构建交互式组件
支持以下装饰器

  • component
  • state
  • prop
  • watch
  • method
  • element
  • event
  • listen
Component 装饰器

@Component 是一个装饰器,它将 TypeScript 类指定为 Stencil 组件。 每个模板组件在构建时都会转换为 Web component。
  1. import { Component } from '@stencil/core';
  2. @Component({
  3.   tag: 'todo-list',
  4.   styleUrl: './todo-list.css',
  5.   // additional options
  6. })
  7. export class TodoList {
  8.   // implementation omitted
  9. }
复制代码
@Component装饰器还有其它的一些参数

  • assetsDirs: 是从组件到包含组件所需的静态文件(资产)的目录的相对路径数组。
  • scope:是否隔离css的作用域,如果启用了shadow则此项不能设置为 true。
  • shadow: 阴影dom用来隔离样式。
  • styleUrls:包含要应用于组件的样式的外部样式表的相对 URL 列表。
  • styles:内联 CSS 而不是使用外部样式表的字符串。
State

@State 用于内部的状态管理,修改 @State装饰的变量会触发组件的重新渲染
  1. import { Component, State, h } from '@stencil/core';
  2. @Component({
  3.     tag: 'current-time',
  4. })
  5. export class CurrentTime {
  6.     timer: number;
  7.     // `currentTime` is decorated with `@State()`,
  8.     // as we need to trigger a rerender when its
  9.     // value changes to show the latest time
  10.     @State() currentTime: number = Date.now();
  11.    
  12.     connectedCallback() {
  13.         this.timer = window.setInterval(() => {            
  14.             // the assignment to `this.currentTime`
  15.             // will trigger a re-render
  16.             this.currentTime = Date.now();
  17.         }, 1000);
  18.     }
  19.     disconnectedCallback() {
  20.         window.clearInterval(this.timer);
  21.     }
  22.     render() {
  23.         const time = new Date(this.currentTime).toLocaleTimeString();
  24.         return (
  25.             {time}
  26.         );
  27.     }
  28. }
复制代码
Prop

@Prop 是用于声明外部数据传入组件的装饰器。
支持的数据类型有 number string boolean Object array,可以
使用this 进行数据访问,在html 设置需要使用dash-case 方式
在jsx 中使用camelCase 方式,默认prop 是不可变的,使用添加
mutable: true 进行修改, 使用 reflech 可以保持 prop 和 html属性 同步
  1. import { Component, Prop, h } from '@stencil/core';
  2. @Component({
  3.     tag: 'todo-list-item',
  4. })
  5. export class ToDoListItem {
  6.     @Prop({
  7.         mutable: true,
  8.         reflect: false
  9.     }) isComplete: boolean = false;
  10.     @Prop({ reflect: true }) timesCompletedInPast: number = 2;
  11.     @Prop({ reflect: true }) thingToDo: string = "Read Reflect Section of Stencil Docs";
  12. }
复制代码
Watch

@Watch()是应用于模具组件方法的修饰器。 修饰器接受单个参数,即用 @Prop() 或 @State() 修饰的类成员的名称。 用 @Watch() 修饰的方法将在其关联的类成员更改时自动运行。
  1. // We import Prop & State to show how `@Watch()` can be used on
  2. // class members decorated with either `@Prop()` or `@State()`
  3. import { Component, Prop, State, Watch } from '@stencil/core';
  4. @Component({
  5.   tag: 'loading-indicator'
  6. })
  7. export class LoadingIndicator {
  8.   // We decorate a class member with @Prop() so that we
  9.   // can apply @Watch()
  10.   @Prop() activated: boolean;
  11.   // We decorate a class member with @State() so that we
  12.   // can apply @Watch()
  13.   @State() busy: boolean;
  14.   // Apply @Watch() for the component's `activated` member.
  15.   // Whenever `activated` changes, this method will fire.
  16.   @Watch('activated')
  17.   watchPropHandler(newValue: boolean, oldValue: boolean) {
  18.     console.log('The old value of activated is: ', oldValue);
  19.     console.log('The new value of activated is: ', newValue);
  20.   }
  21.   // Apply @Watch() for the component's `busy` member.
  22.   // Whenever `busy` changes, this method will fire.
  23.   @Watch('busy')
  24.   watchStateHandler(newValue: boolean, oldValue: boolean) {
  25.     console.log('The old value of busy is: ', oldValue);
  26.     console.log('The new value of busy is: ', newValue);
  27.   }
  28.   
  29.   @Watch('activated')
  30.   @Watch('busy')
  31.   watchMultiple(newValue: boolean, oldValue: boolean, propName:string) {
  32.     console.log(`The new value of ${propName} is: `, newValue);
  33.   }
  34. }
复制代码
mehtod

可以方便的导出函数,方便外部调用。
  1. import { Method } from '@stencil/core';
  2. export class TodoList {
  3.   @Method()
  4.   async showPrompt() {
  5.     // show a prompt
  6.   }
  7. }
  8. // used registered
  9. el.showPrompt();
复制代码
Element

@Element 装饰器是如何访问类实例中的 host 元素。这将返回一个 HTMLElement 实例,因此可以在此处使用标准 DOM 方法/事件。
  1. import { Element } from '@stencil/core';
  2. ...
  3. export class TodoList {
  4.   @Element() el: HTMLElement;
  5.   getListHeight(): number {
  6.     return this.el.getBoundingClientRect().height;
  7.   }
  8. }
复制代码
其它

Event 和 Listen 装饰器将在下一节 事件 中讲解。

来源:https://www.cnblogs.com/guojikun/p/17491469.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具