當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript source-mutation.createSetValueMutation函數代碼示例

本文整理匯總了TypeScript中source-mutation.createSetValueMutation函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript createSetValueMutation函數的具體用法?TypeScript createSetValueMutation怎麽用?TypeScript createSetValueMutation使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了createSetValueMutation函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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: switch

 return diffs.map(diff => {
   switch(diff.type) {
     case CSS_INSERT_RULE:
     case INSERT_CHILD_NODE: {
       const { type, target, index, child } = diff as InsertChildMutation<any, any>;
       let unzippedChild = uncompressRootNode(child);
       if (idSeed) {
         unzippedChild = setVMObjectIds(unzippedChild, idSeed, refCount);
         refCount = getRefCount(unzippedChild, idSeed);
       }
       return createInsertChildMutation(type, target, unzippedChild, index)
     }
     case ATTACH_SHADOW: {
       const { type, target, newValue } = diff as SetValueMutation<any>;
       let unzippedChild = uncompressRootNode(newValue);
       if (idSeed) {
         unzippedChild = setVMObjectIds(unzippedChild, idSeed, refCount);
         refCount = getRefCount(unzippedChild, idSeed);
       }
       return createSetValueMutation(type, target, unzippedChild);
     }
     default: {
       return diff;
     }
   }
 });
開發者ID:cryptobuks,項目名稱:tandem,代碼行數:26,代碼來源:diff-patch.ts

示例3: call

 yield call(updateSharedArtboards, styleRuleId, artboardId, true, (styleRule, hash, path, root) => {
   if (!newSelectorText) {
     const parentPath = path.slice(0, path.length - 1);
     return [
       createRemoveChildMutation(CSS_DELETE_RULE, parentPath, null, path[path.length - 1])
     ];
   }
   return [
     createSetValueMutation(CSS_SET_SELECTOR_TEXT, path, newSelectorText)
   ];
 });
開發者ID:cryptobuks,項目名稱:tandem,代碼行數:11,代碼來源:artboard.ts

示例4:

const diffCSSAtRule = (oldRule: SlimCSSAtRule, newRule: SlimCSSAtRule, path: any[]) => {
  const diffs = [];
  if (oldRule.params !== newRule.params) {
    diffs.push(createSetValueMutation(CSS_AT_RULE_SET_PARAMS, path, newRule.params));
  }

  diffs.push(
    ...diffCSSGroupingRuleChildren(oldRule, newRule, path)
  );

  return diffs;
}
開發者ID:cryptobuks,項目名稱:tandem,代碼行數:12,代碼來源:diff-patch.ts

示例5: createSetValueMutation

export const createUpdateValueNodeMutation = (oldNode: BasicValueNode, newValue: string) => {
  return createSetValueMutation(UPDATE_VALUE_NODE, oldNode, newValue);
};
開發者ID:cryptobuks,項目名稱:tandem,代碼行數:3,代碼來源:node.ts


注:本文中的source-mutation.createSetValueMutation函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。