about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/packs/public.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/themes/glitch/packs/public.js')
-rw-r--r--app/javascript/themes/glitch/packs/public.js75
1 files changed, 0 insertions, 75 deletions
diff --git a/app/javascript/themes/glitch/packs/public.js b/app/javascript/themes/glitch/packs/public.js
deleted file mode 100644
index 410e66716..000000000
--- a/app/javascript/themes/glitch/packs/public.js
+++ /dev/null
@@ -1,75 +0,0 @@
-import loadPolyfills from 'themes/glitch/util/load_polyfills';
-import ready from 'themes/glitch/util/ready';
-
-function main() {
-  const IntlRelativeFormat = require('intl-relativeformat').default;
-  const emojify = require('themes/glitch/util/emoji').default;
-  const { getLocale } = require('locales');
-  const { localeData } = getLocale();
-  const VideoContainer = require('themes/glitch/containers/video_container').default;
-  const MediaGalleryContainer = require('themes/glitch/containers/media_gallery_container').default;
-  const CardContainer = require('themes/glitch/containers/card_container').default;
-  const React = require('react');
-  const ReactDOM = require('react-dom');
-
-  localeData.forEach(IntlRelativeFormat.__addLocaleData);
-
-  ready(() => {
-    const locale = document.documentElement.lang;
-
-    const dateTimeFormat = new Intl.DateTimeFormat(locale, {
-      year: 'numeric',
-      month: 'long',
-      day: 'numeric',
-      hour: 'numeric',
-      minute: 'numeric',
-    });
-
-    const relativeFormat = new IntlRelativeFormat(locale);
-
-    [].forEach.call(document.querySelectorAll('.emojify'), (content) => {
-      content.innerHTML = emojify(content.innerHTML);
-    });
-
-    [].forEach.call(document.querySelectorAll('time.formatted'), (content) => {
-      const datetime = new Date(content.getAttribute('datetime'));
-      const formattedDate = dateTimeFormat.format(datetime);
-
-      content.title = formattedDate;
-      content.textContent = formattedDate;
-    });
-
-    [].forEach.call(document.querySelectorAll('time.time-ago'), (content) => {
-      const datetime = new Date(content.getAttribute('datetime'));
-
-      content.title = dateTimeFormat.format(datetime);
-      content.textContent = relativeFormat.format(datetime);
-    });
-
-    [].forEach.call(document.querySelectorAll('.logo-button'), (content) => {
-      content.addEventListener('click', (e) => {
-        e.preventDefault();
-        window.open(e.target.href, 'mastodon-intent', 'width=400,height=400,resizable=no,menubar=no,status=no,scrollbars=yes');
-      });
-    });
-
-    [].forEach.call(document.querySelectorAll('[data-component="Video"]'), (content) => {
-      const props = JSON.parse(content.getAttribute('data-props'));
-      ReactDOM.render(<VideoContainer locale={locale} {...props} />, content);
-    });
-
-    [].forEach.call(document.querySelectorAll('[data-component="MediaGallery"]'), (content) => {
-      const props = JSON.parse(content.getAttribute('data-props'));
-      ReactDOM.render(<MediaGalleryContainer locale={locale} {...props} />, content);
-    });
-
-    [].forEach.call(document.querySelectorAll('[data-component="Card"]'), (content) => {
-      const props = JSON.parse(content.getAttribute('data-props'));
-      ReactDOM.render(<CardContainer locale={locale} {...props} />, content);
-    });
-  });
-}
-
-loadPolyfills().then(main).catch(error => {
-  console.error(error);
-});