mirror of https://github.com/sveltejs/svelte
feat: optimise svelte-element output code for static tag and static attribute (#8161)
* feat: optimise svelte-element output code for static tag and static attribute * Update src/compiler/compile/render_dom/wrappers/Element/index.ts Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * Update src/runtime/internal/dom.ts Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * Update src/compiler/compile/render_dom/wrappers/Element/index.ts Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * fix logic * fix pipeline errors --------- Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>pull/7774/head
parent
d4363510fc
commit
f6dc86f02c
@ -0,0 +1,244 @@
|
|||||||
|
/* generated by Svelte vX.Y.Z */
|
||||||
|
import {
|
||||||
|
SvelteComponent,
|
||||||
|
assign,
|
||||||
|
detach,
|
||||||
|
element,
|
||||||
|
empty,
|
||||||
|
get_spread_update,
|
||||||
|
init,
|
||||||
|
insert,
|
||||||
|
noop,
|
||||||
|
safe_not_equal,
|
||||||
|
set_dynamic_element_data,
|
||||||
|
space,
|
||||||
|
toggle_class
|
||||||
|
} from "svelte/internal";
|
||||||
|
|
||||||
|
function create_dynamic_element_3(ctx) {
|
||||||
|
let svelte_element;
|
||||||
|
|
||||||
|
return {
|
||||||
|
c() {
|
||||||
|
svelte_element = element(static_value);
|
||||||
|
set_dynamic_element_data(static_value)(svelte_element, { static_value, ...static_obj });
|
||||||
|
toggle_class(svelte_element, "foo", static_value);
|
||||||
|
},
|
||||||
|
m(target, anchor) {
|
||||||
|
insert(target, svelte_element, anchor);
|
||||||
|
},
|
||||||
|
p: noop,
|
||||||
|
d(detaching) {
|
||||||
|
if (detaching) detach(svelte_element);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// (10:0) <svelte:element this={dynamic_value} {static_value} {...static_obj} class:foo={static_value} />
|
||||||
|
function create_dynamic_element_2(ctx) {
|
||||||
|
let svelte_element;
|
||||||
|
|
||||||
|
return {
|
||||||
|
c() {
|
||||||
|
svelte_element = element(/*dynamic_value*/ ctx[0]);
|
||||||
|
set_dynamic_element_data(/*dynamic_value*/ ctx[0])(svelte_element, { static_value, ...static_obj });
|
||||||
|
toggle_class(svelte_element, "foo", static_value);
|
||||||
|
},
|
||||||
|
m(target, anchor) {
|
||||||
|
insert(target, svelte_element, anchor);
|
||||||
|
},
|
||||||
|
p: noop,
|
||||||
|
d(detaching) {
|
||||||
|
if (detaching) detach(svelte_element);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// (12:0) <svelte:element this={static_value} {dynamic_value} {...dynamic_obj} class:foo={dynamic_value} />
|
||||||
|
function create_dynamic_element_1(ctx) {
|
||||||
|
let svelte_element;
|
||||||
|
let svelte_element_levels = [{ dynamic_value: /*dynamic_value*/ ctx[0] }, /*dynamic_obj*/ ctx[1]];
|
||||||
|
let svelte_element_data = {};
|
||||||
|
|
||||||
|
for (let i = 0; i < svelte_element_levels.length; i += 1) {
|
||||||
|
svelte_element_data = assign(svelte_element_data, svelte_element_levels[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
c() {
|
||||||
|
svelte_element = element(static_value);
|
||||||
|
set_dynamic_element_data(static_value)(svelte_element, svelte_element_data);
|
||||||
|
toggle_class(svelte_element, "foo", /*dynamic_value*/ ctx[0]);
|
||||||
|
},
|
||||||
|
m(target, anchor) {
|
||||||
|
insert(target, svelte_element, anchor);
|
||||||
|
},
|
||||||
|
p(ctx, dirty) {
|
||||||
|
set_dynamic_element_data(static_value)(svelte_element, svelte_element_data = get_spread_update(svelte_element_levels, [
|
||||||
|
dirty & /*dynamic_value*/ 1 && { dynamic_value: /*dynamic_value*/ ctx[0] },
|
||||||
|
dirty & /*dynamic_obj*/ 2 && /*dynamic_obj*/ ctx[1]
|
||||||
|
]));
|
||||||
|
|
||||||
|
toggle_class(svelte_element, "foo", /*dynamic_value*/ ctx[0]);
|
||||||
|
},
|
||||||
|
d(detaching) {
|
||||||
|
if (detaching) detach(svelte_element);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// (14:0) <svelte:element this={dynamic_value} {dynamic_value} {...dynamic_obj} class:foo={dynamic_value} />
|
||||||
|
function create_dynamic_element(ctx) {
|
||||||
|
let svelte_element;
|
||||||
|
let svelte_element_levels = [{ dynamic_value: /*dynamic_value*/ ctx[0] }, /*dynamic_obj*/ ctx[1]];
|
||||||
|
let svelte_element_data = {};
|
||||||
|
|
||||||
|
for (let i = 0; i < svelte_element_levels.length; i += 1) {
|
||||||
|
svelte_element_data = assign(svelte_element_data, svelte_element_levels[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
c() {
|
||||||
|
svelte_element = element(/*dynamic_value*/ ctx[0]);
|
||||||
|
set_dynamic_element_data(/*dynamic_value*/ ctx[0])(svelte_element, svelte_element_data);
|
||||||
|
toggle_class(svelte_element, "foo", /*dynamic_value*/ ctx[0]);
|
||||||
|
},
|
||||||
|
m(target, anchor) {
|
||||||
|
insert(target, svelte_element, anchor);
|
||||||
|
},
|
||||||
|
p(ctx, dirty) {
|
||||||
|
set_dynamic_element_data(/*dynamic_value*/ ctx[0])(svelte_element, svelte_element_data = get_spread_update(svelte_element_levels, [
|
||||||
|
dirty & /*dynamic_value*/ 1 && { dynamic_value: /*dynamic_value*/ ctx[0] },
|
||||||
|
dirty & /*dynamic_obj*/ 2 && /*dynamic_obj*/ ctx[1]
|
||||||
|
]));
|
||||||
|
|
||||||
|
toggle_class(svelte_element, "foo", /*dynamic_value*/ ctx[0]);
|
||||||
|
},
|
||||||
|
d(detaching) {
|
||||||
|
if (detaching) detach(svelte_element);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function create_fragment(ctx) {
|
||||||
|
let t0;
|
||||||
|
let previous_tag = /*dynamic_value*/ ctx[0];
|
||||||
|
let t1;
|
||||||
|
let t2;
|
||||||
|
let previous_tag_1 = /*dynamic_value*/ ctx[0];
|
||||||
|
let svelte_element3_anchor;
|
||||||
|
let svelte_element0 = static_value && create_dynamic_element_3(ctx);
|
||||||
|
let svelte_element1 = /*dynamic_value*/ ctx[0] && create_dynamic_element_2(ctx);
|
||||||
|
let svelte_element2 = static_value && create_dynamic_element_1(ctx);
|
||||||
|
let svelte_element3 = /*dynamic_value*/ ctx[0] && create_dynamic_element(ctx);
|
||||||
|
|
||||||
|
return {
|
||||||
|
c() {
|
||||||
|
if (svelte_element0) svelte_element0.c();
|
||||||
|
t0 = space();
|
||||||
|
if (svelte_element1) svelte_element1.c();
|
||||||
|
t1 = space();
|
||||||
|
if (svelte_element2) svelte_element2.c();
|
||||||
|
t2 = space();
|
||||||
|
if (svelte_element3) svelte_element3.c();
|
||||||
|
svelte_element3_anchor = empty();
|
||||||
|
},
|
||||||
|
m(target, anchor) {
|
||||||
|
if (svelte_element0) svelte_element0.m(target, anchor);
|
||||||
|
insert(target, t0, anchor);
|
||||||
|
if (svelte_element1) svelte_element1.m(target, anchor);
|
||||||
|
insert(target, t1, anchor);
|
||||||
|
if (svelte_element2) svelte_element2.m(target, anchor);
|
||||||
|
insert(target, t2, anchor);
|
||||||
|
if (svelte_element3) svelte_element3.m(target, anchor);
|
||||||
|
insert(target, svelte_element3_anchor, anchor);
|
||||||
|
},
|
||||||
|
p(ctx, [dirty]) {
|
||||||
|
if (static_value) {
|
||||||
|
svelte_element0.p(ctx, dirty);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (/*dynamic_value*/ ctx[0]) {
|
||||||
|
if (!previous_tag) {
|
||||||
|
svelte_element1 = create_dynamic_element_2(ctx);
|
||||||
|
previous_tag = /*dynamic_value*/ ctx[0];
|
||||||
|
svelte_element1.c();
|
||||||
|
svelte_element1.m(t1.parentNode, t1);
|
||||||
|
} else if (safe_not_equal(previous_tag, /*dynamic_value*/ ctx[0])) {
|
||||||
|
svelte_element1.d(1);
|
||||||
|
svelte_element1 = create_dynamic_element_2(ctx);
|
||||||
|
previous_tag = /*dynamic_value*/ ctx[0];
|
||||||
|
svelte_element1.c();
|
||||||
|
svelte_element1.m(t1.parentNode, t1);
|
||||||
|
} else {
|
||||||
|
svelte_element1.p(ctx, dirty);
|
||||||
|
}
|
||||||
|
} else if (previous_tag) {
|
||||||
|
svelte_element1.d(1);
|
||||||
|
svelte_element1 = null;
|
||||||
|
previous_tag = /*dynamic_value*/ ctx[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (static_value) {
|
||||||
|
svelte_element2.p(ctx, dirty);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (/*dynamic_value*/ ctx[0]) {
|
||||||
|
if (!previous_tag_1) {
|
||||||
|
svelte_element3 = create_dynamic_element(ctx);
|
||||||
|
previous_tag_1 = /*dynamic_value*/ ctx[0];
|
||||||
|
svelte_element3.c();
|
||||||
|
svelte_element3.m(svelte_element3_anchor.parentNode, svelte_element3_anchor);
|
||||||
|
} else if (safe_not_equal(previous_tag_1, /*dynamic_value*/ ctx[0])) {
|
||||||
|
svelte_element3.d(1);
|
||||||
|
svelte_element3 = create_dynamic_element(ctx);
|
||||||
|
previous_tag_1 = /*dynamic_value*/ ctx[0];
|
||||||
|
svelte_element3.c();
|
||||||
|
svelte_element3.m(svelte_element3_anchor.parentNode, svelte_element3_anchor);
|
||||||
|
} else {
|
||||||
|
svelte_element3.p(ctx, dirty);
|
||||||
|
}
|
||||||
|
} else if (previous_tag_1) {
|
||||||
|
svelte_element3.d(1);
|
||||||
|
svelte_element3 = null;
|
||||||
|
previous_tag_1 = /*dynamic_value*/ ctx[0];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
i: noop,
|
||||||
|
o: noop,
|
||||||
|
d(detaching) {
|
||||||
|
if (svelte_element0) svelte_element0.d(detaching);
|
||||||
|
if (detaching) detach(t0);
|
||||||
|
if (svelte_element1) svelte_element1.d(detaching);
|
||||||
|
if (detaching) detach(t1);
|
||||||
|
if (svelte_element2) svelte_element2.d(detaching);
|
||||||
|
if (detaching) detach(t2);
|
||||||
|
if (detaching) detach(svelte_element3_anchor);
|
||||||
|
if (svelte_element3) svelte_element3.d(detaching);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
let static_value = 'a';
|
||||||
|
|
||||||
|
function instance($$self, $$props, $$invalidate) {
|
||||||
|
let { dynamic_value } = $$props;
|
||||||
|
let { dynamic_obj } = $$props;
|
||||||
|
let static_obj = {};
|
||||||
|
|
||||||
|
$$self.$$set = $$props => {
|
||||||
|
if ('dynamic_value' in $$props) $$invalidate(0, dynamic_value = $$props.dynamic_value);
|
||||||
|
if ('dynamic_obj' in $$props) $$invalidate(1, dynamic_obj = $$props.dynamic_obj);
|
||||||
|
};
|
||||||
|
|
||||||
|
return [dynamic_value, dynamic_obj, static_obj];
|
||||||
|
}
|
||||||
|
|
||||||
|
class Component extends SvelteComponent {
|
||||||
|
constructor(options) {
|
||||||
|
super();
|
||||||
|
init(this, options, instance, create_fragment, safe_not_equal, { dynamic_value: 0, dynamic_obj: 1 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Component;
|
@ -0,0 +1,14 @@
|
|||||||
|
<script>
|
||||||
|
export let dynamic_value;
|
||||||
|
export let dynamic_obj;
|
||||||
|
let static_value = 'a';
|
||||||
|
let static_obj = {};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<svelte:element this={static_value} {static_value} {...static_obj} class:foo={static_value} />
|
||||||
|
|
||||||
|
<svelte:element this={dynamic_value} {static_value} {...static_obj} class:foo={static_value} />
|
||||||
|
|
||||||
|
<svelte:element this={static_value} {dynamic_value} {...dynamic_obj} class:foo={dynamic_value} />
|
||||||
|
|
||||||
|
<svelte:element this={dynamic_value} {dynamic_value} {...dynamic_obj} class:foo={dynamic_value} />
|
Loading…
Reference in new issue