當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。