Search in sources :

Example 1 with TagListAdapter

use of com.odysee.app.adapter.TagListAdapter in project odysee-android by OdyseeTeam.

the class PublishFormFragment method updateSuggestedTags.

private void updateSuggestedTags(String filter, int limit, boolean clearPrevious) {
    UpdateSuggestedTagsTask task = new UpdateSuggestedTagsTask(filter, limit, addedTagsAdapter, suggestedTagsAdapter, clearPrevious, true, new UpdateSuggestedTagsTask.KnownTagsHandler() {

        @Override
        public void onSuccess(List<Tag> tags) {
            if (suggestedTagsAdapter == null) {
                suggestedTagsAdapter = new TagListAdapter(tags, getContext());
                suggestedTagsAdapter.setCustomizeMode(TagListAdapter.CUSTOMIZE_MODE_ADD);
                suggestedTagsAdapter.setClickListener(PublishFormFragment.this);
                if (suggestedTagsList != null) {
                    suggestedTagsList.setAdapter(suggestedTagsAdapter);
                }
            } else {
                suggestedTagsAdapter.setTags(tags);
            }
            checkNoAddedTags();
            checkNoTagResults();
        }
    });
    task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
Also used : TagListAdapter(com.odysee.app.adapter.TagListAdapter) UpdateSuggestedTagsTask(com.odysee.app.tasks.UpdateSuggestedTagsTask) Tag(com.odysee.app.model.Tag)

Example 2 with TagListAdapter

use of com.odysee.app.adapter.TagListAdapter in project odysee-android by OdyseeTeam.

the class ChannelFormFragment method updateSuggestedTags.

private void updateSuggestedTags(String filter, int limit, boolean clearPrevious) {
    UpdateSuggestedTagsTask task = new UpdateSuggestedTagsTask(filter, limit, addedTagsAdapter, suggestedTagsAdapter, clearPrevious, false, new UpdateSuggestedTagsTask.KnownTagsHandler() {

        @Override
        public void onSuccess(List<Tag> tags) {
            if (suggestedTagsAdapter == null) {
                suggestedTagsAdapter = new TagListAdapter(tags, getContext());
                suggestedTagsAdapter.setCustomizeMode(TagListAdapter.CUSTOMIZE_MODE_ADD);
                suggestedTagsAdapter.setClickListener(ChannelFormFragment.this);
                if (suggestedTagsList != null) {
                    suggestedTagsList.setAdapter(suggestedTagsAdapter);
                }
            } else {
                suggestedTagsAdapter.setTags(tags);
            }
            checkNoAddedTags();
            checkNoTagResults();
        }
    });
    task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
Also used : TagListAdapter(com.odysee.app.adapter.TagListAdapter) UpdateSuggestedTagsTask(com.odysee.app.tasks.UpdateSuggestedTagsTask) Tag(com.odysee.app.model.Tag)

Example 3 with TagListAdapter

use of com.odysee.app.adapter.TagListAdapter in project odysee-android by OdyseeTeam.

the class CustomizeTagsDialogFragment method onCreateView.

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.dialog_customize_tags, container, false);
    noResultsView = view.findViewById(R.id.customize_no_tag_results);
    noTagsView = view.findViewById(R.id.customize_no_followed_tags);
    followedTagsAdapter = new TagListAdapter(Lbry.followedTags, getContext());
    followedTagsAdapter.setCustomizeMode(TagListAdapter.CUSTOMIZE_MODE_REMOVE);
    followedTagsAdapter.setClickListener(customizeTagClickListener);
    suggestedTagsAdapter = new TagListAdapter(new ArrayList<>(), getContext());
    suggestedTagsAdapter.setCustomizeMode(TagListAdapter.CUSTOMIZE_MODE_ADD);
    suggestedTagsAdapter.setClickListener(customizeTagClickListener);
    FlexboxLayoutManager flm1 = new FlexboxLayoutManager(getContext());
    followedTagsList = view.findViewById(R.id.customize_tags_followed_list);
    followedTagsList.setLayoutManager(flm1);
    followedTagsList.setAdapter(followedTagsAdapter);
    FlexboxLayoutManager flm2 = new FlexboxLayoutManager(getContext());
    suggestedTagsList = view.findViewById(R.id.customize_tags_suggested_list);
    suggestedTagsList.setLayoutManager(flm2);
    suggestedTagsList.setAdapter(suggestedTagsAdapter);
    TextInputEditText filterInput = view.findViewById(R.id.customize_tag_filter_input);
    filterInput.addTextChangedListener(new TextWatcher() {

        @Override
        public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
        }

        @Override
        public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
            String value = Helper.getValue(charSequence);
            setFilter(value);
        }

        @Override
        public void afterTextChanged(Editable editable) {
        }
    });
    MaterialButton doneButton = view.findViewById(R.id.customize_done_button);
    doneButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View view) {
            dismiss();
        }
    });
    checkNoTags();
    return view;
}
Also used : TagListAdapter(com.odysee.app.adapter.TagListAdapter) FlexboxLayoutManager(com.google.android.flexbox.FlexboxLayoutManager) ArrayList(java.util.ArrayList) View(android.view.View) RecyclerView(androidx.recyclerview.widget.RecyclerView) MaterialButton(com.google.android.material.button.MaterialButton) TextInputEditText(com.google.android.material.textfield.TextInputEditText) TextWatcher(android.text.TextWatcher) Editable(android.text.Editable)

