Init
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
using Unity.Properties;
|
||||
using System;
|
||||
using Blocks.Common;
|
||||
using UnityEngine.UIElements;
|
||||
|
||||
namespace Blocks.Sessions.Common
|
||||
{
|
||||
[UxmlElement]
|
||||
public partial class SessionNameLabel : Label
|
||||
{
|
||||
[UxmlAttribute, CreateProperty]
|
||||
public string SessionType
|
||||
{
|
||||
get => m_SessionType;
|
||||
set
|
||||
{
|
||||
if (m_SessionType == value)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
m_SessionType = value;
|
||||
if (panel != null)
|
||||
{
|
||||
UpdateBindings();
|
||||
}
|
||||
}
|
||||
}
|
||||
string m_SessionType;
|
||||
|
||||
DataBinding m_DataBinding;
|
||||
|
||||
public SessionNameLabel()
|
||||
{
|
||||
AddToClassList(BlocksTheme.Header);
|
||||
m_DataBinding = new DataBinding()
|
||||
{
|
||||
dataSourcePath = new PropertyPath(nameof(SessionNameViewModel.SessionName)),
|
||||
bindingMode = BindingMode.ToTarget
|
||||
};
|
||||
SetBinding(new BindingId(nameof(text)), m_DataBinding);
|
||||
|
||||
RegisterCallback<AttachToPanelEvent>(_ => UpdateBindings());
|
||||
RegisterCallback<DetachFromPanelEvent>(_ => CleanupBindings());
|
||||
}
|
||||
|
||||
void UpdateBindings()
|
||||
{
|
||||
CleanupBindings();
|
||||
m_DataBinding.dataSource = new SessionNameViewModel(m_SessionType);
|
||||
}
|
||||
|
||||
void CleanupBindings()
|
||||
{
|
||||
if (m_DataBinding.dataSource is IDisposable disposable)
|
||||
{
|
||||
disposable.Dispose();
|
||||
}
|
||||
m_DataBinding.dataSource = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user