added mock data

This commit is contained in:
mushka 2022-06-22 11:34:26 +03:00
parent d489d4ee4d
commit c3fa818c13
2 changed files with 32 additions and 0 deletions

View File

@ -1,5 +1,7 @@
import Avatar from "@appserver/components/avatar"; import Avatar from "@appserver/components/avatar";
import ContextMenuButton from "@appserver/components/context-menu-button"; import ContextMenuButton from "@appserver/components/context-menu-button";
import DropDownItem from "@appserver/components/drop-down-item";
import GroupButton from "@appserver/components/group-button";
import IconButton from "@appserver/components/icon-button"; import IconButton from "@appserver/components/icon-button";
import Text from "@appserver/components/text"; import Text from "@appserver/components/text";
import React from "react"; import React from "react";
@ -60,6 +62,31 @@ const Members = ({ t, selfId }) => {
</span> </span>
)} )}
</div> </div>
{/* <div
style={{
height: "200px",
position: "relative",
}}
>
<GroupButton
isDropdown
label={user.role}
style={{
left: 0,
top: 0,
}}
>
<DropDownItem label="Button 1" onClick={() => {}} />
<DropDownItem
label="Button 2"
onClick={function noRefCheck() {}}
/>
<DropDownItem
label="Button 3"
onClick={function noRefCheck() {}}
/>
</GroupButton>
</div> */}
</StyledUser> </StyledUser>
))} ))}
</StyledUserList> </StyledUserList>

View File

@ -31,6 +31,7 @@ const people = [
id: "2af62a34-b6c8-11ec-b1d9-b42e99bd46a3", id: "2af62a34-b6c8-11ec-b1d9-b42e99bd46a3",
displayName: "Мушка Никита", displayName: "Мушка Никита",
profileUrl: "http://localhost:8092/products/people/view/administrator", profileUrl: "http://localhost:8092/products/people/view/administrator",
role: "Owner",
}, },
{ {
email: "yoshiko05@rohan.biz", email: "yoshiko05@rohan.biz",
@ -39,6 +40,7 @@ const people = [
id: "1231234", id: "1231234",
displayName: "Rebecca Holt", displayName: "Rebecca Holt",
profileUrl: "asdasd", profileUrl: "asdasd",
role: "Room manager",
}, },
{ {
email: "yoshiko05@rohan.biz", email: "yoshiko05@rohan.biz",
@ -48,6 +50,7 @@ const people = [
id: "345970", id: "345970",
displayName: "Angela Garcia", displayName: "Angela Garcia",
profileUrl: "", profileUrl: "",
role: "Viewer",
}, },
{ {
email: "kk@mail.ru", email: "kk@mail.ru",
@ -57,6 +60,7 @@ const people = [
displayName: displayName:
"Some random guy with a really long name, like i mean some dumb long one", "Some random guy with a really long name, like i mean some dumb long one",
profileUrl: "http://localhost:8092/products/people/view/kk", profileUrl: "http://localhost:8092/products/people/view/kk",
role: "Viewer",
}, },
{ {
email: "ycummerata@yahoo.com", email: "ycummerata@yahoo.com",
@ -65,6 +69,7 @@ const people = [
id: "389457", id: "389457",
displayName: "", displayName: "",
profileUrl: "", profileUrl: "",
role: "Viewer",
}, },
]; ];