mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2024-08-14 23:57:27 +00:00 
			
		
		
		
	Responsive grid in Channel.
This commit is contained in:
		
							parent
							
								
									58453e4f70
								
							
						
					
					
						commit
						e5394d6ea0
					
				
					 1 changed files with 19 additions and 23 deletions
				
			
		| 
						 | 
					@ -3,27 +3,38 @@
 | 
				
			||||||
        <h1 class="uk-text-center">
 | 
					        <h1 class="uk-text-center">
 | 
				
			||||||
            <img v-bind:src="channel.avatarUrl" />{{ channel.name }}
 | 
					            <img v-bind:src="channel.avatarUrl" />{{ channel.name }}
 | 
				
			||||||
        </h1>
 | 
					        </h1>
 | 
				
			||||||
        <img v-bind:src="channel.bannerUrl" style="width: 100%" />
 | 
					        <img
 | 
				
			||||||
 | 
					            v-if="channel.bannerUrl"
 | 
				
			||||||
 | 
					            v-bind:src="channel.bannerUrl"
 | 
				
			||||||
 | 
					            style="width: 100%"
 | 
				
			||||||
 | 
					        />
 | 
				
			||||||
        <p v-html="this.channel.description.replaceAll('\n', '<br>')"></p>
 | 
					        <p v-html="this.channel.description.replaceAll('\n', '<br>')"></p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <hr />
 | 
					        <hr />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <div class="uk-grid-small" style="width: 100%" uk-grid="parallax: 0">
 | 
					        <div class="uk-grid-xl" uk-grid="parallax: 0">
 | 
				
			||||||
            <div
 | 
					            <div
 | 
				
			||||||
                style="width: 288px"
 | 
					                class="uk-width-1-2 uk-width-1-3@m uk-width-1-4@l uk-width-1-5@xl"
 | 
				
			||||||
                v-bind:key="item.url"
 | 
					                v-bind:key="item.url"
 | 
				
			||||||
                v-for="item in this.channel.relatedStreams"
 | 
					                v-for="item in this.channel.relatedStreams"
 | 
				
			||||||
            >
 | 
					            >
 | 
				
			||||||
                <router-link
 | 
					                <router-link
 | 
				
			||||||
                    class="uk-link-muted"
 | 
					                    class="uk-link-muted uk-text-justify"
 | 
				
			||||||
                    style="height: 100px"
 | 
					 | 
				
			||||||
                    v-bind:to="item.url || '/'"
 | 
					                    v-bind:to="item.url || '/'"
 | 
				
			||||||
                >
 | 
					                >
 | 
				
			||||||
                    <img style="width: 100%" v-bind:src="item.thumbnail" />
 | 
					                    <img style="width: 100%" v-bind:src="item.thumbnail" />
 | 
				
			||||||
                    <a>{{ item.title }}</a>
 | 
					                    <a>{{ item.title }}</a>
 | 
				
			||||||
                </router-link>
 | 
					                </router-link>
 | 
				
			||||||
                <br />
 | 
					                <br />
 | 
				
			||||||
                <a>{{ timeFormat(item.duration) }}</a>
 | 
					                <div>
 | 
				
			||||||
 | 
					                    <b class="uk-text-small uk-align-left">
 | 
				
			||||||
 | 
					                        {{ timeFormat(item.duration) }}
 | 
				
			||||||
 | 
					                    </b>
 | 
				
			||||||
 | 
					                    <b class="uk-text-small uk-align-right">
 | 
				
			||||||
 | 
					                        <font-awesome-icon icon="eye"></font-awesome-icon>
 | 
				
			||||||
 | 
					                        {{ item.views }} views
 | 
				
			||||||
 | 
					                    </b>
 | 
				
			||||||
 | 
					                </div>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
| 
						 | 
					@ -56,23 +67,8 @@ export default {
 | 
				
			||||||
                .then(data => (this.channel = data))
 | 
					                .then(data => (this.channel = data))
 | 
				
			||||||
                .then(() => (document.title = this.channel.name + " - Piped"));
 | 
					                .then(() => (document.title = this.channel.name + " - Piped"));
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        timeFormat(duration) {
 | 
					        timeFormat(d) {
 | 
				
			||||||
            var pad = function(num, size) {
 | 
					            return require("@/utils/TimeUtils.js").default.timeFormat(d);
 | 
				
			||||||
                return ("000" + num).slice(size * -1);
 | 
					 | 
				
			||||||
            };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            var time = parseFloat(duration).toFixed(3),
 | 
					 | 
				
			||||||
                hours = Math.floor(time / 60 / 60),
 | 
					 | 
				
			||||||
                minutes = Math.floor(time / 60) % 60,
 | 
					 | 
				
			||||||
                seconds = Math.floor(time - minutes * 60);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            var str = "";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            if (hours > 0) str += pad(hours, 2) + ":";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            str += pad(minutes, 2) + ":" + pad(seconds, 2);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            return str;
 | 
					 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue