Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
io.gs2.unity.sdk.uikit / Gs2Inbox / View / Label / Gs2InboxOwnMessageLabel.cs
Size: Mime:
/*
 * Copyright 2016 Game Server Services, Inc. or its affiliates. All Rights
 * Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
// ReSharper disable UnusedAutoPropertyAccessor.Global
// ReSharper disable CheckNamespace
// ReSharper disable RedundantNameQualifier
// ReSharper disable RedundantAssignment
// ReSharper disable NotAccessedVariable
// ReSharper disable RedundantUsingDirective
// ReSharper disable Unity.NoNullPropagation
// ReSharper disable InconsistentNaming

#pragma warning disable CS0472

using System;
using Gs2.Core.Util;
using Gs2.Unity.UiKit.Core;
using Gs2.Unity.UiKit.Gs2Inbox.Fetcher;
using UnityEngine;
using UnityEngine.Events;

namespace Gs2.Unity.UiKit.Gs2Inbox
{
    /// <summary>
    /// Main
    /// </summary>

	[AddComponentMenu("GS2 UIKit/Inbox/Message/View/Label/Gs2InboxOwnMessageLabel")]
    public partial class Gs2InboxOwnMessageLabel : MonoBehaviour
    {
        public void Update()
        {
            if (_fetcher.Fetched && _fetcher.Message != null)
            {
                var receivedAt = _fetcher.Message.ReceivedAt == null ? DateTime.Now : UnixTime.FromUnixTime(_fetcher.Message.ReceivedAt).ToLocalTime();
                var readAt = _fetcher.Message.ReadAt == null ? DateTime.Now : UnixTime.FromUnixTime(_fetcher.Message.ReadAt).ToLocalTime();
                var expiresAt = _fetcher.Message.ExpiresAt == null ? DateTime.Now : UnixTime.FromUnixTime(_fetcher.Message.ExpiresAt).ToLocalTime();
                onUpdate?.Invoke(
                    format.Replace(
                        "{messageId}", $"{_fetcher?.Message?.MessageId}"
                    ).Replace(
                        "{name}", $"{_fetcher?.Message?.Name}"
                    ).Replace(
                        "{metadata}", $"{_fetcher?.Message?.Metadata}"
                    ).Replace(
                        "{isRead}", $"{_fetcher?.Message?.IsRead}"
                    ).Replace(
                        "{readAcquireActions}", $"{_fetcher?.Message?.ReadAcquireActions}"
                    ).Replace(
                        "{receivedAt:yyyy}", receivedAt.ToString("yyyy")
                    ).Replace(
                        "{receivedAt:yy}", receivedAt.ToString("yy")
                    ).Replace(
                        "{receivedAt:MM}", receivedAt.ToString("MM")
                    ).Replace(
                        "{receivedAt:MMM}", receivedAt.ToString("MMM")
                    ).Replace(
                        "{receivedAt:dd}", receivedAt.ToString("dd")
                    ).Replace(
                        "{receivedAt:hh}", receivedAt.ToString("hh")
                    ).Replace(
                        "{receivedAt:HH}", receivedAt.ToString("HH")
                    ).Replace(
                        "{receivedAt:tt}", receivedAt.ToString("tt")
                    ).Replace(
                        "{receivedAt:mm}", receivedAt.ToString("mm")
                    ).Replace(
                        "{receivedAt:ss}", receivedAt.ToString("ss")
                    ).Replace(
                        "{readAt:yyyy}", readAt.ToString("yyyy")
                    ).Replace(
                        "{readAt:yy}", readAt.ToString("yy")
                    ).Replace(
                        "{readAt:MM}", readAt.ToString("MM")
                    ).Replace(
                        "{readAt:MMM}", readAt.ToString("MMM")
                    ).Replace(
                        "{readAt:dd}", readAt.ToString("dd")
                    ).Replace(
                        "{readAt:hh}", readAt.ToString("hh")
                    ).Replace(
                        "{readAt:HH}", readAt.ToString("HH")
                    ).Replace(
                        "{readAt:tt}", readAt.ToString("tt")
                    ).Replace(
                        "{readAt:mm}", readAt.ToString("mm")
                    ).Replace(
                        "{readAt:ss}", readAt.ToString("ss")
                    ).Replace(
                        "{expiresAt:yyyy}", expiresAt.ToString("yyyy")
                    ).Replace(
                        "{expiresAt:yy}", expiresAt.ToString("yy")
                    ).Replace(
                        "{expiresAt:MM}", expiresAt.ToString("MM")
                    ).Replace(
                        "{expiresAt:MMM}", expiresAt.ToString("MMM")
                    ).Replace(
                        "{expiresAt:dd}", expiresAt.ToString("dd")
                    ).Replace(
                        "{expiresAt:hh}", expiresAt.ToString("hh")
                    ).Replace(
                        "{expiresAt:HH}", expiresAt.ToString("HH")
                    ).Replace(
                        "{expiresAt:tt}", expiresAt.ToString("tt")
                    ).Replace(
                        "{expiresAt:mm}", expiresAt.ToString("mm")
                    ).Replace(
                        "{expiresAt:ss}", expiresAt.ToString("ss")
                    )
                );
            }
        }
    }

    /// <summary>
    /// Dependent components
    /// </summary>

    public partial class Gs2InboxOwnMessageLabel
    {
        private Gs2InboxOwnMessageFetcher _fetcher;

        public void Awake()
        {
            _fetcher = GetComponent<Gs2InboxOwnMessageFetcher>() ?? GetComponentInParent<Gs2InboxOwnMessageFetcher>();

            if (_fetcher == null) {
                Debug.LogError($"{gameObject.GetFullPath()}: Couldn't find the Gs2InboxOwnMessageFetcher.");
                enabled = false;
            }

            Update();
        }

        public virtual bool HasError()
        {
            _fetcher = GetComponent<Gs2InboxOwnMessageFetcher>() ?? GetComponentInParent<Gs2InboxOwnMessageFetcher>(true);
            if (_fetcher == null) {
                return true;
            }
            return false;
        }
    }

    /// <summary>
    /// Public properties
    /// </summary>

    public partial class Gs2InboxOwnMessageLabel
    {

    }

    /// <summary>
    /// Parameters for Inspector
    /// </summary>

    public partial class Gs2InboxOwnMessageLabel
    {
        public string format;
    }

    /// <summary>
    /// Event handlers
    /// </summary>
    public partial class Gs2InboxOwnMessageLabel
    {
        [Serializable]
        private class UpdateEvent : UnityEvent<string>
        {

        }

        [SerializeField]
        private UpdateEvent onUpdate = new UpdateEvent();

        public event UnityAction<string> OnUpdate
        {
            add => onUpdate.AddListener(value);
            remove => onUpdate.RemoveListener(value);
        }
    }
}