-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
13 changed files
with
192 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import { usePaxContext } from '@/state/hooks'; | ||
import { | ||
Battery, | ||
BatteryFull, | ||
BatteryLow, | ||
BatteryMedium, | ||
Unplug, | ||
} from 'lucide-react'; | ||
|
||
import { Tooltip, TooltipContent, TooltipTrigger } from './ui/tooltip'; | ||
|
||
export function BatteryIndicator() { | ||
const { state } = usePaxContext(); | ||
const tooltipContent = state.batteryPercentage | ||
? `${state.batteryPercentage}%` | ||
: 'Disconnected'; | ||
|
||
const getIcon = () => { | ||
if (!state.batteryPercentage) { | ||
return <Unplug />; | ||
} | ||
if (state.batteryPercentage < 25) { | ||
return <Battery />; | ||
} | ||
if (state.batteryPercentage < 50) { | ||
return <BatteryLow />; | ||
} | ||
if (state.batteryPercentage < 75) { | ||
return <BatteryMedium />; | ||
} | ||
if (state.batteryPercentage >= 75) { | ||
return <BatteryFull />; | ||
} | ||
}; | ||
|
||
return ( | ||
<Tooltip> | ||
<TooltipTrigger>{getIcon()}</TooltipTrigger> | ||
<TooltipContent>{tooltipContent}</TooltipContent> | ||
</Tooltip> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { cn } from '@/lib/utils'; | ||
import * as TooltipPrimitive from '@radix-ui/react-tooltip'; | ||
import * as React from 'react'; | ||
|
||
const TooltipProvider = TooltipPrimitive.Provider; | ||
|
||
const Tooltip = TooltipPrimitive.Root; | ||
|
||
const TooltipTrigger = TooltipPrimitive.Trigger; | ||
|
||
const TooltipContent = React.forwardRef< | ||
React.ElementRef<typeof TooltipPrimitive.Content>, | ||
React.ComponentPropsWithoutRef<typeof TooltipPrimitive.Content> | ||
>(({ className, sideOffset = 4, ...props }, ref) => ( | ||
<TooltipPrimitive.Content | ||
ref={ref} | ||
sideOffset={sideOffset} | ||
className={cn( | ||
`z-50 overflow-hidden rounded-md border border-neutral-200 bg-white px-3 py-1.5 | ||
text-sm text-neutral-950 shadow-md animate-in fade-in-0 zoom-in-95 | ||
data-[state=closed]:animate-out data-[state=closed]:fade-out-0 | ||
data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 | ||
data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 | ||
data-[side=top]:slide-in-from-bottom-2 dark:border-neutral-800 | ||
dark:bg-neutral-950 dark:text-neutral-50`, | ||
className, | ||
)} | ||
{...props} | ||
/> | ||
)); | ||
TooltipContent.displayName = TooltipPrimitive.Content.displayName; | ||
|
||
export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Messages } from '../../shared/enums/Messages'; | ||
import { PaxDecryptedPacket } from '../../shared/models/Packet'; | ||
import { MessageAbs } from './MessageAbs'; | ||
|
||
export class BatteryPercentageMessage implements MessageAbs { | ||
readonly percentage: number; | ||
readonly messageType: Messages; | ||
readonly packet: PaxDecryptedPacket; | ||
|
||
constructor(packet: PaxDecryptedPacket) { | ||
const temperature = packet.getUint8(1); | ||
this.percentage = temperature; | ||
this.messageType = Messages.ATTRIBUTE_BATTERY; | ||
this.packet = packet; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters