PredefinedStatusViewHolder.kt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. *
  3. * Nextcloud Android client application
  4. *
  5. * @author Tobias Kaminsky
  6. * Copyright (C) 2020 Tobias Kaminsky
  7. * Copyright (C) 2020 Nextcloud GmbH
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  21. */
  22. package com.owncloud.android.ui.adapter
  23. import android.content.Context
  24. import androidx.recyclerview.widget.RecyclerView
  25. import com.owncloud.android.R
  26. import com.owncloud.android.databinding.PredefinedStatusBinding
  27. import com.owncloud.android.lib.resources.users.PredefinedStatus
  28. import com.owncloud.android.utils.DisplayUtils
  29. class PredefinedStatusViewHolder(private val binding: PredefinedStatusBinding) : RecyclerView.ViewHolder(binding.root) {
  30. private val ONE_SECOND_IN_MILLIS = 1000
  31. fun bind(status: PredefinedStatus, clickListener: PredefinedStatusClickListener, context: Context) {
  32. binding.root.setOnClickListener { clickListener.onClick(status) }
  33. binding.icon.text = status.icon
  34. binding.name.text = status.message
  35. if (status.clearAt == null) {
  36. binding.clearAt.text = context.getString(R.string.dontClear)
  37. } else {
  38. val clearAt = status.clearAt!!
  39. if (clearAt.type.equals("period")) {
  40. binding.clearAt.text = DisplayUtils.getRelativeTimestamp(
  41. context,
  42. System.currentTimeMillis() + clearAt.time.toInt() * ONE_SECOND_IN_MILLIS,
  43. true)
  44. } else {
  45. // end-of
  46. if (clearAt.time.equals("day")) {
  47. binding.clearAt.text = context.getString(R.string.today)
  48. }
  49. }
  50. }
  51. }
  52. }