traxxx/assets/js/ui/actions.js

232 lines
4.7 KiB
JavaScript
Raw Normal View History

import { graphql } from '../api';
2021-03-24 00:52:27 +00:00
import { releaseFields, actorStashesFields } from '../fragments';
2021-04-22 17:44:23 +00:00
import { curateRelease, curateActor, curateNotification } from '../curate';
2020-05-17 23:22:56 +00:00
function initUiActions(store, _router) {
2021-01-03 21:53:51 +00:00
function setTagFilter({ commit }, filter) {
const tagFilter = Array.from(new Set(filter));
commit('setTagFilter', tagFilter);
localStorage.setItem('tagFilter', tagFilter);
}
function setRange({ commit }, range) {
commit('setRange', range);
}
function setBatch({ commit }, batch) {
commit('setBatch', batch);
localStorage.setItem('batch', batch);
}
function setTheme({ commit }, theme) {
commit('setTheme', theme);
localStorage.setItem('theme', theme);
}
2020-03-23 00:43:49 +00:00
async function setSfw({ commit }, sfw) {
commit('setSfw', sfw);
localStorage.setItem('sfw', sfw);
}
2020-03-23 00:43:49 +00:00
2021-04-22 17:44:23 +00:00
async function fetchNotifications({ commit }) {
if (!store.state.auth.user) {
return [];
}
const { notifications } = await graphql(`
query Notifications(
$hasAuth: Boolean!
$userId: Int
) {
notifications {
id
sceneId
userId
createdAt
scene {
${releaseFields}
}
alert {
tags: alertsTags {
tag {
id
name
slug
}
}
actors: alertsActors {
actor {
id
name
slug
}
}
}
}
}
`, {
hasAuth: !!store.state.auth.user,
userId: store.state.auth.user?.id,
});
const curatedNotifications = notifications.map(notification => curateNotification(notification));
commit('setNotifications', curatedNotifications);
return curatedNotifications;
}
2020-05-17 23:22:56 +00:00
async function search({ _commit }, { query, limit = 20 }) {
const res = await graphql(`
query SearchReleases(
$query: String!
$limit: Int = 20
$hasAuth: Boolean!
$userId: Int
2020-05-17 23:22:56 +00:00
) {
results: searchReleases(
2020-05-17 23:22:56 +00:00
query: $query
first: $limit
orderBy: RANK_DESC
filter: {
rank: {
greaterThan: 0.015
}
}
2020-05-17 23:22:56 +00:00
) {
release {
${releaseFields}
}
rank
2020-05-17 23:22:56 +00:00
}
actors: searchActors(
search: $query,
first: $limit
) {
id
name
slug
age
2020-05-26 02:11:29 +00:00
ageAtDeath
2020-05-17 23:22:56 +00:00
dateOfBirth
2020-05-26 02:11:29 +00:00
dateOfDeath
2020-05-17 23:22:56 +00:00
gender
aliasFor: actorByAliasFor {
id
name
slug
age
2020-05-26 02:11:29 +00:00
ageAtDeath
2020-05-17 23:22:56 +00:00
dateOfBirth
2020-05-26 02:11:29 +00:00
dateOfDeath
2020-05-17 23:22:56 +00:00
gender
entity {
2020-05-17 23:22:56 +00:00
id
name
slug
}
avatar: avatarMedia {
id
path
thumbnail
lazy
isS3
width
height
2020-05-17 23:22:56 +00:00
comment
credit
2020-05-17 23:22:56 +00:00
}
birthCountry: countryByBirthCountryAlpha2 {
alpha2
name
alias
}
}
entity {
2020-05-17 23:22:56 +00:00
id
name
slug
}
avatar: avatarMedia {
id
path
thumbnail
lazy
isS3
width
height
2020-05-17 23:22:56 +00:00
comment
credit
2020-05-17 23:22:56 +00:00
}
birthCountry: countryByBirthCountryAlpha2 {
alpha2
name
alias
}
2021-03-24 00:52:27 +00:00
${actorStashesFields}
2020-05-17 23:22:56 +00:00
}
}
`, {
query,
limit,
hasAuth: !!store.state.auth.user,
userId: store.state.auth.user?.id,
2020-05-17 23:22:56 +00:00
});
return {
releases: res.results.map(result => curateRelease(result.release)),
2020-05-17 23:22:56 +00:00
actors: res.actors.map(actor => curateActor(actor)),
};
}
2020-08-15 17:04:33 +00:00
async function fetchStats() {
const {
scenes,
movies,
actors,
networks,
channels,
} = await graphql(`
query Stats {
2021-02-10 03:20:58 +00:00
scenes: releasesConnection(
last: 1,
orderBy: BATCH_BY_CREATED_BATCH_ID__CREATED_AT_ASC
) {
totalCount
scenes: nodes {
batch: createdBatch {
createdAt
}
}
}
2020-08-15 17:04:33 +00:00
movies: moviesConnection { totalCount }
actors: actorsConnection { totalCount }
networks: entitiesConnection(filter: { type: { equalTo: "network" } }) { totalCount }
channels: entitiesConnection(filter: { type: { equalTo: "channel" } }) { totalCount }
}
`);
return {
totalScenes: scenes.totalCount,
totalMovies: movies.totalCount,
totalActors: actors.totalCount,
totalNetworks: networks.totalCount,
totalChannels: channels.totalCount,
2021-02-10 03:20:58 +00:00
lastScrape: new Date(scenes.scenes[0]?.batch.createdAt),
2020-08-15 17:04:33 +00:00
};
}
return {
2020-05-17 23:22:56 +00:00
search,
2021-01-03 21:53:51 +00:00
setTagFilter,
setRange,
setBatch,
setSfw,
setTheme,
2021-04-22 17:44:23 +00:00
fetchNotifications,
2020-08-15 17:04:33 +00:00
fetchStats,
};
}
export default initUiActions;