Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IDEA] Доработать переход по ссылкам без текста #18

Open
scorpioza opened this issue Feb 10, 2023 · 0 comments
Labels

Comments

@scorpioza
Copy link

Суть
В случае, если у ссылки в аттаче нет заголовка, она отображается пустой и, что неприятно, при переходе возникает вопрос: "вы собираетесь открыть null. продолжить?"

Моё предложение

Не выношу в pull request, поскольку, вероятно, можно сделать получше

    private fun createLink(link: Link): View =
            ContainerLinkBinding.inflate(inflater).run {
                if(link.photo?.getSmallPhoto()?.url?.isNotEmpty() == true){
                    ivPhoto.load(link.photo?.getSmallPhoto()?.url)
                }else{
                    ivPhoto.setImageDrawable(ContextCompat.getDrawable(context, R.drawable.ic_worldwide))
                }
                tvTitle.text = if(link.title?.isNotEmpty() == true) link.title else context.getString(R.string.link)
                tvCaption.text = if(link.caption?.isNotEmpty() == true) link.caption else link.url
                root.setOnClickListener {
                    callback.onLinkClicked(link)
                }
                root
            }
@scorpioza scorpioza added the idea label Feb 10, 2023
@scorpioza scorpioza changed the title [IDEA] Доработать по ссылкам без текста [IDEA] Доработать переход по ссылкам без текста Feb 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant