当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript source-mutation.createPropertyMutation函数代码示例

本文整理汇总了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;
};
开发者ID:cryptobuks,项目名称:tandem,代码行数:58,代码来源:diff-patch.ts

示例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 [];
    });
开发者ID:cryptobuks,项目名称:tandem,代码行数:12,代码来源:artboard.ts

示例3: createPropertyMutation

export const createSyntheticSourceChangeMutation = (target: any, value: ExpressionLocation) => createPropertyMutation(SET_SYNTHETIC_SOURCE_CHANGE, target, "source", value);
开发者ID:cryptobuks,项目名称:tandem,代码行数:1,代码来源:node.ts

示例4: nodeValue

 set nodeValue(value: string) {
   this._nodeValue = value;
   this.dispatchMutationEvent(createPropertyMutation(UPDATE_VALUE_NODE, this, "nodeValue", value, undefined));
 }
开发者ID:cryptobuks,项目名称:tandem,代码行数:4,代码来源:node.ts


注:本文中的source-mutation.createPropertyMutation函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。