aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-user-subscription/subscribe-button.component.html
blob: 75cfc918b5c0c4d46ca7af2b0dae7b6186b05c65 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                                                                                                

                              
                                                                      

                                                                               

                                                   
                                                                                                            


                                                               
           
                                                                                                                                            
                                                               
           


                             



                                                    

                                                                    
 
           
                                                   
                                      

                                                                                                                             

                
 


                                                
 




                                                                                                                               


                                                      
             
 

                                               
                                                                        
 
                                                          
                                                                                              

                                                                                    
 
                                                          
                                                                     

                                                                                 
 


                                                                    
                                                                                         


          
      
<div
  class="btn-group-subscribe btn-group"
  [ngClass]="{'subscribe-button': !isAllChannelsSubscribed, 'unsubscribe-button': isAllChannelsSubscribed, 'big': isBigButton }"
>

  <ng-template #userLoggedOut>
    <span [ngClass]="{ 'extra-text': isAtLeastOneChannelSubscribed }">
      <ng-container *ngIf="account; then multiple; else single"></ng-container>
      <ng-template i18n #single>Subscribe</ng-template>
      <ng-template #multiple>
        <span i18n>Subscribe to all channels</span>
        <span *ngIf="isAtLeastOneChannelSubscribed">{{ subscribeStatus(true).length }}/{{ subscribed.size }}
          <ng-container i18n>channels subscribed</ng-container>
        </span>
      </ng-template>
    </span>
    <span *ngIf="!isBigButton && displayFollowers && videoChannels.length > 1 && videoChannel.followersCount !== 0" class="followers-count">
      {{ videoChannels[0].followersCount | myNumberFormatter }}
    </span>
  </ng-template>

  <ng-template #userLoggedIn>
    <button
      *ngIf="!isAllChannelsSubscribed" type="button"
      class="btn btn-sm" (click)="subscribe()"
    >
      <ng-template [ngTemplateOutlet]="userLoggedOut"></ng-template>
    </button>

    <button
      *ngIf="isAllChannelsSubscribed" type="button"
      class="btn btn-sm" role="button"
      (click)="unsubscribe()">
      <ng-container i18n>{account + "", select, undefined {Unsubscribe} other {Unsubscribe from all channels}}</ng-container>
    </button>
  </ng-template>

  <ng-container
    *ngIf="isUserLoggedIn(); then userLoggedIn">
  </ng-container>

  <div
    class="btn-group" ngbDropdown autoClose="outside" placement="bottom-right"
    role="group" aria-label="Multiple ways to subscribe to the current channel" i18n-aria-label
  >
    <button class="btn btn-sm dropdown-toggle-split" ngbDropdownToggle aria-label="Open subscription dropdown" i18n-aria-label>
      <ng-container
        *ngIf="!isUserLoggedIn(); then userLoggedOut">
      </ng-container>
    </button>

    <div class="dropdown-menu" ngbDropdownMenu>

      <h6 class="dropdown-header" i18n>Using an ActivityPub account</h6>

      <button class="dropdown-item" (click)="subscribe()">
        <span *ngIf="!isUserLoggedIn()" i18n>Subscribe with an account on this instance</span>
        <span *ngIf="isUserLoggedIn()" i18n>Subscribe with your local account</span>
      </button>

      <button class="dropdown-item dropdown-item-neutral">
        <div class="mb-1" i18n>Subscribe with a remote account:</div>
        <my-remote-subscribe [showHelp]="true" [uri]="uri"></my-remote-subscribe>
      </button>

      <div class="dropdown-divider"></div>

      <h6 class="dropdown-header" i18n>Using a syndication feed</h6>
      <a [href]="rssUri" target="_blank" class="dropdown-item" i18n>Subscribe via RSS</a>

    </div>
  </div>
</div>