Merge branch 'main' of github.com:cheeaun/phanpy
This commit is contained in:
commit
42f1f45767
|
@ -12,6 +12,13 @@
|
|||
backdrop-filter: blur(24px);
|
||||
animation: appear 0.5s var(--timing-function) both;
|
||||
}
|
||||
#modal-container > div .sheet {
|
||||
transition: transform 0.3s var(--timing-function);
|
||||
transform-origin: center bottom;
|
||||
}
|
||||
#modal-container > div:has(~ div) .sheet {
|
||||
transform: scale(0.975);
|
||||
}
|
||||
|
||||
#modal-container > .light {
|
||||
backdrop-filter: saturate(0.75);
|
||||
|
|
|
@ -57,6 +57,7 @@ import MenuLink from './menu-link';
|
|||
import RelativeTime from './relative-time';
|
||||
import TranslationBlock from './translation-block';
|
||||
|
||||
const INLINE_TRASNSLATE_LIMIT = 140;
|
||||
const throttle = pThrottle({
|
||||
limit: 1,
|
||||
interval: 1000,
|
||||
|
@ -244,11 +245,23 @@ function Status({
|
|||
);
|
||||
}
|
||||
|
||||
const isSizeLarge = size === 'l';
|
||||
|
||||
const [forceTranslate, setForceTranslate] = useState(_forceTranslate);
|
||||
const targetLanguage = getTranslateTargetLanguage(true);
|
||||
const contentTranslationHideLanguages =
|
||||
snapStates.settings.contentTranslationHideLanguages || [];
|
||||
if (!snapStates.settings.contentTranslation) enableTranslate = false;
|
||||
const inlineTranslate = useMemo(() => {
|
||||
return (
|
||||
!isSizeLarge &&
|
||||
!spoilerText &&
|
||||
!poll &&
|
||||
!mediaAttachments?.length &&
|
||||
content?.length > 0 &&
|
||||
content?.length <= INLINE_TRASNSLATE_LIMIT
|
||||
);
|
||||
}, [isSizeLarge, content, spoilerText, poll, mediaAttachments]);
|
||||
|
||||
const [showEdited, setShowEdited] = useState(false);
|
||||
const [showReactions, setShowReactions] = useState(false);
|
||||
|
@ -306,7 +319,6 @@ function Status({
|
|||
const createdDateText = niceDateTime(createdAtDate);
|
||||
const editedDateText = editedAt && niceDateTime(editedAtDate);
|
||||
|
||||
const isSizeLarge = size === 'l';
|
||||
// Can boost if:
|
||||
// - authenticated AND
|
||||
// - visibility != direct OR
|
||||
|
@ -526,7 +538,7 @@ function Status({
|
|||
confirmLabel={
|
||||
<>
|
||||
<Icon icon="rocket" />
|
||||
<span>Unboost?</span>
|
||||
<span>{reblogged ? 'Unboost?' : 'Boost to everyone?'}</span>
|
||||
</>
|
||||
}
|
||||
menuFooter={
|
||||
|
@ -890,7 +902,8 @@ function Status({
|
|||
// Higher than the backdrop
|
||||
zIndex: 1001,
|
||||
},
|
||||
onClick: () => {
|
||||
onClick: (e) => {
|
||||
if (e.target === e.currentTarget)
|
||||
menuInstanceRef.current?.closeMenu?.();
|
||||
},
|
||||
}}
|
||||
|
@ -1091,10 +1104,13 @@ function Status({
|
|||
}}
|
||||
/>
|
||||
)}
|
||||
{((enableTranslate && !!content.trim() && differentLanguage) ||
|
||||
{(((enableTranslate || inlineTranslate) &&
|
||||
!!content.trim() &&
|
||||
differentLanguage) ||
|
||||
forceTranslate) && (
|
||||
<TranslationBlock
|
||||
forceTranslate={forceTranslate}
|
||||
forceTranslate={forceTranslate || inlineTranslate}
|
||||
mini={inlineTranslate}
|
||||
sourceLanguage={language}
|
||||
text={
|
||||
(spoilerText ? `${spoilerText}\n\n` : '') +
|
||||
|
@ -1224,19 +1240,25 @@ function Status({
|
|||
disabled={!canBoost}
|
||||
/>
|
||||
</div> */}
|
||||
<Menu
|
||||
portal={{
|
||||
target:
|
||||
document.querySelector('.status-deck') || document.body,
|
||||
}}
|
||||
align="start"
|
||||
gap={4}
|
||||
overflow="auto"
|
||||
viewScroll="close"
|
||||
boundingBoxPadding="8 8 8 8"
|
||||
shift={-8}
|
||||
menuClassName="menu-emphasized"
|
||||
menuButton={({ open }) => (
|
||||
<MenuConfirm
|
||||
disabled={!canBoost}
|
||||
onClick={confirmBoostStatus}
|
||||
confirmLabel={
|
||||
<>
|
||||
<Icon icon="rocket" />
|
||||
<span>{reblogged ? 'Unboost?' : 'Boost to everyone?'}</span>
|
||||
</>
|
||||
}
|
||||
menuFooter={
|
||||
mediaNoDesc &&
|
||||
!reblogged && (
|
||||
<div class="footer">
|
||||
<Icon icon="alert" />
|
||||
Some media have no descriptions.
|
||||
</div>
|
||||
)
|
||||
}
|
||||
>
|
||||
<div class="action has-count">
|
||||
<StatusButton
|
||||
checked={reblogged}
|
||||
|
@ -1246,22 +1268,10 @@ function Status({
|
|||
icon="rocket"
|
||||
count={reblogsCount}
|
||||
// onClick={boostStatus}
|
||||
disabled={open || !canBoost}
|
||||
disabled={!canBoost}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
>
|
||||
<MenuItem onClick={confirmBoostStatus}>
|
||||
<Icon icon="rocket" />
|
||||
<span>Boost to everyone?</span>
|
||||
</MenuItem>
|
||||
{mediaNoDesc && (
|
||||
<div class="footer">
|
||||
<Icon icon="alert" />
|
||||
Some media have no descriptions.
|
||||
</div>
|
||||
)}
|
||||
</Menu>
|
||||
</MenuConfirm>
|
||||
<div class="action has-count">
|
||||
<StatusButton
|
||||
checked={favourited}
|
||||
|
|
|
@ -105,3 +105,22 @@
|
|||
overflow: visible;
|
||||
mask-image: none;
|
||||
}
|
||||
|
||||
/* MINI */
|
||||
|
||||
.status-translation-block-mini {
|
||||
display: flex;
|
||||
margin: 8px 0 0;
|
||||
padding: 8px 0 0;
|
||||
font-size: 90%;
|
||||
border-top: var(--hairline-width) solid var(--outline-color);
|
||||
color: var(--text-insignificant-color);
|
||||
gap: 8px;
|
||||
transition: color 0.3s ease-in-out;
|
||||
}
|
||||
.status-translation-block-mini .icon {
|
||||
margin-top: 2px;
|
||||
}
|
||||
.status:is(:hover, :active) .status-translation-block-mini {
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import './translation-block.css';
|
||||
|
||||
import pThrottle from 'p-throttle';
|
||||
import { useEffect, useRef, useState } from 'preact/hooks';
|
||||
|
||||
import sourceLanguages from '../data/lingva-source-languages';
|
||||
|
@ -9,28 +10,13 @@ import localeCode2Text from '../utils/localeCode2Text';
|
|||
import Icon from './icon';
|
||||
import Loader from './loader';
|
||||
|
||||
function TranslationBlock({
|
||||
forceTranslate,
|
||||
sourceLanguage,
|
||||
onTranslate,
|
||||
text = '',
|
||||
}) {
|
||||
const targetLang = getTranslateTargetLanguage(true);
|
||||
const [uiState, setUIState] = useState('default');
|
||||
const [pronunciationContent, setPronunciationContent] = useState(null);
|
||||
const [translatedContent, setTranslatedContent] = useState(null);
|
||||
const [detectedLang, setDetectedLang] = useState(null);
|
||||
const detailsRef = useRef();
|
||||
const throttle = pThrottle({
|
||||
limit: 1,
|
||||
interval: 2000,
|
||||
});
|
||||
|
||||
const sourceLangText = sourceLanguage
|
||||
? localeCode2Text(sourceLanguage)
|
||||
: null;
|
||||
const targetLangText = localeCode2Text(targetLang);
|
||||
const apiSourceLang = useRef('auto');
|
||||
|
||||
if (!onTranslate)
|
||||
onTranslate = (source, target) => {
|
||||
console.log('TRANSLATE', source, target, text);
|
||||
function lingvaTranslate(text, source, target) {
|
||||
console.log('TRANSLATE', text, source, target);
|
||||
// Using another API instance instead of lingva.ml because of this bug (slashes don't work):
|
||||
// https://github.com/thedaviddelta/lingva-translate/issues/68
|
||||
return fetch(
|
||||
|
@ -50,13 +36,38 @@ function TranslationBlock({
|
|||
// return masto.v1.statuses.translate(id, {
|
||||
// lang: DEFAULT_LANG,
|
||||
// });
|
||||
};
|
||||
}
|
||||
const throttledLingvaTranslate = throttle(lingvaTranslate);
|
||||
|
||||
function TranslationBlock({
|
||||
forceTranslate,
|
||||
sourceLanguage,
|
||||
onTranslate,
|
||||
text = '',
|
||||
mini,
|
||||
}) {
|
||||
const targetLang = getTranslateTargetLanguage(true);
|
||||
const [uiState, setUIState] = useState('default');
|
||||
const [pronunciationContent, setPronunciationContent] = useState(null);
|
||||
const [translatedContent, setTranslatedContent] = useState(null);
|
||||
const [detectedLang, setDetectedLang] = useState(null);
|
||||
const detailsRef = useRef();
|
||||
|
||||
const sourceLangText = sourceLanguage
|
||||
? localeCode2Text(sourceLanguage)
|
||||
: null;
|
||||
const targetLangText = localeCode2Text(targetLang);
|
||||
const apiSourceLang = useRef('auto');
|
||||
|
||||
if (!onTranslate) {
|
||||
onTranslate = mini ? throttledLingvaTranslate : lingvaTranslate;
|
||||
}
|
||||
|
||||
const translate = async () => {
|
||||
setUIState('loading');
|
||||
try {
|
||||
const { content, detectedSourceLanguage, provider, ...props } =
|
||||
await onTranslate(apiSourceLang.current, targetLang);
|
||||
await onTranslate(text, apiSourceLang.current, targetLang);
|
||||
if (content) {
|
||||
if (detectedSourceLanguage) {
|
||||
const detectedLangText = localeCode2Text(detectedSourceLanguage);
|
||||
|
@ -70,11 +81,13 @@ function TranslationBlock({
|
|||
}
|
||||
setTranslatedContent(content);
|
||||
setUIState('default');
|
||||
if (!mini) {
|
||||
detailsRef.current.open = true;
|
||||
detailsRef.current.scrollIntoView({
|
||||
behavior: 'smooth',
|
||||
block: 'nearest',
|
||||
});
|
||||
}
|
||||
} else {
|
||||
console.error(result);
|
||||
setUIState('error');
|
||||
|
@ -91,6 +104,23 @@ function TranslationBlock({
|
|||
}
|
||||
}, [forceTranslate]);
|
||||
|
||||
if (mini) {
|
||||
if (!!translatedContent && detectedLang !== targetLangText) {
|
||||
return (
|
||||
<div class="status-translation-block-mini">
|
||||
<Icon
|
||||
icon="translate"
|
||||
alt={`Auto-translated from ${sourceLangText}`}
|
||||
/>
|
||||
<output lang={targetLang} dir="auto">
|
||||
{translatedContent}
|
||||
</output>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<div
|
||||
class="status-translation-block"
|
||||
|
|
Loading…
Reference in a new issue