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.
svelte/test/js/samples/if-block-no-update/expected.js

115 lines
2.3 KiB

7 years ago
import { appendNode, assign, createComment, createElement, createText, detachNode, insertNode, noop, proto } from "svelte/shared.js";
function create_main_fragment(state, component) {
7 years ago
var if_block_anchor;
var current_block_type = select_block_type(state);
var if_block = current_block_type(state, component);
return {
create: function() {
7 years ago
if_block.create();
if_block_anchor = createComment();
},
mount: function(target, anchor) {
if_block.mount(target, anchor);
insertNode(if_block_anchor, target, anchor);
},
update: function(changed, state) {
if (current_block_type !== (current_block_type = select_block_type(state))) {
7 years ago
if_block.unmount();
if_block.destroy();
if_block = current_block_type(state, component);
7 years ago
if_block.create();
if_block.mount(if_block_anchor.parentNode, if_block_anchor);
}
},
unmount: function() {
if_block.unmount();
detachNode(if_block_anchor);
7 years ago
},
destroy: function() {
if_block.destroy();
}
};
}
function create_if_block(state, component) {
7 years ago
var p, text;
return {
create: function() {
7 years ago
p = createElement( 'p' );
text = createText("foo!");
7 years ago
},
mount: function(target, anchor) {
insertNode( p, target, anchor );
appendNode(text, p);
},
unmount: function() {
7 years ago
detachNode( p );
},
destroy: noop
};
}
function create_if_block_1(state, component) {
7 years ago
var p, text;
return {
create: function() {
7 years ago
p = createElement( 'p' );
text = createText("not foo!");
7 years ago
},
mount: function(target, anchor) {
insertNode( p, target, anchor );
appendNode(text, p);
},
unmount: function() {
7 years ago
detachNode( p );
},
destroy: noop
};
}
function select_block_type(state) {
if (state.foo) return create_if_block;
return create_if_block_1;
}
function SvelteComponent(options) {
this.options = options;
this._state = options.data || {};
this._observers = {
pre: Object.create(null),
post: Object.create(null)
};
this._handlers = Object.create(null);
8 years ago
this._root = options._root || this;
this._yield = options._yield;
7 years ago
this._bind = options._bind;
this._fragment = create_main_fragment(this._state, this);
7 years ago
if (options.target) {
7 years ago
this._fragment.create();
this._fragment.mount(options.target, options.anchor || null);
7 years ago
}
}
assign(SvelteComponent.prototype, proto );
7 years ago
export default SvelteComponent;