traxxx/assets/js/ui/actions.js

282 lines
5.8 KiB
JavaScript
Raw Normal View History

import { graphql, patch } 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-05-08 22:23:10 +00:00
async function fetchNotifications(_context, { page = 1, limit = 10 } = {}) {
2021-04-22 17:44:23 +00:00
if (!store.state.auth.user) {
return [];
}
2021-04-28 23:45:01 +00:00
const { notifications, unseenNotifications } = await graphql(`
2021-04-22 17:44:23 +00:00
query Notifications(
$hasAuth: Boolean!
$userId: Int
2021-05-08 22:23:10 +00:00
$limit: Int = 10
$offset: Int = 0
2021-04-22 17:44:23 +00:00
) {
2021-05-08 22:23:10 +00:00
notifications: notificationsConnection(
first: $limit
offset: $offset
orderBy: CREATED_AT_DESC
) {
2021-05-08 22:23:10 +00:00
nodes {
id
sceneId
userId
seen
createdAt
scene {
${releaseFields}
2021-04-22 17:44:23 +00:00
}
2021-05-08 22:23:10 +00:00
alert {
tags: alertsTags {
tag {
id
name
slug
}
2021-04-22 17:44:23 +00:00
}
2021-05-08 22:23:10 +00:00
actors: alertsActors {
actor {
id
name
slug
}
}
2021-11-20 22:59:15 +00:00
entity: alertsEntity {
2021-05-08 22:23:10 +00:00
entity {
id
name
slug
independent
}
2021-04-27 01:56:38 +00:00
}
}
2021-04-22 17:44:23 +00:00
}
2021-05-08 22:23:10 +00:00
totalCount
}
2021-04-28 23:45:01 +00:00
unseenNotifications: notificationsConnection(
filter: { seen: { equalTo: false } }
) {
totalCount
}
2021-04-22 17:44:23 +00:00
}
`, {
hasAuth: !!store.state.auth.user,
userId: store.state.auth.user?.id,
2021-05-08 22:23:10 +00:00
limit,
offset: (page - 1) * limit,
2021-04-22 17:44:23 +00:00
});
if (!notifications) {
return {
notifications: [],
totalCount: 0,
unseenCount: 0,
};
}
2021-11-20 22:59:15 +00:00
const curatedNotifications = notifications.nodes.map((notification) => curateNotification(notification));
2021-04-28 23:45:01 +00:00
return {
notifications: curatedNotifications,
2021-05-08 22:23:10 +00:00
totalCount: notifications.totalCount,
2021-04-28 23:45:01 +00:00
unseenCount: unseenNotifications.totalCount,
};
2021-04-22 17:44:23 +00:00
}
async function checkNotification(context, notificationId) {
await patch(`/users/${store.state.auth.user?.id}/notifications/${notificationId}`, {
seen: true,
});
}
async function checkNotifications() {
await patch(`/users/${store.state.auth.user?.id}/notifications`, {
seen: true,
});
}
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(
2021-08-22 23:35:46 +00:00
query: $query,
2020-05-17 23:22:56 +00:00
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 {
2021-11-20 22:59:15 +00:00
releases: res?.results.map((result) => curateRelease(result.release)) || [],
actors: res?.actors.map((actor) => curateActor(actor)) || [],
2020-05-17 23:22:56 +00:00
};
}
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 {
checkNotification,
checkNotifications,
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;