jf-roku/components/PersonDetails.xml

45 lines
2.2 KiB
XML
Raw Normal View History

2022-03-13 08:46:03 +00:00
<?xml version="1.0" encoding="utf-8" ?>
<component name="PersonDetails" extends="JFGroup">
<interface>
<field id="itemContent" type="node" onChange="loadPerson" />
<field id="image" type="node" />
<field id="selectedItem" type="node" alias="extrasGrid.selectedItem" alwaysNotify="true" />
</interface>
<children>
2023-02-01 21:46:51 +00:00
<LayoutGroup id="main_group"
2023-02-07 04:27:46 +00:00
layoutdirection="vert" translation="[60, 180]" itemSpacings="[36]" >
<LayoutGroup id="header_group" layoutdirection="horiz" >
<LayoutGroup id="title_group" layoutdirection="vert" itemSpacings="[11]" >
<Rectangle id="title_rectangle" height="100" width="1426" color="#262626">
<Label id="name" font="font:LargeBoldSystemFont" height="100" width="1426" vertAlign="bottom" />
</Rectangle>
2023-02-01 21:46:51 +00:00
</LayoutGroup>
2023-02-08 04:05:57 +00:00
<ButtonGroupHoriz id="buttons" >
2023-02-07 04:27:46 +00:00
<Button id="favorite-button" text="Favorite" iconUri="" focusedIconUri="" />
2023-02-01 21:46:51 +00:00
</ButtonGroupHoriz>
2023-02-01 08:54:58 +00:00
</LayoutGroup>
2023-02-01 21:46:51 +00:00
<LayoutGroup id="personInfoGroup"
2023-02-07 04:48:56 +00:00
layoutDirection="horiz" itemSpacings="[46]">
2023-02-01 21:46:51 +00:00
<Poster id="personImage"
2023-02-07 04:48:56 +00:00
width="430" height="645" />
2022-03-13 08:46:03 +00:00
<LayoutGroup id="vertSpacer" layoutDirection="vert" itemSpacings="[24]">
2023-02-04 17:22:49 +00:00
<LayoutGroup id="dataGroup>" layoutDirection="vert" translation="[450,180]">
2023-02-07 04:48:56 +00:00
<Rectangle id="dscrBorder" height="645" width="1322" color="0x202020ff" visible="true">
<Rectangle id='dscrRect' translation="[3, 3]" height="639" width="1316" color="0x202020ff">
2022-03-13 08:46:03 +00:00
<Label id="description"
2023-02-07 04:48:56 +00:00
height="627" width="1280" wrap="true" translation="[18, 15]"
2022-03-13 08:46:03 +00:00
font="font:SmallestSystemFont" color="#e4e4e4ff" ellipsisText=" ... (-OK- for More)" />
</Rectangle>
</Rectangle>
</LayoutGroup>
</LayoutGroup>
</LayoutGroup>
</LayoutGroup>
<extrasSlider id="personVideos" />
</children>
<script type="text/brightscript" uri="PersonDetails.brs" />
<script type="text/brightscript" uri="pkg:/source/api/Image.brs" />
<script type="text/brightscript" uri="pkg:/source/api/baserequest.brs" />
<script type="text/brightscript" uri="pkg:/source/utils/config.brs" />
</component>