655 lines
17 KiB
JavaScript
655 lines
17 KiB
JavaScript
function noop() {
|
|
}
|
|
function run(fn) {
|
|
return fn();
|
|
}
|
|
function blank_object() {
|
|
return Object.create(null);
|
|
}
|
|
function run_all(fns) {
|
|
fns.forEach(run);
|
|
}
|
|
function is_function(thing) {
|
|
return typeof thing === "function";
|
|
}
|
|
function safe_not_equal(a, b) {
|
|
return a != a ? b == b : a !== b || (a && typeof a === "object" || typeof a === "function");
|
|
}
|
|
let src_url_equal_anchor;
|
|
function src_url_equal(element_src, url) {
|
|
if (!src_url_equal_anchor) {
|
|
src_url_equal_anchor = document.createElement("a");
|
|
}
|
|
src_url_equal_anchor.href = url;
|
|
return element_src === src_url_equal_anchor.href;
|
|
}
|
|
function is_empty(obj) {
|
|
return Object.keys(obj).length === 0;
|
|
}
|
|
function append(target, node) {
|
|
target.appendChild(node);
|
|
}
|
|
function insert(target, node, anchor) {
|
|
target.insertBefore(node, anchor || null);
|
|
}
|
|
function detach(node) {
|
|
node.parentNode.removeChild(node);
|
|
}
|
|
function destroy_each(iterations, detaching) {
|
|
for (let i = 0; i < iterations.length; i += 1) {
|
|
if (iterations[i])
|
|
iterations[i].d(detaching);
|
|
}
|
|
}
|
|
function element(name) {
|
|
return document.createElement(name);
|
|
}
|
|
function text(data) {
|
|
return document.createTextNode(data);
|
|
}
|
|
function space() {
|
|
return text(" ");
|
|
}
|
|
function empty() {
|
|
return text("");
|
|
}
|
|
function attr(node, attribute, value) {
|
|
if (value == null)
|
|
node.removeAttribute(attribute);
|
|
else if (node.getAttribute(attribute) !== value)
|
|
node.setAttribute(attribute, value);
|
|
}
|
|
function children(element2) {
|
|
return Array.from(element2.childNodes);
|
|
}
|
|
function set_data(text2, data) {
|
|
data = "" + data;
|
|
if (text2.wholeText !== data)
|
|
text2.data = data;
|
|
}
|
|
function attribute_to_object(attributes) {
|
|
const result = {};
|
|
for (const attribute of attributes) {
|
|
result[attribute.name] = attribute.value;
|
|
}
|
|
return result;
|
|
}
|
|
let current_component;
|
|
function set_current_component(component) {
|
|
current_component = component;
|
|
}
|
|
function get_current_component() {
|
|
if (!current_component)
|
|
throw new Error("Function called outside component initialization");
|
|
return current_component;
|
|
}
|
|
function onMount(fn) {
|
|
get_current_component().$$.on_mount.push(fn);
|
|
}
|
|
const dirty_components = [];
|
|
const binding_callbacks = [];
|
|
const render_callbacks = [];
|
|
const flush_callbacks = [];
|
|
const resolved_promise = Promise.resolve();
|
|
let update_scheduled = false;
|
|
function schedule_update() {
|
|
if (!update_scheduled) {
|
|
update_scheduled = true;
|
|
resolved_promise.then(flush);
|
|
}
|
|
}
|
|
function add_render_callback(fn) {
|
|
render_callbacks.push(fn);
|
|
}
|
|
let flushing = false;
|
|
const seen_callbacks = new Set();
|
|
function flush() {
|
|
if (flushing)
|
|
return;
|
|
flushing = true;
|
|
do {
|
|
for (let i = 0; i < dirty_components.length; i += 1) {
|
|
const component = dirty_components[i];
|
|
set_current_component(component);
|
|
update(component.$$);
|
|
}
|
|
set_current_component(null);
|
|
dirty_components.length = 0;
|
|
while (binding_callbacks.length)
|
|
binding_callbacks.pop()();
|
|
for (let i = 0; i < render_callbacks.length; i += 1) {
|
|
const callback = render_callbacks[i];
|
|
if (!seen_callbacks.has(callback)) {
|
|
seen_callbacks.add(callback);
|
|
callback();
|
|
}
|
|
}
|
|
render_callbacks.length = 0;
|
|
} while (dirty_components.length);
|
|
while (flush_callbacks.length) {
|
|
flush_callbacks.pop()();
|
|
}
|
|
update_scheduled = false;
|
|
flushing = false;
|
|
seen_callbacks.clear();
|
|
}
|
|
function update($$) {
|
|
if ($$.fragment !== null) {
|
|
$$.update();
|
|
run_all($$.before_update);
|
|
const dirty = $$.dirty;
|
|
$$.dirty = [-1];
|
|
$$.fragment && $$.fragment.p($$.ctx, dirty);
|
|
$$.after_update.forEach(add_render_callback);
|
|
}
|
|
}
|
|
const outroing = new Set();
|
|
function transition_in(block, local) {
|
|
if (block && block.i) {
|
|
outroing.delete(block);
|
|
block.i(local);
|
|
}
|
|
}
|
|
function mount_component(component, target, anchor, customElement) {
|
|
const { fragment, on_mount, on_destroy, after_update } = component.$$;
|
|
fragment && fragment.m(target, anchor);
|
|
if (!customElement) {
|
|
add_render_callback(() => {
|
|
const new_on_destroy = on_mount.map(run).filter(is_function);
|
|
if (on_destroy) {
|
|
on_destroy.push(...new_on_destroy);
|
|
} else {
|
|
run_all(new_on_destroy);
|
|
}
|
|
component.$$.on_mount = [];
|
|
});
|
|
}
|
|
after_update.forEach(add_render_callback);
|
|
}
|
|
function destroy_component(component, detaching) {
|
|
const $$ = component.$$;
|
|
if ($$.fragment !== null) {
|
|
run_all($$.on_destroy);
|
|
$$.fragment && $$.fragment.d(detaching);
|
|
$$.on_destroy = $$.fragment = null;
|
|
$$.ctx = [];
|
|
}
|
|
}
|
|
function make_dirty(component, i) {
|
|
if (component.$$.dirty[0] === -1) {
|
|
dirty_components.push(component);
|
|
schedule_update();
|
|
component.$$.dirty.fill(0);
|
|
}
|
|
component.$$.dirty[i / 31 | 0] |= 1 << i % 31;
|
|
}
|
|
function init(component, options, instance2, create_fragment2, not_equal, props, append_styles, dirty = [-1]) {
|
|
const parent_component = current_component;
|
|
set_current_component(component);
|
|
const $$ = component.$$ = {
|
|
fragment: null,
|
|
ctx: null,
|
|
props,
|
|
update: noop,
|
|
not_equal,
|
|
bound: blank_object(),
|
|
on_mount: [],
|
|
on_destroy: [],
|
|
on_disconnect: [],
|
|
before_update: [],
|
|
after_update: [],
|
|
context: new Map(options.context || (parent_component ? parent_component.$$.context : [])),
|
|
callbacks: blank_object(),
|
|
dirty,
|
|
skip_bound: false,
|
|
root: options.target || parent_component.$$.root
|
|
};
|
|
append_styles && append_styles($$.root);
|
|
let ready = false;
|
|
$$.ctx = instance2 ? instance2(component, options.props || {}, (i, ret, ...rest) => {
|
|
const value = rest.length ? rest[0] : ret;
|
|
if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {
|
|
if (!$$.skip_bound && $$.bound[i])
|
|
$$.bound[i](value);
|
|
if (ready)
|
|
make_dirty(component, i);
|
|
}
|
|
return ret;
|
|
}) : [];
|
|
$$.update();
|
|
ready = true;
|
|
run_all($$.before_update);
|
|
$$.fragment = create_fragment2 ? create_fragment2($$.ctx) : false;
|
|
if (options.target) {
|
|
if (options.hydrate) {
|
|
const nodes = children(options.target);
|
|
$$.fragment && $$.fragment.l(nodes);
|
|
nodes.forEach(detach);
|
|
} else {
|
|
$$.fragment && $$.fragment.c();
|
|
}
|
|
if (options.intro)
|
|
transition_in(component.$$.fragment);
|
|
mount_component(component, options.target, options.anchor, options.customElement);
|
|
flush();
|
|
}
|
|
set_current_component(parent_component);
|
|
}
|
|
let SvelteElement;
|
|
if (typeof HTMLElement === "function") {
|
|
SvelteElement = class extends HTMLElement {
|
|
constructor() {
|
|
super();
|
|
this.attachShadow({ mode: "open" });
|
|
}
|
|
connectedCallback() {
|
|
const { on_mount } = this.$$;
|
|
this.$$.on_disconnect = on_mount.map(run).filter(is_function);
|
|
for (const key in this.$$.slotted) {
|
|
this.appendChild(this.$$.slotted[key]);
|
|
}
|
|
}
|
|
attributeChangedCallback(attr2, _oldValue, newValue) {
|
|
this[attr2] = newValue;
|
|
}
|
|
disconnectedCallback() {
|
|
run_all(this.$$.on_disconnect);
|
|
}
|
|
$destroy() {
|
|
destroy_component(this, 1);
|
|
this.$destroy = noop;
|
|
}
|
|
$on(type, callback) {
|
|
const callbacks = this.$$.callbacks[type] || (this.$$.callbacks[type] = []);
|
|
callbacks.push(callback);
|
|
return () => {
|
|
const index = callbacks.indexOf(callback);
|
|
if (index !== -1)
|
|
callbacks.splice(index, 1);
|
|
};
|
|
}
|
|
$set($$props) {
|
|
if (this.$$set && !is_empty($$props)) {
|
|
this.$$.skip_bound = true;
|
|
this.$$set($$props);
|
|
this.$$.skip_bound = false;
|
|
}
|
|
}
|
|
};
|
|
}
|
|
function get_each_context(ctx, list, i) {
|
|
const child_ctx = ctx.slice();
|
|
child_ctx[7] = list[i];
|
|
return child_ctx;
|
|
}
|
|
function create_if_block(ctx) {
|
|
let div;
|
|
let t;
|
|
let if_block = ctx[0] && create_if_block_2(ctx);
|
|
let each_value = ctx[2];
|
|
let each_blocks = [];
|
|
for (let i = 0; i < each_value.length; i += 1) {
|
|
each_blocks[i] = create_each_block(get_each_context(ctx, each_value, i));
|
|
}
|
|
return {
|
|
c() {
|
|
div = element("div");
|
|
if (if_block)
|
|
if_block.c();
|
|
t = space();
|
|
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
each_blocks[i].c();
|
|
}
|
|
attr(div, "id", "displayFeed");
|
|
},
|
|
m(target, anchor) {
|
|
insert(target, div, anchor);
|
|
if (if_block)
|
|
if_block.m(div, null);
|
|
append(div, t);
|
|
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
each_blocks[i].m(div, null);
|
|
}
|
|
},
|
|
p(ctx2, dirty) {
|
|
if (ctx2[0]) {
|
|
if (if_block) {
|
|
if_block.p(ctx2, dirty);
|
|
} else {
|
|
if_block = create_if_block_2(ctx2);
|
|
if_block.c();
|
|
if_block.m(div, t);
|
|
}
|
|
} else if (if_block) {
|
|
if_block.d(1);
|
|
if_block = null;
|
|
}
|
|
if (dirty & 6) {
|
|
each_value = ctx2[2];
|
|
let i;
|
|
for (i = 0; i < each_value.length; i += 1) {
|
|
const child_ctx = get_each_context(ctx2, each_value, i);
|
|
if (each_blocks[i]) {
|
|
each_blocks[i].p(child_ctx, dirty);
|
|
} else {
|
|
each_blocks[i] = create_each_block(child_ctx);
|
|
each_blocks[i].c();
|
|
each_blocks[i].m(div, null);
|
|
}
|
|
}
|
|
for (; i < each_blocks.length; i += 1) {
|
|
each_blocks[i].d(1);
|
|
}
|
|
each_blocks.length = each_value.length;
|
|
}
|
|
},
|
|
d(detaching) {
|
|
if (detaching)
|
|
detach(div);
|
|
if (if_block)
|
|
if_block.d();
|
|
destroy_each(each_blocks, detaching);
|
|
}
|
|
};
|
|
}
|
|
function create_if_block_2(ctx) {
|
|
let div;
|
|
let span;
|
|
let t;
|
|
return {
|
|
c() {
|
|
div = element("div");
|
|
span = element("span");
|
|
t = text(ctx[0]);
|
|
attr(span, "id", "headerTitle");
|
|
attr(div, "class", "content");
|
|
},
|
|
m(target, anchor) {
|
|
insert(target, div, anchor);
|
|
append(div, span);
|
|
append(span, t);
|
|
},
|
|
p(ctx2, dirty) {
|
|
if (dirty & 1)
|
|
set_data(t, ctx2[0]);
|
|
},
|
|
d(detaching) {
|
|
if (detaching)
|
|
detach(div);
|
|
}
|
|
};
|
|
}
|
|
function create_if_block_1(ctx) {
|
|
let div;
|
|
let raw_value = ctx[7].summary + "";
|
|
return {
|
|
c() {
|
|
div = element("div");
|
|
attr(div, "class", "summary");
|
|
},
|
|
m(target, anchor) {
|
|
insert(target, div, anchor);
|
|
div.innerHTML = raw_value;
|
|
},
|
|
p(ctx2, dirty) {
|
|
if (dirty & 4 && raw_value !== (raw_value = ctx2[7].summary + ""))
|
|
div.innerHTML = raw_value;
|
|
},
|
|
d(detaching) {
|
|
if (detaching)
|
|
detach(div);
|
|
}
|
|
};
|
|
}
|
|
function create_each_block(ctx) {
|
|
let a;
|
|
let div0;
|
|
let img;
|
|
let img_src_value;
|
|
let img_alt_value;
|
|
let t0;
|
|
let div4;
|
|
let div1;
|
|
let t1_value = ctx[7].source.name + "";
|
|
let t1;
|
|
let t2;
|
|
let div2;
|
|
let t3_value = ctx[7].title + "";
|
|
let t3;
|
|
let t4;
|
|
let div3;
|
|
let t5_value = when(ctx[7].date) + "";
|
|
let t5;
|
|
let t6;
|
|
let t7;
|
|
let a_href_value;
|
|
let a_title_value;
|
|
let if_block = ctx[1] === "true" && create_if_block_1(ctx);
|
|
return {
|
|
c() {
|
|
a = element("a");
|
|
div0 = element("div");
|
|
img = element("img");
|
|
t0 = space();
|
|
div4 = element("div");
|
|
div1 = element("div");
|
|
t1 = text(t1_value);
|
|
t2 = space();
|
|
div2 = element("div");
|
|
t3 = text(t3_value);
|
|
t4 = space();
|
|
div3 = element("div");
|
|
t5 = text(t5_value);
|
|
t6 = space();
|
|
if (if_block)
|
|
if_block.c();
|
|
t7 = space();
|
|
if (!src_url_equal(img.src, img_src_value = ctx[7].image))
|
|
attr(img, "src", img_src_value);
|
|
attr(img, "alt", img_alt_value = ctx[7].title);
|
|
attr(div0, "class", "media");
|
|
attr(div1, "class", "subtitle");
|
|
attr(div2, "class", "title");
|
|
attr(div3, "class", "subtitle");
|
|
attr(div4, "class", "content");
|
|
attr(a, "href", a_href_value = ctx[7].URL);
|
|
attr(a, "title", a_title_value = ctx[7].title);
|
|
attr(a, "class", "post");
|
|
attr(a, "target", "_blank");
|
|
},
|
|
m(target, anchor) {
|
|
insert(target, a, anchor);
|
|
append(a, div0);
|
|
append(div0, img);
|
|
append(a, t0);
|
|
append(a, div4);
|
|
append(div4, div1);
|
|
append(div1, t1);
|
|
append(div4, t2);
|
|
append(div4, div2);
|
|
append(div2, t3);
|
|
append(div4, t4);
|
|
append(div4, div3);
|
|
append(div3, t5);
|
|
append(div4, t6);
|
|
if (if_block)
|
|
if_block.m(div4, null);
|
|
append(a, t7);
|
|
},
|
|
p(ctx2, dirty) {
|
|
if (dirty & 4 && !src_url_equal(img.src, img_src_value = ctx2[7].image)) {
|
|
attr(img, "src", img_src_value);
|
|
}
|
|
if (dirty & 4 && img_alt_value !== (img_alt_value = ctx2[7].title)) {
|
|
attr(img, "alt", img_alt_value);
|
|
}
|
|
if (dirty & 4 && t1_value !== (t1_value = ctx2[7].source.name + ""))
|
|
set_data(t1, t1_value);
|
|
if (dirty & 4 && t3_value !== (t3_value = ctx2[7].title + ""))
|
|
set_data(t3, t3_value);
|
|
if (dirty & 4 && t5_value !== (t5_value = when(ctx2[7].date) + ""))
|
|
set_data(t5, t5_value);
|
|
if (ctx2[1] === "true") {
|
|
if (if_block) {
|
|
if_block.p(ctx2, dirty);
|
|
} else {
|
|
if_block = create_if_block_1(ctx2);
|
|
if_block.c();
|
|
if_block.m(div4, null);
|
|
}
|
|
} else if (if_block) {
|
|
if_block.d(1);
|
|
if_block = null;
|
|
}
|
|
if (dirty & 4 && a_href_value !== (a_href_value = ctx2[7].URL)) {
|
|
attr(a, "href", a_href_value);
|
|
}
|
|
if (dirty & 4 && a_title_value !== (a_title_value = ctx2[7].title)) {
|
|
attr(a, "title", a_title_value);
|
|
}
|
|
},
|
|
d(detaching) {
|
|
if (detaching)
|
|
detach(a);
|
|
if (if_block)
|
|
if_block.d();
|
|
}
|
|
};
|
|
}
|
|
function create_fragment(ctx) {
|
|
let if_block_anchor;
|
|
let if_block = ctx[2].length && create_if_block(ctx);
|
|
return {
|
|
c() {
|
|
if (if_block)
|
|
if_block.c();
|
|
if_block_anchor = empty();
|
|
this.c = noop;
|
|
},
|
|
m(target, anchor) {
|
|
if (if_block)
|
|
if_block.m(target, anchor);
|
|
insert(target, if_block_anchor, anchor);
|
|
},
|
|
p(ctx2, [dirty]) {
|
|
if (ctx2[2].length) {
|
|
if (if_block) {
|
|
if_block.p(ctx2, dirty);
|
|
} else {
|
|
if_block = create_if_block(ctx2);
|
|
if_block.c();
|
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
}
|
|
} 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 when(timestamp) {
|
|
return new Date(timestamp).toLocaleDateString(void 0, {
|
|
weekday: "long",
|
|
month: "short",
|
|
day: "numeric",
|
|
hour: "2-digit",
|
|
minute: "2-digit"
|
|
});
|
|
}
|
|
function instance($$self, $$props, $$invalidate) {
|
|
let { feed = "" } = $$props;
|
|
let { title = "Feed" } = $$props;
|
|
let { max = false } = $$props;
|
|
let { summary = "true" } = $$props;
|
|
let mounted = false;
|
|
let posts = [];
|
|
function update2(v) {
|
|
if (!mounted)
|
|
return;
|
|
fetch(feed).then((res) => res.json()).then((e) => {
|
|
$$invalidate(2, posts = e.posts);
|
|
}).catch((e) => {
|
|
console.error(e);
|
|
});
|
|
}
|
|
onMount(() => {
|
|
mounted = true;
|
|
update2();
|
|
});
|
|
$$self.$$set = ($$props2) => {
|
|
if ("feed" in $$props2)
|
|
$$invalidate(3, feed = $$props2.feed);
|
|
if ("title" in $$props2)
|
|
$$invalidate(0, title = $$props2.title);
|
|
if ("max" in $$props2)
|
|
$$invalidate(4, max = $$props2.max);
|
|
if ("summary" in $$props2)
|
|
$$invalidate(1, summary = $$props2.summary);
|
|
};
|
|
$$self.$$.update = () => {
|
|
if ($$self.$$.dirty & 25) {
|
|
update2();
|
|
}
|
|
};
|
|
return [title, summary, posts, feed, max];
|
|
}
|
|
class DisplayFeed extends SvelteElement {
|
|
constructor(options) {
|
|
super();
|
|
this.shadowRoot.innerHTML = `<style>#displayFeed{font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;overflow-x:hidden;font-size:1.2rem;width:100%;box-sizing:content-box}#headerTitle{line-height:45px;font-size:1.3rem;font-weight:600}.post{display:flex;flex-direction:row;flex-wrap:wrap;width:100%;padding:0px;color:black;text-decoration:none;transition:background .3s ease-in-out;border-radius:5px;;}.post:hover{background-color:#ececec}.post .media,.post .content{padding:10px;display:flex;flex-direction:column;flex-basis:100%;flex:1}.post .content{flex:3}.post .content .title{font-size:1.5rem;font-weight:700;color:black}.post .content .subtitle{font-weight:100;color:#666;font-size:.9rem}.post .content .summary{margin-top:1rem;color:#333;font-size:1rem}.post .media img{border-radius:5px;flex:1;max-height:250px;width:400px;object-fit:cover}</style>`;
|
|
init(this, {
|
|
target: this.shadowRoot,
|
|
props: attribute_to_object(this.attributes),
|
|
customElement: true
|
|
}, instance, create_fragment, safe_not_equal, { feed: 3, title: 0, max: 4, summary: 1 }, null);
|
|
if (options) {
|
|
if (options.target) {
|
|
insert(options.target, this, options.anchor);
|
|
}
|
|
if (options.props) {
|
|
this.$set(options.props);
|
|
flush();
|
|
}
|
|
}
|
|
}
|
|
static get observedAttributes() {
|
|
return ["feed", "title", "max", "summary"];
|
|
}
|
|
get feed() {
|
|
return this.$$.ctx[3];
|
|
}
|
|
set feed(feed) {
|
|
this.$$set({ feed });
|
|
flush();
|
|
}
|
|
get title() {
|
|
return this.$$.ctx[0];
|
|
}
|
|
set title(title) {
|
|
this.$$set({ title });
|
|
flush();
|
|
}
|
|
get max() {
|
|
return this.$$.ctx[4];
|
|
}
|
|
set max(max) {
|
|
this.$$set({ max });
|
|
flush();
|
|
}
|
|
get summary() {
|
|
return this.$$.ctx[1];
|
|
}
|
|
set summary(summary) {
|
|
this.$$set({ summary });
|
|
flush();
|
|
}
|
|
}
|
|
customElements.define("display-feed", DisplayFeed);
|