mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2024-08-14 23:57:27 +00:00 
			
		
		
		
	Restyle subscriptions page (#413)
This commit is contained in:
		
							parent
							
								
									6c473d58ac
								
							
						
					
					
						commit
						84e2504d5f
					
				
					 1 changed files with 41 additions and 38 deletions
				
			
		| 
						 | 
					@ -1,46 +1,49 @@
 | 
				
			||||||
<template>
 | 
					<template>
 | 
				
			||||||
    <h1 class="uk-text-bold uk-text-center">Subscriptions</h1>
 | 
					    <h1 class="uk-text-bold uk-text-center">Subscriptions</h1>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <button
 | 
					    <div style="text-align: center">
 | 
				
			||||||
        v-if="authenticated"
 | 
					        <button
 | 
				
			||||||
        @click="exportHandler"
 | 
					            v-if="authenticated"
 | 
				
			||||||
        class="uk-button uk-button-small"
 | 
					            class="uk-button uk-button-small"
 | 
				
			||||||
        style="background: #222"
 | 
					            style="background: #222; margin-right: 0.5rem"
 | 
				
			||||||
        type="button"
 | 
					            type="button"
 | 
				
			||||||
    >
 | 
					        >
 | 
				
			||||||
        <router-link to="/import">
 | 
					            <router-link to="/import">
 | 
				
			||||||
        Import from JSON
 | 
					                Import from JSON
 | 
				
			||||||
        </router-link>
 | 
					            </router-link>
 | 
				
			||||||
    </button>
 | 
					        </button>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <br />
 | 
					        <button
 | 
				
			||||||
 | 
					            v-if="authenticated"
 | 
				
			||||||
    <button
 | 
					            @click="exportHandler"
 | 
				
			||||||
        v-if="authenticated"
 | 
					            class="uk-button uk-button-small"
 | 
				
			||||||
        @click="exportHandler"
 | 
					            style="background: #222; color: white"
 | 
				
			||||||
        class="uk-button uk-button-small"
 | 
					            type="button"
 | 
				
			||||||
        style="background: #222"
 | 
					        >
 | 
				
			||||||
        type="button"
 | 
					            Export to JSON
 | 
				
			||||||
    >
 | 
					        </button>
 | 
				
			||||||
        Export to JSON
 | 
					 | 
				
			||||||
    </button>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    <div :key="subscription.url" v-for="subscription in subscriptions">
 | 
					 | 
				
			||||||
        <div class="uk-text-primary" :style="[{ background: backgroundColor }]">
 | 
					 | 
				
			||||||
            <a :href="subscription.url">
 | 
					 | 
				
			||||||
                <img :src="subscription.avatar" class="uk-margin-small-right uk-border-circle" width="50" height="50" />
 | 
					 | 
				
			||||||
                <span class="uk-text-truncate">{{ subscription.name }}</span>
 | 
					 | 
				
			||||||
            </a>
 | 
					 | 
				
			||||||
            <button
 | 
					 | 
				
			||||||
                class="uk-button uk-button-small"
 | 
					 | 
				
			||||||
                style="background: #222"
 | 
					 | 
				
			||||||
                type="button"
 | 
					 | 
				
			||||||
                @click="handleButton(subscription)"
 | 
					 | 
				
			||||||
            >
 | 
					 | 
				
			||||||
                {{ subscription.subscribed ? "Unsubscribe" : "Subscribe" }}
 | 
					 | 
				
			||||||
            </button>
 | 
					 | 
				
			||||||
        </div>
 | 
					 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
					        <hr />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <div :key="subscription.url" v-for="subscription in subscriptions" style="text-align: center;">
 | 
				
			||||||
 | 
					            <div class="uk-text-primary" :style="[{ background: backgroundColor }]">
 | 
				
			||||||
 | 
					                <a :href="subscription.url">
 | 
				
			||||||
 | 
					                    <img :src="subscription.avatar" class="uk-margin-small-right uk-border-circle" width="96" height="96" />
 | 
				
			||||||
 | 
					                    <span class="uk-text-large" style="width: 30rem; display: inline-block; text-align: center; margin-left: 6rem">{{ subscription.name }}</span>
 | 
				
			||||||
 | 
					                </a>
 | 
				
			||||||
 | 
					                <button
 | 
				
			||||||
 | 
					                    class="uk-button uk-button-large"
 | 
				
			||||||
 | 
					                    style="background: #222; margin-left: 0.5rem; width: 185px"
 | 
				
			||||||
 | 
					                    type="button"
 | 
				
			||||||
 | 
					                    @click="handleButton(subscription)"
 | 
				
			||||||
 | 
					                >
 | 
				
			||||||
 | 
					                    {{ subscription.subscribed ? "Unsubscribe" : "Subscribe" }}
 | 
				
			||||||
 | 
					                </button>
 | 
				
			||||||
 | 
					            </div>
 | 
				
			||||||
 | 
					            <br />
 | 
				
			||||||
 | 
					        </div>
 | 
				
			||||||
 | 
					    <br />
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<script>
 | 
					<script>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue