Match-id-30ecadc80ad5388949a0fc159b3355ae65b8f9b3

This commit is contained in:
* 2022-04-07 19:15:39 +08:00 committed by *
parent 6ba8beea86
commit e0ac32cda9
4 changed files with 14 additions and 21 deletions

View File

@ -1,19 +1,13 @@
module.exports = {
extends: [
'eslint:recommended',
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
],
root: true,
plugins: [
'jest',
'no-for-of-loops',
'no-function-declare-after-return',
'react',
'@typescript-eslint',
],
plugins: ['jest', 'no-for-of-loops', 'no-function-declare-after-return', 'react', '@typescript-eslint'],
parser: '@typescript-eslint/parser',
parserOptions: {
@ -34,8 +28,8 @@ module.exports = {
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'semi': ['warn', 'always'],
'quotes': ['warn', 'single'],
semi: ['warn', 'always'],
quotes: ['warn', 'single'],
'accessor-pairs': 'off',
'brace-style': ['error', '1tbs'],
'func-style': ['warn', 'declaration', { allowArrowFunctions: true }],
@ -44,19 +38,18 @@ module.exports = {
// 尾随逗号
'comma-dangle': ['error', 'only-multiline'],
'no-constant-condition': 'off',
'no-for-of-loops/no-for-of-loops': 'error',
'no-function-declare-after-return/no-function-declare-after-return': 'error',
},
globals: {
isDev: true
isDev: true,
},
overrides: [
{
files: [
'scripts/__tests__/**/*.js'
],
files: ['scripts/__tests__/**/*.js'],
globals: {
container: true
container: true,
},
},
],

View File

@ -6,7 +6,7 @@ import {Props} from '../DOMOperator';
* @param doc document
*/
export function getFocusedDom(doc?: Document): HorizonDom | null {
let currentDocument = doc ?? document;
const currentDocument = doc ?? document;
return currentDocument.activeElement ?? currentDocument.body;
}

View File

@ -201,7 +201,7 @@ export function onlyUpdateChildVNodes(processing: VNode): VNode | null {
sibling = sibling.next;
}
}
}
};
putChildrenIntoQueue(processing.child);
@ -210,7 +210,7 @@ export function onlyUpdateChildVNodes(processing: VNode): VNode | null {
markVNodePath(vNode);
putChildrenIntoQueue(vNode)
putChildrenIntoQueue(vNode);
}
}
// 子树无需工作

View File

@ -53,7 +53,7 @@ export function setParentsChildShouldUpdate(parent: VNode | null) {
// 设置节点的所有父节点的childShouldUpdate
export function updateParentsChildShouldUpdate(vNode: VNode) {
let node = vNode.parent;
let isShouldUpdate = vNode.shouldUpdate || vNode.childShouldUpdate;
const isShouldUpdate = vNode.shouldUpdate || vNode.childShouldUpdate;
if (isShouldUpdate) { // 开始节点是shouldUpdate或childShouldUpdate
// 更新从当前节点到根节点的childShouldUpdate为true