mirror of https://github.com/vector-im/riot-web
				
				
				
			Integrate @vector-im/compound-web (#11354)
* Create useRoomName hook Mark RoomName component as deprecated * Pass out-of-band data to relevant RoomHeader component * Mark LegacyRoomHeader as deprecated * Fix incorrect search&replace in _RoomHeader.pcss * lintfix * Mark room as optional in room topic hook * Fix i18n * Discard use of useCallback * Change export of useRoomName * fix ts issue * lints * Add room topic to room header * lintfix * lintfix & clamp to one line * Revert optimisations to DecoratedRoomAvatar * Add test for opening the room summary * Make transition honour prefer-reduced-motion * Integrate @vector-im/compound-web * Use compound type styles * Use latest version of @vector-im/compound-web * Change component name * Fallback when room is undefined * fix snapshotpull/28788/head^2
							parent
							
								
									33299af5c9
								
							
						
					
					
						commit
						d49581344e
					
				| 
						 | 
				
			
			@ -67,6 +67,7 @@
 | 
			
		|||
        "@sentry/tracing": "^7.0.0",
 | 
			
		||||
        "@testing-library/react-hooks": "^8.0.1",
 | 
			
		||||
        "@vector-im/compound-design-tokens": "^0.0.3",
 | 
			
		||||
        "@vector-im/compound-web": "^0.2.1",
 | 
			
		||||
        "await-lock": "^2.1.0",
 | 
			
		||||
        "blurhash": "^1.1.3",
 | 
			
		||||
        "classnames": "^2.2.6",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -18,6 +18,7 @@ limitations under the License.
 | 
			
		|||
*/
 | 
			
		||||
 | 
			
		||||
@import url("@vector-im/compound-design-tokens/assets/web/css/compound-design-tokens.css");
 | 
			
		||||
@import url("@vector-im/compound-web/dist/style.css");
 | 
			
		||||
@import "./_font-sizes.pcss";
 | 
			
		||||
@import "./_animations.pcss";
 | 
			
		||||
@import "./_spacing.pcss";
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -28,15 +28,7 @@ limitations under the License.
 | 
			
		|||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* To remove when compound is integrated */
 | 
			
		||||
.mx_RoomHeader_name {
 | 
			
		||||
    font: var(--cpd-font-body-lg-semibold);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.mx_RoomHeader_topic {
 | 
			
		||||
    /* To remove when compound is integrated */
 | 
			
		||||
    font: var(--cpd-font-body-sm-regular);
 | 
			
		||||
 | 
			
		||||
    height: 0;
 | 
			
		||||
    opacity: 0;
 | 
			
		||||
    display: -webkit-box;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -15,6 +15,7 @@ limitations under the License.
 | 
			
		|||
*/
 | 
			
		||||
 | 
			
		||||
import React from "react";
 | 
			
		||||
import { Body as BodyText } from "@vector-im/compound-web";
 | 
			
		||||
 | 
			
		||||
import type { Room } from "matrix-js-sdk/src/models/room";
 | 
			
		||||
import { IOOBData } from "../../../stores/ThreepidInviteStore";
 | 
			
		||||
| 
						 | 
				
			
			@ -45,10 +46,22 @@ export default function RoomHeader({ room, oobData }: { room?: Room; oobData?: I
 | 
			
		|||
                <RoomAvatar oobData={oobData} width={40} height={40} />
 | 
			
		||||
            )}
 | 
			
		||||
            <div className="mx_RoomHeader_info">
 | 
			
		||||
                <div dir="auto" title={roomName} role="heading" aria-level={1} className="mx_RoomHeader_name">
 | 
			
		||||
                <BodyText
 | 
			
		||||
                    as="div"
 | 
			
		||||
                    size="lg"
 | 
			
		||||
                    weight="semibold"
 | 
			
		||||
                    dir="auto"
 | 
			
		||||
                    title={roomName}
 | 
			
		||||
                    role="heading"
 | 
			
		||||
                    aria-level={1}
 | 
			
		||||
                >
 | 
			
		||||
                    {roomName}
 | 
			
		||||
                </div>
 | 
			
		||||
                {roomTopic && <div className="mx_RoomHeader_topic">{roomTopic.text}</div>}
 | 
			
		||||
                </BodyText>
 | 
			
		||||
                {roomTopic && (
 | 
			
		||||
                    <BodyText as="div" size="sm" className="mx_RoomHeader_topic">
 | 
			
		||||
                        {roomTopic.text}
 | 
			
		||||
                    </BodyText>
 | 
			
		||||
                )}
 | 
			
		||||
            </div>
 | 
			
		||||
        </header>
 | 
			
		||||
    );
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -31,9 +31,9 @@ exports[`Roomeader renders with no props 1`] = `
 | 
			
		|||
    >
 | 
			
		||||
      <div
 | 
			
		||||
        aria-level="1"
 | 
			
		||||
        class="mx_RoomHeader_name"
 | 
			
		||||
        dir="auto"
 | 
			
		||||
        role="heading"
 | 
			
		||||
        style="font: var(--cpd-font-body-lg-semibold); letter-spacing: var(--cpd-font-letter-spacing-body-lg);"
 | 
			
		||||
        title="Join Room"
 | 
			
		||||
      >
 | 
			
		||||
        Join Room
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										86
									
								
								yarn.lock
								
								
								
								
							
							
						
						
									
										86
									
								
								yarn.lock
								
								
								
								
							| 
						 | 
				
			
			@ -1258,7 +1258,7 @@
 | 
			
		|||
  resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
 | 
			
		||||
  integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
 | 
			
		||||
 | 
			
		||||
"@babel/runtime@^7.0.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.14.6", "@babel/runtime@^7.15.4", "@babel/runtime@^7.17.9", "@babel/runtime@^7.20.7", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
 | 
			
		||||
"@babel/runtime@^7.0.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.14.6", "@babel/runtime@^7.15.4", "@babel/runtime@^7.17.9", "@babel/runtime@^7.20.7", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
 | 
			
		||||
  version "7.22.6"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.6.tgz#57d64b9ae3cff1d67eb067ae117dac087f5bd438"
 | 
			
		||||
  integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==
 | 
			
		||||
| 
						 | 
				
			
			@ -2131,6 +2131,79 @@
 | 
			
		|||
  resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
 | 
			
		||||
  integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
 | 
			
		||||
 | 
			
		||||
"@radix-ui/primitive@1.0.1":
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.0.1.tgz#e46f9958b35d10e9f6dc71c497305c22e3e55dbd"
 | 
			
		||||
  integrity sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.13.10"
 | 
			
		||||
 | 
			
		||||
"@radix-ui/react-compose-refs@1.0.1":
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz#7ed868b66946aa6030e580b1ffca386dd4d21989"
 | 
			
		||||
  integrity sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.13.10"
 | 
			
		||||
 | 
			
		||||
"@radix-ui/react-context@1.0.1":
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.0.1.tgz#fe46e67c96b240de59187dcb7a1a50ce3e2ec00c"
 | 
			
		||||
  integrity sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.13.10"
 | 
			
		||||
 | 
			
		||||
"@radix-ui/react-form@^0.0.3":
 | 
			
		||||
  version "0.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@radix-ui/react-form/-/react-form-0.0.3.tgz#328e7163e723ccc748459d66a2d685d7b4f85d5a"
 | 
			
		||||
  integrity sha512-kgE+Z/haV6fxE5WqIXj05KkaXa3OkZASoTDy25yX2EIp/x0c54rOH/vFr5nOZTg7n7T1z8bSyXmiVIFP9bbhPQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.13.10"
 | 
			
		||||
    "@radix-ui/primitive" "1.0.1"
 | 
			
		||||
    "@radix-ui/react-compose-refs" "1.0.1"
 | 
			
		||||
    "@radix-ui/react-context" "1.0.1"
 | 
			
		||||
    "@radix-ui/react-id" "1.0.1"
 | 
			
		||||
    "@radix-ui/react-label" "2.0.2"
 | 
			
		||||
    "@radix-ui/react-primitive" "1.0.3"
 | 
			
		||||
 | 
			
		||||
"@radix-ui/react-id@1.0.1":
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@radix-ui/react-id/-/react-id-1.0.1.tgz#73cdc181f650e4df24f0b6a5b7aa426b912c88c0"
 | 
			
		||||
  integrity sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.13.10"
 | 
			
		||||
    "@radix-ui/react-use-layout-effect" "1.0.1"
 | 
			
		||||
 | 
			
		||||
"@radix-ui/react-label@2.0.2":
 | 
			
		||||
  version "2.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@radix-ui/react-label/-/react-label-2.0.2.tgz#9c72f1d334aac996fdc27b48a8bdddd82108fb6d"
 | 
			
		||||
  integrity sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.13.10"
 | 
			
		||||
    "@radix-ui/react-primitive" "1.0.3"
 | 
			
		||||
 | 
			
		||||
"@radix-ui/react-primitive@1.0.3":
 | 
			
		||||
  version "1.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz#d49ea0f3f0b2fe3ab1cb5667eb03e8b843b914d0"
 | 
			
		||||
  integrity sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.13.10"
 | 
			
		||||
    "@radix-ui/react-slot" "1.0.2"
 | 
			
		||||
 | 
			
		||||
"@radix-ui/react-slot@1.0.2":
 | 
			
		||||
  version "1.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.0.2.tgz#a9ff4423eade67f501ffb32ec22064bc9d3099ab"
 | 
			
		||||
  integrity sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.13.10"
 | 
			
		||||
    "@radix-ui/react-compose-refs" "1.0.1"
 | 
			
		||||
 | 
			
		||||
"@radix-ui/react-use-layout-effect@1.0.1":
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz#be8c7bc809b0c8934acf6657b577daf948a75399"
 | 
			
		||||
  integrity sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.13.10"
 | 
			
		||||
 | 
			
		||||
"@sentry-internal/tracing@7.60.1":
 | 
			
		||||
  version "7.60.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@sentry-internal/tracing/-/tracing-7.60.1.tgz#c20766a7e31589962ffe9ea9dc58b6f475432303"
 | 
			
		||||
| 
						 | 
				
			
			@ -2794,6 +2867,15 @@
 | 
			
		|||
  dependencies:
 | 
			
		||||
    svg2vectordrawable "^2.9.1"
 | 
			
		||||
 | 
			
		||||
"@vector-im/compound-web@^0.2.1":
 | 
			
		||||
  version "0.2.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@vector-im/compound-web/-/compound-web-0.2.1.tgz#60676a64dc2098da2bc780c15f28fbc3e7dfe6b2"
 | 
			
		||||
  integrity sha512-vZZnl1cyxCRfW1ToPtjyMvhbLLdjoNb5m7gnY5Cvs7WyPurCV2+FeRVVYdnN2YRB37aPqlYwWXa0XV1jh4rFUQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@radix-ui/react-form" "^0.0.3"
 | 
			
		||||
    classnames "^2.3.2"
 | 
			
		||||
    lodash "^4.17.21"
 | 
			
		||||
 | 
			
		||||
abab@^2.0.6:
 | 
			
		||||
  version "2.0.6"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291"
 | 
			
		||||
| 
						 | 
				
			
			@ -3489,7 +3571,7 @@ cjs-module-lexer@^1.0.0:
 | 
			
		|||
  resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40"
 | 
			
		||||
  integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==
 | 
			
		||||
 | 
			
		||||
classnames@^2.2.6:
 | 
			
		||||
classnames@^2.2.6, classnames@^2.3.2:
 | 
			
		||||
  version "2.3.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.2.tgz#351d813bf0137fcc6a76a16b88208d2560a0d924"
 | 
			
		||||
  integrity sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue