|
|
|
import {
|
|
|
|
SvelteComponent,
|
|
|
|
detach,
|
|
|
|
element,
|
|
|
|
empty,
|
|
|
|
init,
|
|
|
|
insert,
|
|
|
|
noop,
|
|
|
|
safe_not_equal
|
|
|
|
} from "svelte/internal";
|
|
|
|
|
|
|
|
function create_if_block(ctx) {
|
|
|
|
let p;
|
|
|
|
|
|
|
|
return {
|
|
|
|
c() {
|
|
|
|
p = element("p");
|
|
|
|
p.textContent = "foo!";
|
|
|
|
},
|
|
|
|
m(target, anchor) {
|
|
|
|
insert(target, p, anchor);
|
|
|
|
},
|
|
|
|
d(detaching) {
|
|
|
|
if (detaching) detach(p);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function create_fragment(ctx) {
|
|
|
|
let if_block_anchor;
|
|
|
|
let if_block = ctx.foo && create_if_block(ctx);
|
|
|
|
|
|
|
|
return {
|
|
|
|
c() {
|
|
|
|
if (if_block) if_block.c();
|
|
|
|
if_block_anchor = empty();
|
|
|
|
},
|
|
|
|
m(target, anchor) {
|
|
|
|
if (if_block) if_block.m(target, anchor);
|
|
|
|
insert(target, if_block_anchor, anchor);
|
|
|
|
},
|
|
|
|
p(changed, ctx) {
|
|
|
|
if (ctx.foo) {
|
|
|
|
if (!if_block) {
|
|
|
|
if_block = create_if_block(ctx);
|
|
|
|
if_block.c();
|
|
|
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
}
|
|
|
|
} else if (if_block) {
|
|
|
|
if_block.d(1);
|
|
|
|
if_block = null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
i: noop,
|
|
|
|
o: noop,
|
|
|
|
d(detaching) {
|
|
|
|
if (if_block) if_block.d(detaching);
|
|
|
|
if (detaching) detach(if_block_anchor);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
|
|
let { foo } = $$props;
|
|
|
|
|
|
|
|
$$self.$set = $$props => {
|
|
|
|
if ("foo" in $$props) $$invalidate("foo", foo = $$props.foo);
|
|
|
|
};
|
|
|
|
|
|
|
|
return { foo };
|
|
|
|
}
|
|
|
|
|
|
|
|
class Component extends SvelteComponent {
|
|
|
|
constructor(options) {
|
|
|
|
super();
|
|
|
|
init(this, options, instance, create_fragment, safe_not_equal, ["foo"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Component;
|