mirror of
https://github.com/danog/telegram-tt.git
synced 2024-12-04 10:40:09 +01:00
Left Column: Show an update button after 3 days of running
This commit is contained in:
parent
1b568fc151
commit
5e13652674
@ -66,4 +66,12 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-update {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 1rem;
|
||||||
|
left: 1rem;
|
||||||
|
right: 1rem;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,11 @@ import { LeftColumnContent } from '../../../types';
|
|||||||
|
|
||||||
import { IS_TOUCH_ENV } from '../../../util/environment';
|
import { IS_TOUCH_ENV } from '../../../util/environment';
|
||||||
import { pick } from '../../../util/iteratees';
|
import { pick } from '../../../util/iteratees';
|
||||||
|
import buildClassName from '../../../util/buildClassName';
|
||||||
import useBrowserOnline from '../../../hooks/useBrowserOnline';
|
import useBrowserOnline from '../../../hooks/useBrowserOnline';
|
||||||
|
import useFlag from '../../../hooks/useFlag';
|
||||||
|
import useShowTransition from '../../../hooks/useShowTransition';
|
||||||
|
import useLang from '../../../hooks/useLang';
|
||||||
|
|
||||||
import Transition from '../../ui/Transition';
|
import Transition from '../../ui/Transition';
|
||||||
import LeftMainHeader from './LeftMainHeader';
|
import LeftMainHeader from './LeftMainHeader';
|
||||||
@ -18,6 +22,7 @@ import LeftSearch from '../search/LeftSearch.async';
|
|||||||
import ContactList from './ContactList.async';
|
import ContactList from './ContactList.async';
|
||||||
import NewChatButton from '../NewChatButton';
|
import NewChatButton from '../NewChatButton';
|
||||||
import ShowTransition from '../../ui/ShowTransition';
|
import ShowTransition from '../../ui/ShowTransition';
|
||||||
|
import Button from '../../ui/Button';
|
||||||
|
|
||||||
import './LeftMain.scss';
|
import './LeftMain.scss';
|
||||||
|
|
||||||
@ -35,6 +40,8 @@ type StateProps = Pick<GlobalState, 'connectionState'>;
|
|||||||
|
|
||||||
const TRANSITION_RENDER_COUNT = Object.keys(LeftColumnContent).length / 2;
|
const TRANSITION_RENDER_COUNT = Object.keys(LeftColumnContent).length / 2;
|
||||||
const BUTTON_CLOSE_DELAY_MS = 250;
|
const BUTTON_CLOSE_DELAY_MS = 250;
|
||||||
|
const APP_OUTDATED_TIMEOUT = 3 * 24 * 60 * 60 * 1000; // 3 days
|
||||||
|
|
||||||
let closeTimeout: number | undefined;
|
let closeTimeout: number | undefined;
|
||||||
|
|
||||||
const LeftMain: FC<OwnProps & StateProps> = ({
|
const LeftMain: FC<OwnProps & StateProps> = ({
|
||||||
@ -115,6 +122,10 @@ const LeftMain: FC<OwnProps & StateProps> = ({
|
|||||||
};
|
};
|
||||||
}, [content]);
|
}, [content]);
|
||||||
|
|
||||||
|
const [shouldRenderUpdateButton, updateButtonClassNames, handleUpdateClick] = useAppOutdatedCheck();
|
||||||
|
|
||||||
|
const lang = useLang();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
id="LeftColumn-main"
|
id="LeftColumn-main"
|
||||||
@ -161,6 +172,16 @@ const LeftMain: FC<OwnProps & StateProps> = ({
|
|||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
</Transition>
|
</Transition>
|
||||||
|
{shouldRenderUpdateButton && (
|
||||||
|
<Button
|
||||||
|
fluid
|
||||||
|
pill
|
||||||
|
className={buildClassName('btn-update', updateButtonClassNames)}
|
||||||
|
onClick={handleUpdateClick}
|
||||||
|
>
|
||||||
|
{lang('lng_update_telegram')}
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
<NewChatButton
|
<NewChatButton
|
||||||
isShown={isNewChatButtonShown}
|
isShown={isNewChatButtonShown}
|
||||||
onNewPrivateChat={handleSelectContacts}
|
onNewPrivateChat={handleSelectContacts}
|
||||||
@ -171,6 +192,26 @@ const LeftMain: FC<OwnProps & StateProps> = ({
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function useAppOutdatedCheck() {
|
||||||
|
const [isAppOutdated, markIsAppOutdated] = useFlag(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const timeout = window.setTimeout(markIsAppOutdated, APP_OUTDATED_TIMEOUT);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
clearTimeout(timeout);
|
||||||
|
};
|
||||||
|
}, [markIsAppOutdated]);
|
||||||
|
|
||||||
|
const { shouldRender, transitionClassNames } = useShowTransition(isAppOutdated);
|
||||||
|
|
||||||
|
const handleUpdateClick = () => {
|
||||||
|
window.location.reload();
|
||||||
|
};
|
||||||
|
|
||||||
|
return [shouldRender, transitionClassNames, handleUpdateClick] as const;
|
||||||
|
}
|
||||||
|
|
||||||
export default withGlobal<OwnProps>(
|
export default withGlobal<OwnProps>(
|
||||||
(global): StateProps => pick(global, ['connectionState']),
|
(global): StateProps => pick(global, ['connectionState']),
|
||||||
)(LeftMain);
|
)(LeftMain);
|
||||||
|
@ -1701,4 +1701,8 @@ export default {
|
|||||||
key: 'Chat.Quiz.TotalVotesEmpty',
|
key: 'Chat.Quiz.TotalVotesEmpty',
|
||||||
value: 'No answers yet',
|
value: 'No answers yet',
|
||||||
},
|
},
|
||||||
|
lng_update_telegram: {
|
||||||
|
key: 'lng_update_telegram',
|
||||||
|
value: 'Update Telegram',
|
||||||
|
},
|
||||||
} as ApiLangPack;
|
} as ApiLangPack;
|
||||||
|
Loading…
Reference in New Issue
Block a user