-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve swap lang button for language and text swapping #482
base: master
Are you sure you want to change the base?
Changes from 1 commit
4bd86c8
86a85cd
dd4e28b
77e73cf
9af1056
6b797ce
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -243,11 +243,16 @@ const WithTgtLang = ({ | |
const Translator = ({ mode: initialMode }: { mode?: Mode }): React.ReactElement => { | ||
const mode: Mode = initialMode || Mode.Text; | ||
|
||
const textUrlParam = 'q'; | ||
const { t } = useLocalization(); | ||
const history = useHistory(); | ||
const config = React.useContext(ConfigContext); | ||
|
||
const [loading, setLoading] = React.useState(false); | ||
const [srcText, setSrcText] = useLocalStorage('srcText', '', { | ||
overrideValue: getUrlParam(history.location.search, textUrlParam), | ||
}); | ||
const [tgtText, setTgtText] = React.useState(''); | ||
|
||
const [markUnknown, setMarkUnknown] = useLocalStorage('markUnknown', false); | ||
const [instantTranslation, setInstantTranslation] = useLocalStorage('instantTranslation', true); | ||
|
@@ -272,6 +277,11 @@ const Translator = ({ mode: initialMode }: { mode?: Mode }): React.ReactElement | |
|
||
const onTranslate = React.useCallback(() => window.dispatchEvent(new Event(TranslateEvent)), []); | ||
|
||
const swapLangText = () => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's also call this |
||
setSrcText(tgtText); | ||
setTgtText(srcText); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's encapsulate the language switching here as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Moving the target text to the source makes sense. But, making the source text the target text doesn't make sense since Apertium's translators are not necessarily bijective. That is, just because "foo" in X translates into "bar" in Y doesn't mean "bar" in Y will translate into "foo" in X. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for pointing that out. Yeah, it makes no sense to make the source text the target text |
||
}; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This function doesn't have any purpose now? I think we can just pass |
||
|
||
return ( | ||
<Form | ||
aria-label={t('Translate')} | ||
|
@@ -307,12 +317,24 @@ const Translator = ({ mode: initialMode }: { mode?: Mode }): React.ReactElement | |
tgtLang, | ||
detectedLang, | ||
loading, | ||
swapLangText, | ||
}} | ||
/> | ||
{(mode === Mode.Text || !mode) && ( | ||
<> | ||
<TextTranslationForm | ||
{...{ instantTranslation, markUnknown, setLoading, srcLang, tgtLang, pairPrefs }} | ||
{...{ | ||
instantTranslation, | ||
markUnknown, | ||
setLoading, | ||
srcLang, | ||
tgtLang, | ||
pairPrefs, | ||
srcText, | ||
tgtText, | ||
setSrcText, | ||
setTgtText, | ||
}} | ||
/> | ||
<Row className="mt-2 mb-3"> | ||
<Col className="d-flex d-sm-block flex-wrap translation-modes" md="6" xs="12"> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,10 @@ import userEvent from '@testing-library/user-event'; | |
|
||
import { DetectCompleteEvent, DetectEvent, TranslateEvent } from '..'; | ||
import TextTranslationForm, { Props } from '../TextTranslationForm'; | ||
import { getUrlParam } from '../../../util/url'; | ||
import useLocalStorage from '../../../util/useLocalStorage'; | ||
|
||
const textUrlParam = 'q'; | ||
|
||
const renderTextTranslationForm = ( | ||
props_: Partial<Props> = {}, | ||
|
@@ -20,13 +24,34 @@ const renderTextTranslationForm = ( | |
srcLang: 'eng', | ||
tgtLang: 'spa', | ||
pairPrefs: {}, | ||
srcText: '', | ||
tgtText: '', | ||
setSrcText: jest.fn(), | ||
setTgtText: jest.fn(), | ||
setLoading: jest.fn(), | ||
...props_, | ||
}; | ||
|
||
const Wrapper = () => { | ||
const [srcText, setSrcText] = useLocalStorage('srcText', '', { | ||
overrideValue: getUrlParam(history.location.search, textUrlParam), | ||
}); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we need to duplicate this code in a test...? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To be honest, I'm currently stuck here, and I'm not entirely sure why I went with this approach. It seems to be the only way the tests are passing, and I need your help on how to improve this setup. The functionality of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The problem is that the tests need to be relocated now. Moving the logic that pulls There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I realized that my knowledge of React testing might be a bit lacking. I plan to learn jest, and then I'll resume working on the pull request at a later point in time. I'll focus on other issues for now i.e. #405 |
||
const [tgtText, setTgtText] = React.useState(''); | ||
|
||
return ( | ||
<TextTranslationForm | ||
{...props} | ||
setSrcText={setSrcText} | ||
setTgtText={setTgtText} | ||
srcText={srcText} | ||
tgtText={tgtText} | ||
/> | ||
); | ||
}; | ||
|
||
render( | ||
<Router history={history}> | ||
<TextTranslationForm {...props} /> | ||
<Wrapper /> | ||
</Router>, | ||
); | ||
|
||
|
@@ -149,16 +174,31 @@ describe('translation', () => { | |
srcLang: 'eng', | ||
tgtLang: 'spa', | ||
pairPrefs: {}, | ||
srcText: '', | ||
tgtText: '', | ||
setSrcText: jest.fn(), | ||
setTgtText: jest.fn(), | ||
setLoading: jest.fn(), | ||
}; | ||
|
||
const Container = () => { | ||
const [srcLang, setSrcLang] = React.useState('eng'); | ||
const [srcText, setSrcText] = useLocalStorage('srcText', '', { | ||
overrideValue: getUrlParam(history.location.search, textUrlParam), | ||
}); | ||
const [tgtText, setTgtText] = React.useState(''); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same question here as above. |
||
return ( | ||
<> | ||
<button onClick={() => setSrcLang('cat')}>ChangeSrcLang</button> | ||
<Router history={history}> | ||
<TextTranslationForm {...props} srcLang={srcLang} /> | ||
<TextTranslationForm | ||
{...props} | ||
setSrcText={setSrcText} | ||
setTgtText={setTgtText} | ||
srcLang={srcLang} | ||
srcText={srcText} | ||
tgtText={tgtText} | ||
/> | ||
</Router> | ||
</> | ||
); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be repeated twice. It should be defined in exactly one place.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I want to confirm if the suggestion is to define it globally, or if there's an alternative approach you recommend for maintaining it in a single place?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can define it one component (ideally the parent component) and export the constant for use in other files.