Example 4 with TagListAdapter

use of com.odysee.app.adapter.TagListAdapter in project odysee-android by OdyseeTeam.

the class CustomizeTagsDialogFragment method updateKnownTags.

private void updateKnownTags(String filter, int limit, boolean clearPrevious) {
    UpdateSuggestedTagsTask task = new UpdateSuggestedTagsTask(filter, SUGGESTED_LIMIT, followedTagsAdapter, suggestedTagsAdapter, clearPrevious, false, new UpdateSuggestedTagsTask.KnownTagsHandler() {

        @Override
        public void onSuccess(List<Tag> tags) {
            if (suggestedTagsAdapter == null) {
                suggestedTagsAdapter = new TagListAdapter(tags, getContext());
                suggestedTagsAdapter.setCustomizeMode(TagListAdapter.CUSTOMIZE_MODE_ADD);
                suggestedTagsAdapter.setClickListener(customizeTagClickListener);
                if (suggestedTagsList != null) {
                    suggestedTagsList.setAdapter(suggestedTagsAdapter);
                }
            } else {
                suggestedTagsAdapter.setTags(tags);
            }
            checkNoResults();
        }
    });
    task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
Also used : TagListAdapter(com.odysee.app.adapter.TagListAdapter) UpdateSuggestedTagsTask(com.odysee.app.tasks.UpdateSuggestedTagsTask) Tag(com.odysee.app.model.Tag)

Example 5 with TagListAdapter

use of com.odysee.app.adapter.TagListAdapter in project odysee-android by OdyseeTeam.

the class FileViewFragment method renderClaim.

private void renderClaim() {
    Claim claimToRender = collectionClaimItem != null ? collectionClaimItem : fileClaim;
    if (claimToRender == null) {
        return;
    }
    if (!claimToRender.hasSource()) {
    // TODO See if the "publisher is not live yet" UI must be shown
    }
    if (claimToRender.isPlayable() && MainActivity.appPlayer != null) {
        MainActivity.appPlayer.setPlayWhenReady(isPlaying);
    }
    Helper.setViewVisibility(layoutLoadingState, View.GONE);
    Helper.setViewVisibility(layoutNothingAtLocation, View.GONE);
    /*
        if (claim.getTags().contains("disable-support") || claim.getSigningChannel().getTags().contains("disable-support"))
            Helper.setViewVisibility(tipButton, View.GONE);
        else
            Helper.setViewVisibility(tipButton, View.VISIBLE);
*/
    loadViewCount();
    loadReactions(claimToRender);
    checkIsFollowing();
    View root = getView();
    if (root != null) {
        Context context = getContext();
        root.findViewById(R.id.file_view_scroll_view).scrollTo(0, 0);
        Helper.setViewVisibility(layoutDisplayArea, View.VISIBLE);
        ImageView descIndicator = root.findViewById(R.id.file_view_desc_toggle_arrow);
        descIndicator.setImageResource(R.drawable.ic_arrow_dropdown);
        boolean hasDescription = !Helper.isNullOrEmpty(claimToRender.getDescription());
        boolean hasTags = claimToRender.getTags() != null && claimToRender.getTags().size() > 0;
        root.findViewById(R.id.file_view_description).setVisibility(hasDescription ? View.VISIBLE : View.GONE);
        root.findViewById(R.id.file_view_tag_area).setVisibility(hasTags ? View.VISIBLE : View.GONE);
        if (hasTags && !hasDescription) {
            root.findViewById(R.id.file_view_tag_area).setPadding(0, 0, 0, 0);
        }
        root.findViewById(R.id.file_view_description_area).setVisibility(View.GONE);
        ((TextView) root.findViewById(R.id.file_view_title)).setText(claimToRender.getTitle());
        ((TextView) root.findViewById(R.id.file_view_description)).setText(claimToRender.getDescription());
        ((TextView) root.findViewById(R.id.file_view_publisher_name)).setText(Helper.isNullOrEmpty(claimToRender.getPublisherName()) ? getString(R.string.anonymous) : claimToRender.getPublisherName());
        Claim signingChannel = claimToRender.getSigningChannel();
        boolean hasPublisher = signingChannel != null;
        boolean hasPublisherThumbnail = hasPublisher && !Helper.isNullOrEmpty(signingChannel.getThumbnailUrl());
        root.findViewById(R.id.file_view_publisher_avatar).setVisibility(hasPublisher ? View.VISIBLE : View.GONE);
        root.findViewById(R.id.file_view_publisher_thumbnail).setVisibility(hasPublisherThumbnail ? View.VISIBLE : View.INVISIBLE);
        root.findViewById(R.id.file_view_publisher_no_thumbnail).setVisibility(!hasPublisherThumbnail ? View.VISIBLE : View.INVISIBLE);
        if (hasPublisher) {
            int bgColor = Helper.generateRandomColorForValue(signingChannel.getClaimId());
            Helper.setIconViewBackgroundColor(root.findViewById(R.id.file_view_publisher_no_thumbnail), bgColor, false, context);
            if (hasPublisherThumbnail && context != null) {
                ViewGroup.LayoutParams lp = root.findViewById(R.id.file_view_publisher_thumbnail).getLayoutParams();
                Glide.with(context.getApplicationContext()).load(signingChannel.getThumbnailUrl(lp.width, lp.height, 85)).apply(RequestOptions.circleCropTransform()).into((ImageView) root.findViewById(R.id.file_view_publisher_thumbnail));
            }
            ((TextView) root.findViewById(R.id.file_view_publisher_thumbnail_alpha)).setText(signingChannel.getName() != null ? signingChannel.getName().substring(1, 2).toUpperCase() : null);
        }
        String publisherTitle = signingChannel != null ? signingChannel.getTitle() : null;
        TextView textPublisherTitle = root.findViewById(R.id.file_view_publisher_title);
        textPublisherTitle.setVisibility(Helper.isNullOrEmpty(publisherTitle) ? View.GONE : View.VISIBLE);
        textPublisherTitle.setText(publisherTitle);
        RecyclerView descTagsList = root.findViewById(R.id.file_view_tag_list);
        FlexboxLayoutManager flm = new FlexboxLayoutManager(context);
        descTagsList.setLayoutManager(flm);
        List<Tag> tags = claimToRender.getTagObjects();
        TagListAdapter tagListAdapter = new TagListAdapter(tags, context);
        tagListAdapter.setClickListener(new TagListAdapter.TagClickListener() {

            @Override
            public void onTagClicked(Tag tag, int customizeMode) {
                if (customizeMode == TagListAdapter.CUSTOMIZE_MODE_NONE) {
                    Context ctx = getContext();
                    if (ctx instanceof MainActivity) {
                        ((MainActivity) ctx).openAllContentFragmentWithTag(tag.getName());
                    }
                }
            }
        });
        descTagsList.setAdapter(tagListAdapter);
        root.findViewById(R.id.file_view_tag_area).setVisibility(tags.size() > 0 ? View.VISIBLE : View.GONE);
        root.findViewById(R.id.file_view_exoplayer_container).setVisibility(View.GONE);
        root.findViewById(R.id.file_view_unsupported_container).setVisibility(View.GONE);
        root.findViewById(R.id.file_view_media_meta_container).setVisibility(View.VISIBLE);
        Claim.GenericMetadata metadata = claimToRender.getValue();
        if (!Helper.isNullOrEmpty(claimToRender.getThumbnailUrl())) {
            ImageView thumbnailView = root.findViewById(R.id.file_view_thumbnail);
            Glide.with(context.getApplicationContext()).asBitmap().load(claimToRender.getThumbnailUrl(context.getResources().getDisplayMetrics().widthPixels, thumbnailView.getLayoutParams().height, 85)).centerCrop().into(thumbnailView);
        } else {
        // display first x letters of claim name, with random background
        }
        root.findViewById(R.id.file_view_main_action_button).setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View view) {
                onMainActionButtonClicked();
            }
        });
        root.findViewById(R.id.file_view_media_meta_container).setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View view) {
                onMainActionButtonClicked();
            }
        });
        root.findViewById(R.id.file_view_open_external_button).setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View view) {
                openClaimExternally(claimToRender, claimToRender.getMediaType());
            }
        });
        if (metadata instanceof Claim.StreamMetadata) {
            Claim.StreamMetadata streamMetadata = (Claim.StreamMetadata) metadata;
            long publishTime = streamMetadata.getReleaseTime() > 0 ? streamMetadata.getReleaseTime() * 1000 : claimToRender.getTimestamp() * 1000;
            ((TextView) root.findViewById(R.id.file_view_publish_time)).setText(DateUtils.getRelativeTimeSpanString(publishTime, System.currentTimeMillis(), 0, DateUtils.FORMAT_ABBREV_RELATIVE));
            Fee fee = streamMetadata.getFee();
            if (fee != null && Helper.parseDouble(fee.getAmount(), 0) > 0) {
                root.findViewById(R.id.file_view_fee_container).setVisibility(View.VISIBLE);
                ((TextView) root.findViewById(R.id.file_view_fee)).setText(Helper.shortCurrencyFormat(claimToRender.getActualCost(Lbryio.LBCUSDRate).doubleValue()));
            }
        }
        boolean isAnonymous = claimToRender.getSigningChannel() == null;
        View iconFollow = root.findViewById(R.id.file_view_icon_follow);
        View iconUnfollow = root.findViewById(R.id.file_view_icon_unfollow);
        if (isAnonymous) {
            if (iconFollow.getVisibility() == View.VISIBLE) {
                iconFollow.setVisibility(View.INVISIBLE);
            }
            if (iconUnfollow.getVisibility() == View.VISIBLE) {
                iconUnfollow.setVisibility(View.INVISIBLE);
            }
        }
        MaterialButton mainActionButton = root.findViewById(R.id.file_view_main_action_button);
        if (claimToRender.isPlayable()) {
            mainActionButton.setText(R.string.play);
        } else if (claimToRender.isViewable()) {
            mainActionButton.setText(R.string.view);
        } else {
            mainActionButton.setText(R.string.download);
        }
    }
    if (claimToRender.isFree() && Helper.isNullOrEmpty(commentHash)) {
        if (claimToRender.isPlayable() || (!Lbry.SDK_READY && Lbryio.isSignedIn())) {
            if (MainActivity.nowPlayingClaim != null && MainActivity.nowPlayingClaim.getClaimId().equalsIgnoreCase(claimToRender.getClaimId())) {
                // claim already playing
                showExoplayerView();
                playMedia();
            } else {
                onMainActionButtonClicked();
            }
        } else if (claimToRender.isViewable() && Lbry.SDK_READY) {
            onMainActionButtonClicked();
        } else if (!Lbry.SDK_READY) {
            restoreMainActionButton();
        }
    } else {
        restoreMainActionButton();
    }
    /*if (Lbry.SDK_READY && !claimToRender.isPlayable() && !claimToRender.isViewable() && Helper.isNullOrEmpty(commentHash)) {
            if (claimToRender.getFile() == null) {
                loadFile();
            } else {
                // file already loaded, but it's unsupported
                showUnsupportedView();
            }
        }*/
    checkRewardsDriver();
    checkOwnClaim();
}
Also used : FlexboxLayoutManager(com.google.android.flexbox.FlexboxLayoutManager) MainActivity(com.odysee.app.MainActivity) MaterialButton(com.google.android.material.button.MaterialButton) TextView(android.widget.TextView) ImageView(android.widget.ImageView) TrackSelectionOverride(com.google.android.exoplayer2.trackselection.TrackSelectionOverrides.TrackSelectionOverride) AttributeProviderContext(org.commonmark.renderer.html.AttributeProviderContext) Context(android.content.Context) TagListAdapter(com.odysee.app.adapter.TagListAdapter) ViewGroup(android.view.ViewGroup) Fee(com.odysee.app.model.Fee) SolidIconView(com.odysee.app.ui.controls.SolidIconView) PlayerView(com.google.android.exoplayer2.ui.PlayerView) NestedScrollView(androidx.core.widget.NestedScrollView) AdapterView(android.widget.AdapterView) RecyclerView(androidx.recyclerview.widget.RecyclerView) PhotoView(com.github.chrisbanes.photoview.PhotoView) ImageView(android.widget.ImageView) View(android.view.View) WebView(android.webkit.WebView) TextView(android.widget.TextView) SuppressLint(android.annotation.SuppressLint) RecyclerView(androidx.recyclerview.widget.RecyclerView) Tag(com.odysee.app.model.Tag) Claim(com.odysee.app.model.Claim)

Aggregations

TagListAdapter (com.odysee.app.adapter.TagListAdapter)7 View (android.view.View)4 RecyclerView (androidx.recyclerview.widget.RecyclerView)4 FlexboxLayoutManager (com.google.android.flexbox.FlexboxLayoutManager)4 Tag (com.odysee.app.model.Tag)4 Context (android.content.Context)3 ImageView (android.widget.ImageView)3 TextView (android.widget.TextView)3 NestedScrollView (androidx.core.widget.NestedScrollView)3 UpdateSuggestedTagsTask (com.odysee.app.tasks.UpdateSuggestedTagsTask)3 Editable (android.text.Editable)2 TextWatcher (android.text.TextWatcher)2 AdapterView (android.widget.AdapterView)2 MaterialButton (com.google.android.material.button.MaterialButton)2 MainActivity (com.odysee.app.MainActivity)2 Claim (com.odysee.app.model.Claim)2 ArrayList (java.util.ArrayList)2 SuppressLint (android.annotation.SuppressLint)1 ViewGroup (android.view.ViewGroup)1 WebView (android.webkit.WebView)1