This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 827
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Live location sharing: own live beacon status on maximised view (#8374)
* add floating own live sharing eacon status to maximised view Signed-off-by: Kerry Archibald <kerrya@element.io> * add tests for own beacon status Signed-off-by: Kerry Archibald <kerrya@element.io> * stylelint Signed-off-by: Kerry Archibald <kerrya@element.io> * remove huge snapshot Signed-off-by: Kerry Archibald <kerrya@element.io> * remove unused emits from test Signed-off-by: Kerry Archibald <kerrya@element.io>
- Loading branch information
Kerry
authored
Apr 21, 2022
1 parent
605fbd3
commit f2ec465
Showing
7 changed files
with
175 additions
and
16 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
55 changes: 55 additions & 0 deletions
55
res/css/components/views/beacon/_DialogOwnBeaconStatus.scss
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,55 @@ | ||
/* | ||
Copyright 2022 The Matrix.org Foundation C.I.C. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
.mx_DialogOwnBeaconStatus { | ||
position: absolute; | ||
bottom: $spacing-32; | ||
width: 300px; | ||
margin-left: -150px; | ||
left: 50%; | ||
|
||
box-sizing: border-box; | ||
display: flex; | ||
flex-direction: row; | ||
align-items: flex-start; | ||
justify-content: stretch; | ||
|
||
background: $background; | ||
border-radius: 8px; | ||
box-shadow: 4px 4px 12px 0 $menu-box-shadow-color; | ||
|
||
padding: 0 $spacing-12; | ||
} | ||
|
||
.mx_DialogOwnBeaconStatus_avatarIcon { | ||
flex: 0 0; | ||
height: 32px; | ||
width: 32px; | ||
margin: $spacing-8 0 $spacing-8 0; | ||
} | ||
|
||
.mx_DialogOwnBeaconStatus_avatar { | ||
flex: 0 0; | ||
box-sizing: border-box; | ||
|
||
border: 2px solid $location-live-color; | ||
margin: $spacing-8 0 $spacing-8 0; | ||
} | ||
|
||
.mx_DialogOwnBeaconStatus_status { | ||
flex: 1 1; | ||
padding-right: 0; | ||
} |
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,80 @@ | ||
/* | ||
Copyright 2022 The Matrix.org Foundation C.I.C. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
import React, { useContext } from 'react'; | ||
import { Room, Beacon } from 'matrix-js-sdk/src/matrix'; | ||
import { LocationAssetType } from 'matrix-js-sdk/src/@types/location'; | ||
|
||
import { OwnBeaconStore, OwnBeaconStoreEvent } from '../../../stores/OwnBeaconStore'; | ||
import { useEventEmitterState } from '../../../hooks/useEventEmitter'; | ||
import { OwnProfileStore } from '../../../stores/OwnProfileStore'; | ||
import OwnBeaconStatus from './OwnBeaconStatus'; | ||
import { BeaconDisplayStatus } from './displayStatus'; | ||
import MatrixClientContext from '../../../contexts/MatrixClientContext'; | ||
import MemberAvatar from '../avatars/MemberAvatar'; | ||
import StyledLiveBeaconIcon from './StyledLiveBeaconIcon'; | ||
|
||
interface Props { | ||
roomId: Room['roomId']; | ||
} | ||
|
||
const useOwnBeacon = (roomId: Room['roomId']): Beacon | undefined => { | ||
const ownBeacon = useEventEmitterState( | ||
OwnProfileStore.instance, | ||
OwnBeaconStoreEvent.LivenessChange, | ||
() => { | ||
const [ownBeaconId] = OwnBeaconStore.instance.getLiveBeaconIds(roomId); | ||
return OwnBeaconStore.instance.getBeaconById(ownBeaconId); | ||
}, | ||
); | ||
|
||
return ownBeacon; | ||
}; | ||
|
||
const DialogOwnBeaconStatus: React.FC<Props> = ({ roomId }) => { | ||
const beacon = useOwnBeacon(roomId); | ||
|
||
const matrixClient = useContext(MatrixClientContext); | ||
const room = matrixClient.getRoom(roomId); | ||
|
||
if (!beacon?.isLive) { | ||
return null; | ||
} | ||
|
||
const isSelfLocation = beacon.beaconInfo.assetType === LocationAssetType.Self; | ||
const beaconMember = isSelfLocation ? | ||
room.getMember(beacon.beaconInfoOwner) : | ||
undefined; | ||
|
||
return <div className='mx_DialogOwnBeaconStatus'> | ||
{ isSelfLocation ? | ||
<MemberAvatar | ||
className='mx_DialogOwnBeaconStatus_avatar' | ||
member={beaconMember} | ||
height={32} | ||
width={32} | ||
/> : | ||
<StyledLiveBeaconIcon className='mx_DialogOwnBeaconStatus_avatarIcon' /> | ||
} | ||
<OwnBeaconStatus | ||
className='mx_DialogOwnBeaconStatus_status' | ||
beacon={beacon} | ||
displayStatus={BeaconDisplayStatus.Active} | ||
/> | ||
</div>; | ||
}; | ||
|
||
export default DialogOwnBeaconStatus; |
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