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.
53 lines
1.1 KiB
53 lines
1.1 KiB
7 years ago
|
/* generated by Svelte vX.Y.Z */
|
||
|
import { appendNode, assign, createSvgElement, detachNode, init, insertNode, noop, proto, setAttribute } from "svelte/shared.js";
|
||
|
|
||
|
function create_main_fragment(state, component) {
|
||
|
var svg, g, g_1;
|
||
|
|
||
|
return {
|
||
|
c: function create() {
|
||
|
svg = createSvgElement("svg");
|
||
|
g = createSvgElement("g");
|
||
|
g_1 = createSvgElement("g");
|
||
|
this.h();
|
||
|
},
|
||
|
|
||
|
h: function hydrate() {
|
||
|
setAttribute(g, "data-foo", "bar");
|
||
|
setAttribute(g_1, "data-foo", state.bar);
|
||
|
},
|
||
|
|
||
|
m: function mount(target, anchor) {
|
||
|
insertNode(svg, target, anchor);
|
||
|
appendNode(g, svg);
|
||
|
appendNode(g_1, svg);
|
||
|
},
|
||
|
|
||
|
p: function update(changed, state) {
|
||
|
if (changed.bar) {
|
||
|
setAttribute(g_1, "data-foo", state.bar);
|
||
|
}
|
||
|
},
|
||
|
|
||
|
u: function unmount() {
|
||
|
detachNode(svg);
|
||
|
},
|
||
|
|
||
|
d: noop
|
||
|
};
|
||
|
}
|
||
|
|
||
|
function SvelteComponent(options) {
|
||
|
init(this, options);
|
||
|
this._state = assign({}, options.data);
|
||
|
|
||
|
this._fragment = create_main_fragment(this._state, this);
|
||
|
|
||
|
if (options.target) {
|
||
|
this._fragment.c();
|
||
|
this._fragment.m(options.target, options.anchor || null);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
assign(SvelteComponent.prototype, proto);
|
||
|
export default SvelteComponent;
|