Update service list
This commit is contained in:
parent
f1fac8cea9
commit
bb73080c13
File diff suppressed because it is too large
Load Diff
|
@ -18,6 +18,9 @@ public class ServicesListPopulator : MonoBehaviour
|
||||||
|
|
||||||
private bool isVisible = true;
|
private bool isVisible = true;
|
||||||
|
|
||||||
|
private const string apiUrlPrefix = "API URL: ";
|
||||||
|
private const string hostPrefix = "Host: ";
|
||||||
|
|
||||||
public void AddItemFromService(MdnsService service, Action action)
|
public void AddItemFromService(MdnsService service, Action action)
|
||||||
{
|
{
|
||||||
GameObject itemInstance = Instantiate(dynamicItem, gridObjectCollection.transform);
|
GameObject itemInstance = Instantiate(dynamicItem, gridObjectCollection.transform);
|
||||||
|
@ -25,8 +28,13 @@ public class ServicesListPopulator : MonoBehaviour
|
||||||
|
|
||||||
Debug.Log($"Adding service to table: {service}");
|
Debug.Log($"Adding service to table: {service}");
|
||||||
TextMeshPro[] textMeshes = itemInstance.GetComponentsInChildren<TextMeshPro>();
|
TextMeshPro[] textMeshes = itemInstance.GetComponentsInChildren<TextMeshPro>();
|
||||||
textMeshes[0].text = service.Host + ":" + service.Port + service.Path;
|
if (textMeshes.Length < 2)
|
||||||
textMeshes[1].text = service.IpAddress;
|
{
|
||||||
|
Debug.LogError("Not enough text meshes found in dynamic item");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
textMeshes[0].text = $"{apiUrlPrefix}http://{service.IpAddress}:{service.Port}{service.Path}";
|
||||||
|
textMeshes[1].text = $"{hostPrefix}{service.Host}";
|
||||||
itemInstance
|
itemInstance
|
||||||
.GetComponentInChildren<Interactable>()
|
.GetComponentInChildren<Interactable>()
|
||||||
.OnClick.AddListener(() =>
|
.OnClick.AddListener(() =>
|
||||||
|
@ -54,16 +62,16 @@ public class ServicesListPopulator : MonoBehaviour
|
||||||
|
|
||||||
public void RemoveItemByService(MdnsService service)
|
public void RemoveItemByService(MdnsService service)
|
||||||
{
|
{
|
||||||
string fullAddress = service.Host + ":" + service.Port + service.Path;
|
string apiUrl = $"{apiUrlPrefix}http://{service.IpAddress}:{service.Port}{service.Path}";
|
||||||
string ipAddress = service.IpAddress;
|
string hostname = $"{hostPrefix}{service.Host}";
|
||||||
|
|
||||||
foreach (Transform child in gridObjectCollection.transform)
|
foreach (Transform child in gridObjectCollection.transform)
|
||||||
{
|
{
|
||||||
TextMeshPro[] textMeshes = child.GetComponentsInChildren<TextMeshPro>();
|
TextMeshPro[] textMeshes = child.GetComponentsInChildren<TextMeshPro>();
|
||||||
if (
|
if (
|
||||||
textMeshes.Length >= 2
|
textMeshes.Length >= 2
|
||||||
&& textMeshes[0].text == fullAddress
|
&& textMeshes[0].text == apiUrl
|
||||||
&& textMeshes[1].text == ipAddress
|
&& textMeshes[1].text == hostname
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
Debug.Log($"Removing service from table: {service}");
|
Debug.Log($"Removing service from table: {service}");
|
||||||
|
|
Loading…
Reference in New Issue