2017-11-18 23:12:52 +00:00
|
|
|
// This file will be loaded on public pages, regardless of theme.
|
2017-11-21 06:13:37 +00:00
|
|
|
|
2020-10-12 23:19:35 +00:00
|
|
|
import 'packs/public-path';
|
2018-08-05 10:55:56 +00:00
|
|
|
|
2023-05-09 01:08:47 +00:00
|
|
|
import { delegate } from '@rails/ujs';
|
2017-11-21 06:13:37 +00:00
|
|
|
|
2019-04-22 18:40:04 +00:00
|
|
|
const getProfileAvatarAnimationHandler = (swapTo) => {
|
|
|
|
//animate avatar gifs on the profile page when moused over
|
|
|
|
return ({ target }) => {
|
|
|
|
const swapSrc = target.getAttribute(swapTo);
|
|
|
|
//only change the img source if autoplay is off and the image src is actually different
|
2019-07-19 16:26:49 +00:00
|
|
|
if(target.getAttribute('data-autoplay') !== 'true' && target.src !== swapSrc) {
|
2019-04-22 18:40:04 +00:00
|
|
|
target.src = swapSrc;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
delegate(document, 'img#profile_page_avatar', 'mouseover', getProfileAvatarAnimationHandler('data-original'));
|
|
|
|
|
|
|
|
delegate(document, 'img#profile_page_avatar', 'mouseout', getProfileAvatarAnimationHandler('data-static'));
|
|
|
|
|
|
|
|
delegate(document, '#account_header', 'change', ({ target }) => {
|
|
|
|
const header = document.querySelector('.card .card__img img');
|
|
|
|
const [file] = target.files || [];
|
|
|
|
const url = file ? URL.createObjectURL(file) : header.dataset.originalSrc;
|
|
|
|
|
|
|
|
header.src = url;
|
|
|
|
});
|