本文整理汇总了TypeScript中source-mutation.createPropertyMutation函数的典型用法代码示例。如果您正苦于以下问题:TypeScript createPropertyMutation函数的具体用法?TypeScript createPropertyMutation怎么用?TypeScript createPropertyMutation使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了createPropertyMutation函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: eachArrayValueMutation
const diffElement = (oldElement: SlimElement, newElement: SlimElement, path: any[]): Mutation<any[]>[] => {
const diffs: Mutation<any[]>[] = [];
eachArrayValueMutation(
diffArray(oldElement.attributes, newElement.attributes, (a, b) => {
if (a.name === b.name) {
return 0;
}
return -1;
}),
{
insert({ index, value }) {
diffs.push(
createPropertyMutation(INSERT_ATTRIBUTE, path, value.name, value.value, null, null, index)
);
},
delete({ index, value }) {
diffs.push(createPropertyMutation(REMOVE_ATTRIBUTE, path, value.name, null, null, null, index));
},
update({ index, newValue, originalOldIndex, patchedOldIndex }) {
const oldAttrValue = oldElement.attributes[originalOldIndex].value;
if (index !== patchedOldIndex) {
diffs.push(createMoveChildMutation(MOVE_ATTRIBUTE, path, null, index, patchedOldIndex));
}
if (!isEqual(newValue.value, oldAttrValue)) {
diffs.push(createPropertyMutation(SET_ATTRIBUTE, path, newValue.name, newValue.value, null, null, index));
}
}
}
);
if (oldElement.tagName === "style") {
diffs.push(
...diffCSSRule((oldElement as SlimStyleElement).sheet, (newElement as SlimStyleElement).sheet, [...path, "sheet"])
);
}
diffs.push(
...diffChildNodes(oldElement, newElement, path)
);
if (oldElement.shadow && newElement.shadow) {
diffs.push(
...diffDocumentFragment(oldElement.shadow, newElement.shadow, [...path, "shadow"])
);
} else if (oldElement.shadow && !newElement.shadow) {
diffs.push(
createSetValueMutation(REMOVE_SHADOW, path, null)
);
} else if (!oldElement.shadow && newElement.shadow) {
diffs.push(
createSetValueMutation(ATTACH_SHADOW, path, compressRootNode(newElement.shadow))
);
}
return diffs;
};
示例2: call
yield call(updateSharedArtboards, ownerId, artboardId, true, (nestedObject, hash, path, root) => {
if (nestedObject.type === SlimVMObjectType.STYLE_RULE) {
const rule = nestedObject as SlimCSSStyleRule;
if (!value) {
return [createPropertyMutation(CSS_DELETE_STYLE_PROPERTY, path, name, null, null, null, index)];
}
return [createPropertyMutation(CSS_SET_STYLE_PROPERTY, path, name, value, null, null, index)];
}
return [];
});
示例3: createPropertyMutation
export const createSyntheticSourceChangeMutation = (target: any, value: ExpressionLocation) => createPropertyMutation(SET_SYNTHETIC_SOURCE_CHANGE, target, "source", value);
示例4: nodeValue
set nodeValue(value: string) {
this._nodeValue = value;
this.dispatchMutationEvent(createPropertyMutation(UPDATE_VALUE_NODE, this, "nodeValue", value, undefined));
}