i18n-behavior
Version:
Instant and Modular I18N engine for lit-html and Polymer
77 lines (63 loc) • 1.57 kB
JavaScript
/**
@license https://github.com/t2ym/i18n-behavior/blob/master/LICENSE.md
Copyright (c) 2016, Tetsuya Mori <t2y3141592@gmail.com>. All rights reserved.
*/
import '../../../i18n-behavior.js';
import { html } from '@polymer/polymer/lib/utils/html-tag.js';
import { Polymer as Polymer$0 } from '@polymer/polymer/lib/legacy/polymer-fn.js';
const $_documentContainer = document.createElement('template');
$_documentContainer.innerHTML = `<template id="empty-element">
</template>`;
document.head.appendChild($_documentContainer.content);
switch (syntax) {
default:
case 'mixin':
{
class EmptyElement extends Mixins.Localizable(Polymer.LegacyElement) {
static get importMeta() {
return import.meta;
}
static get template() {
return html`
`;
}
static get is() { return 'empty-element' }
}
customElements.define(EmptyElement.is, EmptyElement);
}
break;
case 'base-element':
{
class EmptyElement extends BaseElements.I18nElement {
static get importMeta() {
return import.meta;
}
static get template() {
return html`
`;
}
static get is() { return 'empty-element' }
}
customElements.define(EmptyElement.is, EmptyElement);
}
break;
case 'thin':
{
Define = class EmptyElement extends BaseElements.I18nElement {
}
}
break;
case 'legacy':
{
Polymer$0({
importMeta: import.meta,
_template: html`
`,
is: 'empty-element',
behaviors: [
BehaviorsStore.I18nBehavior
]
});
}
break;
}