Skip to content

Commit

Permalink
fix(core): add open in app hint text (#8728)
Browse files Browse the repository at this point in the history
  • Loading branch information
pengx17 committed Nov 7, 2024
1 parent c79b93b commit 727130e
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const centerContainer = style({
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
height: 'fit-content',
});
export const content = style({
position: 'relative',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,21 @@ export const editSettingsLink = style({
textDecoration: 'none',
color: cssVar('linkColor'),
fontSize: cssVar('fontSm'),
});

export const docFooter = style({
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
rowGap: 12,
position: 'absolute',
bottom: 48,
});

export const docFooterText = style({
display: 'flex',
alignItems: 'center',
gap: 10,
fontSize: cssVar('fontXs'),
color: cssVar('textSecondaryColor'),
});
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Button } from '@affine/component/ui/button';
import { resolveLinkToDoc } from '@affine/core/modules/navigation';
import { appIconMap, appNames } from '@affine/core/utils/channel';
import { Trans, useI18n } from '@affine/i18n';
import { Logo1Icon } from '@blocksuite/icons/rc';
import { LocalWorkspaceIcon, Logo1Icon } from '@blocksuite/icons/rc';
import { useService } from '@toeverything/infra';
import type { MouseEvent } from 'react';
import { useCallback } from 'react';
Expand Down Expand Up @@ -150,14 +150,19 @@ export const OpenInAppPage = ({ urlToOpen, openHereClicked }: OpenAppProps) => {
</div>

{maybeDocLink ? (
<a
className={styles.editSettingsLink}
onClick={goToAppearanceSetting}
target="_blank"
rel="noreferrer"
>
{t['com.affine.auth.open.affine.doc.edit-settings']()}
</a>
<div className={styles.docFooter}>
<button
className={styles.editSettingsLink}
onClick={goToAppearanceSetting}
>
{t['com.affine.auth.open.affine.doc.edit-settings']()}
</button>

<div className={styles.docFooterText}>
<LocalWorkspaceIcon width={16} height={16} />
{t['com.affine.auth.open.affine.doc.footer-text']()}
</div>
</div>
) : null}
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/i18n/src/i18n-completenesses.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"fr": 71,
"hi": 2,
"it": 1,
"ja": 95,
"ja": 94,
"ko": 84,
"pl": 0,
"pt-BR": 91,
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/i18n/src/resources/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@
"com.affine.auth.open.affine.try-again": "Try again",
"com.affine.auth.open.affine.doc.open-here": "Open here instead",
"com.affine.auth.open.affine.doc.edit-settings": "Edit settings",
"com.affine.auth.open.affine.doc.footer-text": "Requires AFFiNE desktop app version 0.18 or later.",
"com.affine.auth.page.sent.email.subtitle": "Please set a password of {{min}}-{{max}} characters with both letters and numbers to continue signing up with ",
"com.affine.auth.page.sent.email.title": "Welcome to AFFiNE Cloud, you are almost there!",
"com.affine.auth.password": "Password",
Expand Down

0 comments on commit 727130e

Please sign in to comment.