Added 'visible' property to entities. Added various Teen Core Club logos.
|
@ -38,7 +38,10 @@
|
||||||
<Icon icon="share2" />
|
<Icon icon="share2" />
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<ul class="tags">
|
<ul
|
||||||
|
v-if="entity.tags.length > 0"
|
||||||
|
class="tags"
|
||||||
|
>
|
||||||
<li
|
<li
|
||||||
v-for="tag in entity.tags"
|
v-for="tag in entity.tags"
|
||||||
:key="`tag-${tag.slug}`"
|
:key="`tag-${tag.slug}`"
|
||||||
|
@ -199,7 +202,7 @@ export default {
|
||||||
|
|
||||||
.link-parent {
|
.link-parent {
|
||||||
flex-direction: row-reverse;
|
flex-direction: row-reverse;
|
||||||
margin: 0 0 0 2rem;
|
margin: 0 0 0 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
|
@ -231,9 +234,14 @@ export default {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media(max-width: $breakpoint) {
|
||||||
|
.tags {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media(max-width: $breakpoint-micro) {
|
@media(max-width: $breakpoint-micro) {
|
||||||
.logo-parent,
|
.logo-parent {
|
||||||
.link-child .icon {
|
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -241,4 +249,10 @@ export default {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media(max-width: $breakpoint-nano) {
|
||||||
|
.link-child .icon {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -44,7 +44,11 @@
|
||||||
|
|
||||||
<div class="site">
|
<div class="site">
|
||||||
<template v-if="release.entity.parent && !release.entity.independent">
|
<template v-if="release.entity.parent && !release.entity.independent">
|
||||||
<a :href="`/network/${release.entity.parent.slug}`">
|
<a
|
||||||
|
v-if="release.entity.parent.hasLogo"
|
||||||
|
:href="`/network/${release.entity.parent.slug}`"
|
||||||
|
class="logo-link"
|
||||||
|
>
|
||||||
<img
|
<img
|
||||||
:src="`/img/logos/${release.entity.parent.slug}/thumbs/network.png`"
|
:src="`/img/logos/${release.entity.parent.slug}/thumbs/network.png`"
|
||||||
:title="release.entity.parent.name"
|
:title="release.entity.parent.name"
|
||||||
|
@ -53,10 +57,18 @@
|
||||||
>
|
>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
<a
|
||||||
|
v-else
|
||||||
|
:href="`/network/${release.entity.parent.slug}`"
|
||||||
|
class="logo-link logo-name"
|
||||||
|
>{{ release.entity.parent.name }}</a>
|
||||||
|
|
||||||
<span class="chain">presents</span>
|
<span class="chain">presents</span>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
|
v-if="release.entity.hasLogo"
|
||||||
:href="`/${release.entity.type}/${release.entity.slug}`"
|
:href="`/${release.entity.type}/${release.entity.slug}`"
|
||||||
|
class="logo-link"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
v-if="release.entity.type === 'network'"
|
v-if="release.entity.type === 'network'"
|
||||||
|
@ -72,6 +84,12 @@
|
||||||
class="logo logo-site"
|
class="logo logo-site"
|
||||||
>
|
>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
<a
|
||||||
|
v-else
|
||||||
|
:href="`/${release.entity.type}/${release.entity.slug}`"
|
||||||
|
class="logo-link logo-name"
|
||||||
|
>{{ release.entity.name }}</a>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
|
@ -218,6 +236,14 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
v-if="release.comment"
|
||||||
|
class="row"
|
||||||
|
>
|
||||||
|
<span class="row-label">Comment</span>
|
||||||
|
<span>{{ release.comment }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<span class="row-label">Added</span>
|
<span class="row-label">Added</span>
|
||||||
|
|
||||||
|
@ -345,6 +371,10 @@ export default {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logo-link {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
.logo-site {
|
.logo-site {
|
||||||
height: 2.5rem;
|
height: 2.5rem;
|
||||||
max-width: 15rem;
|
max-width: 15rem;
|
||||||
|
@ -360,6 +390,13 @@ export default {
|
||||||
object-position: 100% 50%;
|
object-position: 100% 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logo-name {
|
||||||
|
padding: .5rem 0;
|
||||||
|
color: var(--text-light);
|
||||||
|
font-size: 1.25rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
.chain {
|
.chain {
|
||||||
color: var(--lighten);
|
color: var(--lighten);
|
||||||
padding: 0 .5rem;
|
padding: 0 .5rem;
|
||||||
|
|
|
@ -61,6 +61,11 @@
|
||||||
v-else-if="release.actors.length > 0"
|
v-else-if="release.actors.length > 0"
|
||||||
class="title title-composed"
|
class="title title-composed"
|
||||||
>{{ release.actors[0].name }} for {{ release.entity.name }}</h3>
|
>{{ release.actors[0].name }} for {{ release.entity.name }}</h3>
|
||||||
|
|
||||||
|
<h3
|
||||||
|
v-else
|
||||||
|
class="title title-empty"
|
||||||
|
>{{ release.entity.name }}</h3>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<span class="row">
|
<span class="row">
|
||||||
|
@ -216,7 +221,8 @@ export default {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title-composed {
|
.title-composed,
|
||||||
|
.title-empty {
|
||||||
color: var(--shadow);
|
color: var(--shadow);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,6 +47,9 @@ function initEntitiesActions(store, _router) {
|
||||||
type: {
|
type: {
|
||||||
notEqualTo: "info"
|
notEqualTo: "info"
|
||||||
}
|
}
|
||||||
|
visible: {
|
||||||
|
equalTo: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
nodes {
|
nodes {
|
||||||
|
|
|
@ -6,6 +6,7 @@ const siteFragment = `
|
||||||
url
|
url
|
||||||
type
|
type
|
||||||
independent
|
independent
|
||||||
|
hasLogo
|
||||||
parent {
|
parent {
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
|
@ -13,6 +14,7 @@ const siteFragment = `
|
||||||
url
|
url
|
||||||
type
|
type
|
||||||
independent
|
independent
|
||||||
|
hasLogo
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
@ -25,6 +27,7 @@ const sitesFragment = `
|
||||||
url
|
url
|
||||||
type
|
type
|
||||||
independent
|
independent
|
||||||
|
hasLogo
|
||||||
parent {
|
parent {
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
|
@ -32,6 +35,7 @@ const sitesFragment = `
|
||||||
url
|
url
|
||||||
type
|
type
|
||||||
independent
|
independent
|
||||||
|
hasLogo
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
@ -174,6 +178,7 @@ const releaseFields = `
|
||||||
type
|
type
|
||||||
shootId
|
shootId
|
||||||
productionDate
|
productionDate
|
||||||
|
comment
|
||||||
createdAt
|
createdAt
|
||||||
url
|
url
|
||||||
${releaseActorsFragment}
|
${releaseActorsFragment}
|
||||||
|
@ -241,6 +246,7 @@ const releaseFragment = `
|
||||||
createdAt
|
createdAt
|
||||||
shootId
|
shootId
|
||||||
productionDate
|
productionDate
|
||||||
|
comment
|
||||||
url
|
url
|
||||||
${releaseActorsFragment}
|
${releaseActorsFragment}
|
||||||
${releaseTagsFragment}
|
${releaseTagsFragment}
|
||||||
|
|
|
@ -55,6 +55,12 @@ module.exports = {
|
||||||
'pornmegaload',
|
'pornmegaload',
|
||||||
'scorelandtv',
|
'scorelandtv',
|
||||||
'scoretv',
|
'scoretv',
|
||||||
|
// teenscoreclub
|
||||||
|
'maiko',
|
||||||
|
'ncuksinners',
|
||||||
|
'ncversocinema',
|
||||||
|
'pussybabes',
|
||||||
|
'uksinners',
|
||||||
// mindgeek
|
// mindgeek
|
||||||
'pornhub',
|
'pornhub',
|
||||||
],
|
],
|
||||||
|
|
|
@ -186,6 +186,9 @@ exports.up = knex => Promise.resolve()
|
||||||
table.boolean('independent')
|
table.boolean('independent')
|
||||||
.defaultTo(false);
|
.defaultTo(false);
|
||||||
|
|
||||||
|
table.boolean('visible')
|
||||||
|
.defaultTo(true);
|
||||||
|
|
||||||
table.boolean('has_logo')
|
table.boolean('has_logo')
|
||||||
.defaultTo(true);
|
.defaultTo(true);
|
||||||
|
|
||||||
|
@ -628,6 +631,8 @@ exports.up = knex => Promise.resolve()
|
||||||
table.boolean('deep');
|
table.boolean('deep');
|
||||||
table.text('deep_url', 1000);
|
table.text('deep_url', 1000);
|
||||||
|
|
||||||
|
table.text('comment');
|
||||||
|
|
||||||
table.integer('created_batch_id', 12)
|
table.integer('created_batch_id', 12)
|
||||||
.references('id')
|
.references('id')
|
||||||
.inTable('batches');
|
.inTable('batches');
|
||||||
|
|
Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 89 KiB |
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 90 KiB |
Before Width: | Height: | Size: 737 KiB After Width: | Height: | Size: 753 KiB |
Before Width: | Height: | Size: 161 KiB After Width: | Height: | Size: 161 KiB |
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 164 KiB After Width: | Height: | Size: 160 KiB |
Before Width: | Height: | Size: 184 KiB After Width: | Height: | Size: 184 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 107 KiB |
Before Width: | Height: | Size: 261 KiB After Width: | Height: | Size: 261 KiB |
Before Width: | Height: | Size: 123 KiB After Width: | Height: | Size: 124 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 137 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 276 KiB After Width: | Height: | Size: 276 KiB |
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 5.4 KiB |
After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 2.3 KiB |