Updated tag page layout. Added shoot date property. Showing parent favicon on compact entity page. Re-added 'new' indicator on tile. Added Family Sinner to Mile High Media. Various fixes and improvements.

This commit is contained in:
2020-07-03 01:28:22 +02:00
parent 749864e922
commit 945c2c45ce
81 changed files with 488 additions and 955 deletions

View File

@@ -36,6 +36,11 @@ function initEntitiesActions(store, _router) {
hasLogo
children: childEntitiesConnection(
orderBy: [PRIORITY_DESC, NAME_ASC],
filter: {
type: {
notEqualTo: "info"
}
}
) {
nodes {
id
@@ -44,6 +49,7 @@ function initEntitiesActions(store, _router) {
url
type
priority
independent
hasLogo
}
}
@@ -175,6 +181,7 @@ function initEntitiesActions(store, _router) {
slug
type
url
independent
hasLogo
children: childEntitiesConnection {
totalCount
@@ -203,6 +210,7 @@ function initEntitiesActions(store, _router) {
slug
type
url
independent
hasLogo
parent {
name

View File

@@ -172,6 +172,7 @@ const releaseFields = `
slug
type
shootId
productionDate
createdAt
url
${releaseActorsFragment}
@@ -237,6 +238,7 @@ const releaseFragment = `
duration
createdAt
shootId
productionDate
url
${releaseActorsFragment}
${releaseTagsFragment}

View File

@@ -3,7 +3,6 @@ import VueRouter from 'vue-router';
import Home from '../components/home/home.vue';
import Release from '../components/releases/release.vue';
import Site from '../components/sites/site.vue';
import Entity from '../components/entities/entity.vue';
import Networks from '../components/networks/networks.vue';
import Actor from '../components/actors/actor.vue';
@@ -71,7 +70,6 @@ const routes = [
},
{
path: '/channel/:entitySlug',
component: Site,
redirect: from => ({
name: 'channel',
params: {

View File

@@ -4,7 +4,7 @@ const storedSfw = localStorage.getItem('sfw');
const storedTheme = localStorage.getItem('theme');
export default {
filter: storedFilter ? storedFilter.split(',') : ['gay', 'transsexual'],
filter: storedFilter ? storedFilter.split(',') : [],
range: 'latest',
batch: storedBatch || 'all',
sfw: storedSfw === 'true' || false,