summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/contactactions/ContactPrimaryActionInfo.java
blob: 2535f853d0df9ad055760b8d84f8e9c4a38aa878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License 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.
 */
package com.android.dialer.contactactions;

import android.content.Intent;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import com.android.dialer.DialerPhoneNumber;
import com.android.dialer.lettertile.LetterTileDrawable;
import com.google.auto.value.AutoValue;

/**
 * Contains information necessary to construct the primary action for a contact bottom sheet.
 *
 * <p>This may include information about the call, for instance when the bottom sheet is shown from
 * the call log.
 */
@AutoValue
public abstract class ContactPrimaryActionInfo {

  @Nullable
  public abstract DialerPhoneNumber number();

  /** Information used to construct the photo for the contact. */
  @AutoValue
  public abstract static class PhotoInfo {
    public abstract long photoId();

    @Nullable
    public abstract String photoUri();

    @Nullable
    public abstract String lookupUri();

    /** Badges the photo with a video icon if true. */
    public abstract boolean isVideo();

    @LetterTileDrawable.ContactType
    public abstract int contactType();

    /** Used to generate letter tile if there is no photo. */
    @Nullable
    public abstract String displayName();

    /** Builder for {@link PhotoInfo}. */
    @AutoValue.Builder
    public abstract static class Builder {
      public abstract Builder setPhotoId(long photoId);

      public abstract Builder setPhotoUri(@Nullable String photoUri);

      public abstract Builder setLookupUri(@Nullable String lookupUri);

      public abstract Builder setIsVideo(boolean isVideo);

      public abstract Builder setContactType(@LetterTileDrawable.ContactType int contactType);

      public abstract Builder setDisplayName(@Nullable String displayName);

      public abstract PhotoInfo build();
    }

    public static Builder builder() {
      return new AutoValue_ContactPrimaryActionInfo_PhotoInfo.Builder();
    }
  }

  @NonNull
  public abstract PhotoInfo photoInfo();

  @Nullable
  public abstract CharSequence primaryText();

  @Nullable
  public abstract CharSequence secondaryText();

  /**
   * The intent to fire when the user clicks the top row of the bottom sheet. Null if no action
   * should occur (e.g. if the number is unknown).
   */
  @Nullable
  public abstract Intent intent();

  // TODO(zachh): Add SIM info here if should be shown in bottom sheet.

  /** Builder for {@link ContactPrimaryActionInfo}. */
  @AutoValue.Builder
  public abstract static class Builder {
    public abstract Builder setNumber(@Nullable DialerPhoneNumber dialerPhoneNumber);

    public abstract Builder setPhotoInfo(@NonNull PhotoInfo photoInfo);

    public abstract Builder setPrimaryText(@Nullable CharSequence primaryText);

    public abstract Builder setSecondaryText(@Nullable CharSequence secondaryText);

    public abstract Builder setIntent(@Nullable Intent intent);

    public abstract ContactPrimaryActionInfo build();
  }

  public static Builder builder() {
    return new AutoValue_ContactPrimaryActionInfo.Builder();
  }
}