Skip to content
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

Added number badge on top the tab icon to show the number of active conversations #421

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
24 changes: 11 additions & 13 deletions assets/public/logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 83 additions & 2 deletions assets/src/components/Dashboard.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useEffect, useState} from 'react';
import React, {useEffect, useRef, useState} from 'react';
import {
useLocation,
Switch,
Expand Down Expand Up @@ -67,6 +67,85 @@ const shouldDisplayChat = (pathname: string) => {
return true;
};

const ShortcutIcon = ({totalNumUnread}: {totalNumUnread: number}) => {

const canvasRef = useRef<HTMLCanvasElement>(null)
const icon_link = '/logo.svg'
const [data, setData] = useState(icon_link);
var x = 0
var y = 0
const mult = 2
const xOffset = 18
const yOffset = 1
var xExtraOffset = 0
var yExtraOffset = 0

const numbers = [
[0,0,0,0,0,0, 0,0,1,1,0,0, 0,0,1,1,0,0, 1,1,1,1,1,1, 1,1,1,1,1,1, 0,0,1,1,0,0, 0,0,1,1,0,0,],
[0,0,0,1,0,0, 0,1,1,1,0,0, 0,0,0,1,0,0, 0,0,0,1,0,0, 0,0,0,1,0,0, 0,0,0,1,0,0, 0,0,1,1,1,0,],
[0,0,1,1,0,0, 0,1,0,0,1,0, 0,0,0,0,1,0, 0,0,0,1,0,0, 0,0,1,0,0,0, 0,1,0,0,0,0, 0,1,1,1,1,0,],
[0,0,1,1,0,0, 0,1,0,0,1,0, 0,0,0,0,1,0, 0,0,1,1,0,0, 0,0,0,0,1,0, 0,1,0,0,1,0, 0,0,1,1,0,0,],
[0,1,0,0,1,0, 0,1,0,0,1,0, 0,1,0,0,1,0, 0,1,1,1,1,0, 0,0,0,0,1,0, 0,0,0,0,1,0, 0,0,0,0,1,0,],
[0,1,1,1,1,0, 0,1,0,0,0,0, 0,1,1,1,0,0, 0,0,0,0,1,0, 0,0,0,0,1,0, 0,1,0,0,1,0, 0,0,1,1,0,0,],
[0,0,0,1,1,0, 0,0,1,0,0,0, 0,1,0,0,0,0, 0,1,1,1,0,0, 0,1,0,0,1,0, 0,1,0,0,1,0, 0,0,1,1,0,0,],
[0,1,1,1,1,0, 0,0,0,0,1,0, 0,0,0,0,1,0, 0,0,0,0,1,0, 0,0,0,0,1,0, 0,0,0,0,1,0, 0,0,0,0,1,0,],
[0,0,1,1,0,0, 0,1,0,0,1,0, 0,1,0,0,1,0, 0,0,1,1,0,0, 0,1,0,0,1,0, 0,1,0,0,1,0, 0,0,1,1,0,0,],
[0,0,1,1,0,0, 0,1,0,0,1,0, 0,1,0,0,1,0, 0,0,1,1,1,0, 0,0,0,0,1,0, 0,0,0,0,1,0, 0,0,0,0,1,0,],
]
useEffect(() => {
const canvas = canvasRef.current
if(canvas){
const ctx = canvas.getContext('2d')
if(ctx){

const image = new Image();
image.onload = () => {
ctx.clearRect(0,0, canvas.width, canvas.height);
ctx.drawImage(image, 0, 0, image.width, image.height, 0, 0, canvas.width, canvas.height);
if(totalNumUnread){
ctx.fillStyle = '#ff4d4f'
ctx.beginPath()
ctx.arc(24, 8, 8, 0, 2 * Math.PI);
ctx.fill()
if(totalNumUnread < 10){
var grid = numbers[totalNumUnread];
}
else{
var grid = numbers[0];
yExtraOffset = -1
}
ctx.beginPath()
ctx.fillStyle = '#ffffff'
for(var _i=0; _i< 6 * 7; _i++){
if(grid[_i]){
ctx.rect(xOffset + xExtraOffset + (_i % 6 * mult), yOffset + yExtraOffset + (Math.floor(_i / 6) * mult), mult, mult)
}

}
ctx.fill()
//ctx.textAlign = "center";
//ctx.font = "16px monospace";
//ctx.fillText(String(totalNumUnread), 24, 14);
}
setData(canvas.toDataURL())
};
image.src = icon_link;
}

}
})

return (
<div className="" style={{position:'absolute', zIndex: 1, display: 'none'}}>
<canvas ref={canvasRef} width="32" height="32" style={{width: '0', height: '0'}}/>
<Helmet defer={false}>
<link rel="shortcut icon" href={data}></link>
</Helmet>
</div>
)

}

// TODO: not sure if this is the best way to handle this, but the goal
// of this component is to flash the number of unread messages in the
// tab (i.e. HTML title) so users can see when new messages arrive
Expand Down Expand Up @@ -131,7 +210,9 @@ const Dashboard = (props: RouteComponentProps) => {

return (
<Layout>
<DashboardHtmlHead totalNumUnread={totalNumUnread} />
<ShortcutIcon totalNumUnread={totalNumUnread} />



<Sider
width={220}
Expand Down