quetre/views/pug/mixins/_utils.pug
zyachel 595b720ee1 fix: fix outgoing url on error page
also refactor some related code
2023-01-15 21:41:09 +05:30

45 lines
No EOL
1.8 KiB
Text

//-//////////////////////////////////////////////////////
//- SMALL MIXINS THAT ARE USED IN MANY PLACES
//-//////////////////////////////////////////////////////
mixin addDate(date, className='')
- const dateObj = new Date(date / 1000);
time(class= className, datetime= dateObj.toISOString(), title=dateObj.toUTCString())= Intl.DateTimeFormat('en-US', {year: '2-digit', month: 'short', day: 'numeric' }).format(dateObj)
mixin formatNumber(number, className='')
span(class=className)= new Intl.NumberFormat().format(number)
mixin proxifyImg(imgUrl)
img(src=imgUrl.replace('https://', '/api/v1/image/'), loading='lazy')&attributes(attributes)
mixin quetrefyUrl(url, text)
-
const acceptedLanguages=['en','es','fr','de','it','ja','id','pt','hi','nl','da','fi','nb','sv','mr','bn','ta','ar','he','gu','kn','ml','te','po'];
let link;
const match = /^https:\/\/(.{2,})\.quora\.com(\/.*)$/.exec(url);
if (match) {
const [_, subdomain, rest] = match;
if (acceptedLanguages.includes(subdomain)) link = link = `${rest}${rest.includes('?') ? '&' : '?'}lang=${subdomain}`;
else if (subdomain === 'www') link = rest;
else link = `/space/${subdomain}${rest}`;
} else {
link = url;
}
a(href=link)&attributes(attributes)= text
mixin quorafyUrl(url, text='View on Quora')
-
const link = new URL(`${url.pathname}${url.search}`, 'https://www.quora.com');
const lang = link.searchParams.get('lang');
const match = /(?<=^\/space\/)([^\/]+)\/(.*)$/.exec(link.pathname); // taking space name and rest of pathname out.
if(lang) {
link.hostname = `${lang}.quora.com`;
link.searchParams.delete('lang');
} else if(match) {
link.hostname = `${match[1]}.quora.com`;
link.pathname = match[2];
}
a(href=link.href, rel='noreferrer', target='_blank')&attributes(attributes)= text