mirror of https://github.com/sveltejs/svelte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
3.2 KiB
144 lines
3.2 KiB
/* generated by Svelte vX.Y.Z */
|
|
import { SvelteComponent as SvelteComponent_1, animate, append, blankObject, createComment, createElement, createText, detachNode, fixAndOutroAndDestroyBlock, fix_position, flush, init, insert, noop, safe_not_equal, setData, updateKeyedEach } from "svelte/internal";
|
|
|
|
function get_each_context(ctx, list, i) {
|
|
const child_ctx = Object.create(ctx);
|
|
child_ctx.thing = list[i];
|
|
return child_ctx;
|
|
}
|
|
|
|
// (19:0) {#each things as thing (thing.id)}
|
|
function create_each_block(key_1, ctx) {
|
|
var div, text_value = ctx.thing.name, text, rect, stop_animation = noop;
|
|
|
|
return {
|
|
key: key_1,
|
|
|
|
first: null,
|
|
|
|
c() {
|
|
div = createElement("div");
|
|
text = createText(text_value);
|
|
this.first = div;
|
|
},
|
|
|
|
m(target, anchor) {
|
|
insert(target, div, anchor);
|
|
append(div, text);
|
|
},
|
|
|
|
p(changed, ctx) {
|
|
if ((changed.things) && text_value !== (text_value = ctx.thing.name)) {
|
|
setData(text, text_value);
|
|
}
|
|
},
|
|
|
|
r() {
|
|
rect = div.getBoundingClientRect();
|
|
},
|
|
|
|
f() {
|
|
fix_position(div);
|
|
stop_animation();
|
|
},
|
|
|
|
a() {
|
|
stop_animation();
|
|
stop_animation = animate(div, rect, foo, {});
|
|
},
|
|
|
|
d(detach) {
|
|
if (detach) {
|
|
detachNode(div);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
function create_fragment(ctx) {
|
|
var each_blocks = [], each_lookup = blankObject(), each_anchor;
|
|
|
|
var each_value = ctx.things;
|
|
|
|
const get_key = ctx => ctx.thing.id;
|
|
|
|
for (var i = 0; i < each_value.length; i += 1) {
|
|
let child_ctx = get_each_context(ctx, each_value, i);
|
|
let key = get_key(child_ctx);
|
|
each_blocks[i] = each_lookup[key] = create_each_block(key, child_ctx);
|
|
}
|
|
|
|
return {
|
|
c() {
|
|
for (i = 0; i < each_blocks.length; i += 1) each_blocks[i].c();
|
|
|
|
each_anchor = createComment();
|
|
},
|
|
|
|
m(target, anchor) {
|
|
for (i = 0; i < each_blocks.length; i += 1) each_blocks[i].m(target, anchor);
|
|
|
|
insert(target, each_anchor, anchor);
|
|
},
|
|
|
|
p(changed, ctx) {
|
|
const each_value = ctx.things;
|
|
for (let i = 0; i < each_blocks.length; i += 1) each_blocks[i].r();
|
|
each_blocks = updateKeyedEach(each_blocks, changed, get_key, 1, ctx, each_value, each_lookup, each_anchor.parentNode, fixAndOutroAndDestroyBlock, create_each_block, each_anchor, get_each_context);
|
|
for (let i = 0; i < each_blocks.length; i += 1) each_blocks[i].a();
|
|
},
|
|
|
|
i: noop,
|
|
o: noop,
|
|
|
|
d(detach) {
|
|
for (i = 0; i < each_blocks.length; i += 1) each_blocks[i].d(detach);
|
|
|
|
if (detach) {
|
|
detachNode(each_anchor);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
function foo(node, animation, params) {
|
|
const dx = animation.from.left - animation.to.left;
|
|
const dy = animation.from.top - animation.to.top;
|
|
|
|
return {
|
|
delay: params.delay,
|
|
duration: 100,
|
|
tick: (t, u) => {
|
|
node.dx = u * dx;
|
|
node.dy = u * dy;
|
|
}
|
|
};
|
|
}
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
let { things } = $$props;
|
|
|
|
$$self.$set = $$props => {
|
|
if ('things' in $$props) $$invalidate('things', things = $$props.things);
|
|
};
|
|
|
|
return { things };
|
|
}
|
|
|
|
class SvelteComponent extends SvelteComponent_1 {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, instance, create_fragment, safe_not_equal);
|
|
}
|
|
|
|
get things() {
|
|
return this.$$.ctx.things;
|
|
}
|
|
|
|
set things(things) {
|
|
this.$set({ things });
|
|
flush();
|
|
}
|
|
}
|
|
|
|
export default SvelteComponent; |