- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 TS 中有一个项目需要一些类来实现以下接口(interface):
interface IStylable {
readonly styles: {
[property: string]: string
};
addStyles (styles: { [property: string]: string }): void;
updateStyles (styles: { [property: string]: string }): void;
removeStyles (styles: Array<string>): void;
}
为了避免样板代码,我决定创建一个 Mixin并将其应用于我需要的每个类(class)。 (我可以使用抽象类,但我的问题需要多重继承解决方案,TS 不提供。) 下面是 IStylable
接口(interface)的类实现:
export class StylableClass implements IStylable {
private readonly _styles: { [property: string]: string } = {};
// For each property provided in styles param, check if the property
// is not already present in this._styles and add it. This way we
// do not overide existing property values.
public addStyles (styles: { [property: string]: string }): void {
for (const [property, value] of Object.entries(styles)) {
if (!this._styles.hasOwnProperty(property)) {
this._styles[property] = value;
}
}
}
// For each property provided in styles param, check if the property
// is already present in this._styles and add it. This way we
// do add property values values that do not exist.
public updateStyles (styles: { [property: string]: string }): void {
for (const [property, value] of Object.entries(styles)) {
if (this._styles.hasOwnProperty(property)) {
this._styles[property] = value;
}
}
}
// For each property in styles param, check if it is present in this._styles
// and remove it.
public removeStyles (styles: Array<string>): void {
for (const property of styles) {
if (this._styles.hasOwnProperty(property)) {
delete this._styles[property];
}
}
}
public set styles (styles: { [property: string]: string }) {
this.addStyles(styles);
}
public get styles (): { [property: string]: string } {
return this._styles;
}
}
让我真正兴奋和期待的是 ES6 中装饰器规范的标准化。 Typescript 通过在 tsconfig.json
中设置 experimentalDecorators
标志来允许此实验性功能。我希望将 StylableClass
用作类装饰器 (@Stylable
) 以使代码更简洁,因此我创建了一个接受类并将其转换为装饰器的函数:
export function makeDecorator (decorator: Function) {
return function (decorated: Function) {
const fieldCollector: { [key: string]: string } = {};
decorator.apply(fieldCollector);
Object.getOwnPropertyNames(fieldCollector).forEach((name) => {
decorated.prototype[name] = fieldCollector[name];
});
Object.getOwnPropertyNames(decorator.prototype).forEach((name) => {
decorated.prototype[name] = decorator.prototype[name];
});
};
}
并像这样使用它:
export const Stylable = () => makeDecorator(StylableClass);
现在是单元测试的时候了。我创建了一个虚拟类来应用我的装饰器,并为 addStyles()
方法编写了一个简单的测试。
@Stylable()
class StylableTest {
// Stylable
public addStyles!: (styles: {
[prop: string]: string;
}) => void;
public updateStyles!: (styles: {
[prop: string]: string;
}) => void;
public removeStyles!: (styles: string[]) => void;
public styles: { [property: string]: string } = {};
}
describe('Test Stylable mixin', () => {
it('should add styles', () => {
const styles1 = {
float: 'left',
color: '#000'
};
const styles2 = {
background: '#fff',
width: '100px'
};
// 1
const styles = new StylableTest();
expect(styles.styles).to.be.an('object').that.is.empty;
// 2
styles.addStyles(styles1);
expect(styles.styles).to.eql(styles1);
// 3
styles.addStyles(styles2);
expect(styles.styles).to.eql(Object.assign({}, styles1, styles2));
});
});
问题是第二个 expect 语句失败了。在执行 styles.addStyles(styles1);
之后,styles.styles
数组应该包含 styles1
对象时仍然是空的。当我调试我的代码时,我发现 addStyles()
方法中的 push
语句按预期执行,因此循环没有问题,但是数组在执行后没有更新方法的执行结束。您能否就我遗漏的内容提供提示或解决方案?我检查的第一件事是 makeDecorator
函数可能出了问题,但只要我可以执行这些方法,我就找不到其他线索来寻找。
最佳答案
StylableClass
mixin 声明了一个名为styles
的属性。但是 StylableTest
创建了一个名为 styles
的字段,并为其分配了一个无人会使用的空对象。您需要将属性描述从装饰器转移到目标类,并从 StylableTest
中的 styles
中删除 = {}
:
function makeDecorator(decorator) {
return function (decorated) {
var fieldCollector = {};
decorator.apply(fieldCollector);
Object.getOwnPropertyNames(fieldCollector).forEach(function (name) {
decorated.prototype[name] = fieldCollector[name];
});
Object.getOwnPropertyNames(decorator.prototype).forEach(function (name) {
var descriptor = Object.getOwnPropertyDescriptor(decorator.prototype, name);
if (descriptor) {
Object.defineProperty(decorated.prototype, name, descriptor);
}
else {
decorated.prototype[name] = decorator.prototype[name];
}
});
};
}
我可以建议 less error prone approach在 typescript 中混合。这种必须重新声明所有 mixin 成员的方法将在以后导致错误。至少避免使用类型查询重述字段的类型:
@Stylable()
class StylableTest {
// Stylable
public addStyles!: IStylable['addStyles']
public updateStyles!: IStylable['updateStyles']
public removeStyles!: IStylable['removeStyles']
public styles!: IStylable['styles']
}
关于typescript - Mixin 作为 TypeScript 中的类装饰器不会更新类属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50986378/
乐 mixins具有两个(或更多)性质,在同一个容器中组合多个值,或者值与角色一起。但是,据我所知,没有一种直接的方法可以检查不是由您创建的变量中的“混合性”。 这可能是个伎俩 my $foo = 3
我对 sass 比较陌生,但是当我学习它时,Sass 网站说要开始使用 @use 而不是 import,所以经过大量的反复试验,我终于弄清楚了如何使用它与导入相同。 注意:我使用 Prepros 进行
给定一个看起来像这样的代码片段,我如何编写一个函数来检查给定对象是否实现了某个混合?我尝试使用指针转换,但由于它们具有相同的基础,因此每个结果都是非空的,但我猜测有一个模板化的解决方案,但找不到我可以
我正在使用 Typescript 2.2 的 mixin,并且想使用另一个 mixin 的属性。 文档显示可以将 mixins 限制为仅混合到某些类中...... const WithLocation
我如何创建一个将嵌套的 mixin 属性用作参数的 mixin? 我用下一个例子来解释自己。 我有一个“过渡属性”mixin: .transition-property (@props){ -we
我浏览了language documentation而且 Google Dart 似乎不支持 mixins(接口(interface)中没有方法主体,没有多重继承,没有类似 Ruby 的模块)。我对此
我想编写返回混合的函数/混合。例如我有这个 mixin: @mixin generate-offsets-from-map($class-slug,$type,$from, $to, $step) {
所有 Less 文档和教程都使用 #namespace > .mixin()当它进入命名空间时的语法。但是我发现自己更习惯于 .namespace.mixin()语法,即: .namespace()
我正在努力实现以下目标: class A { def foo() { "foo" } } class B { def bar() { "bar" } } A.mixin B def a = n
出于本问题的目的,将“mixin”视为 https://www.typescriptlang.org/docs/handbook/mixins.html 中所述的函数。 .在这种情况下,mixin 扩
如何在 vue mixins 中组合两个函数? Vue.mixin({ methods: { functionOne: () => { console.log(1)
我需要重写 mixin 添加的一些成员函数来自第三方库。问题是:mixin 立即在多个第 3 方类定义中使用,在定义 mixin 的同一个脚本文件中。我只能在此脚本之前或之后插入自定义代码,而不能在两
我有一些基本的 mixin,它们使用媒体查询应用一些规则 .on-small(@rules) { @media (@minWidthSmall) { @rules(); } } .on-mediu
我尝试安装 npm 包。所有软件包都安装正确。 但是当我尝试使用 npm start 运行应用程序时当时发生以下错误: ERROR in ./node_modules/css-loader?{"sou
这里有两个mixin @mixin parent { .parent & { @content; } } @mixin child($child) { .#{$child} & {
我在另一个 mixins 中有一个 mixins .background(@url: @base-url , @repeat: repeat, @pos1: left, @pos2: center
我有这个: 如您所见,我目前有一个包含按钮样式混合宏的条件,无论如何我可以自动包含一个吗?例如: @mixin button($color) @include button-#{$color} 最
我有以下代码,可以很好地将各种 std::tuples 转发到我的“BaseSensor”主机类的各种 mixin。 #include // std::cout std::endl #include
我按照概述的方式组织我的 sass (scss) 文件 here ... stylesheets/ | |-- modules/ # Common modules | |
所以,这是我的第一个 mixin .3transitions (@value1,@value2,@value3,@duration){ @value: ~"@{value1},@{value2}
我是一名优秀的程序员,十分优秀!