mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-06 07:28:53 -05:00
fix
This commit is contained in:
parent
9ccd0fa44e
commit
29d939c47c
@ -1 +1 @@
|
|||||||
VERSION = "7.9913.0"
|
VERSION = "7.3.0"
|
||||||
|
|||||||
@ -96,7 +96,7 @@ class MediaList(APIView):
|
|||||||
rbac_conditions &= Q(user=user)
|
rbac_conditions &= Q(user=user)
|
||||||
conditions |= rbac_conditions
|
conditions |= rbac_conditions
|
||||||
|
|
||||||
return base_queryset.filter(conditions).distinct()[:1000]
|
return base_queryset.filter(conditions).distinct()
|
||||||
|
|
||||||
def get(self, request, format=None):
|
def get(self, request, format=None):
|
||||||
# Show media
|
# Show media
|
||||||
@ -116,6 +116,7 @@ class MediaList(APIView):
|
|||||||
upload_date = params.get('upload_date', '').strip()
|
upload_date = params.get('upload_date', '').strip()
|
||||||
duration = params.get('duration', '').strip()
|
duration = params.get('duration', '').strip()
|
||||||
publish_state = params.get('publish_state', '').strip()
|
publish_state = params.get('publish_state', '').strip()
|
||||||
|
query = params.get("q", "").strip().lower()
|
||||||
|
|
||||||
# Handle combined sort options (e.g., title_asc, views_desc)
|
# Handle combined sort options (e.g., title_asc, views_desc)
|
||||||
parsed_combined = False
|
parsed_combined = False
|
||||||
@ -221,11 +222,13 @@ class MediaList(APIView):
|
|||||||
if publish_state and publish_state in ['private', 'public', 'unlisted']:
|
if publish_state and publish_state in ['private', 'public', 'unlisted']:
|
||||||
media = media.filter(state=publish_state)
|
media = media.filter(state=publish_state)
|
||||||
|
|
||||||
|
if query:
|
||||||
|
media = media.filter(title__icontains=query)
|
||||||
|
|
||||||
if not already_sorted:
|
if not already_sorted:
|
||||||
media = media.order_by(f"{ordering}{sort_by}")
|
media = media.order_by(f"{ordering}{sort_by}")
|
||||||
|
|
||||||
if show_param == "shared_with_me":
|
media = media[:1000] # limit to 1000 results
|
||||||
media = media[:1000] # limit to 1000 results
|
|
||||||
|
|
||||||
paginator = pagination_class()
|
paginator = pagination_class()
|
||||||
|
|
||||||
|
|||||||
@ -232,7 +232,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.playlist-item {
|
.playlist-list .playlist-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
@ -120,7 +120,7 @@ export class ProfileMediaPage extends Page {
|
|||||||
|
|
||||||
if (author) {
|
if (author) {
|
||||||
if (this.state.query) {
|
if (this.state.query) {
|
||||||
requestUrl = ApiUrlContext._currentValue.search.query + this.state.query + '&author=' + author.id + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + author.id + '&q=' + encodeURIComponent(this.state.query) + this.state.filterArgs;
|
||||||
} else {
|
} else {
|
||||||
requestUrl = ApiUrlContext._currentValue.media + '?author=' + author.id + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + author.id + this.state.filterArgs;
|
||||||
}
|
}
|
||||||
@ -171,7 +171,7 @@ export class ProfileMediaPage extends Page {
|
|||||||
let requestUrl;
|
let requestUrl;
|
||||||
|
|
||||||
if (newQuery) {
|
if (newQuery) {
|
||||||
requestUrl = ApiUrlContext._currentValue.search.query + newQuery + '&author=' + this.state.author.id + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&q=' + encodeURIComponent(newQuery) + this.state.filterArgs;
|
||||||
} else {
|
} else {
|
||||||
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + this.state.filterArgs;
|
||||||
}
|
}
|
||||||
@ -703,7 +703,7 @@ export class ProfileMediaPage extends Page {
|
|||||||
let requestUrl;
|
let requestUrl;
|
||||||
|
|
||||||
if (this.state.query) {
|
if (this.state.query) {
|
||||||
requestUrl = ApiUrlContext._currentValue.search.query + this.state.query + '&author=' + this.state.author.id + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&q=' + encodeURIComponent(this.state.query) + this.state.filterArgs;
|
||||||
} else {
|
} else {
|
||||||
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + this.state.filterArgs;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -81,7 +81,7 @@ class ProfileSharedByMePage extends Page {
|
|||||||
|
|
||||||
if (author) {
|
if (author) {
|
||||||
if (this.state.query) {
|
if (this.state.query) {
|
||||||
requestUrl = ApiUrlContext._currentValue.search.query + this.state.query + '&author=' + author.id + '&show=shared_by_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + author.id + '&show=shared_by_me&q=' + encodeURIComponent(this.state.query) + this.state.filterArgs;
|
||||||
} else {
|
} else {
|
||||||
requestUrl = ApiUrlContext._currentValue.media + '?author=' + author.id + '&show=shared_by_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + author.id + '&show=shared_by_me' + this.state.filterArgs;
|
||||||
}
|
}
|
||||||
@ -132,7 +132,7 @@ class ProfileSharedByMePage extends Page {
|
|||||||
let requestUrl;
|
let requestUrl;
|
||||||
|
|
||||||
if (newQuery) {
|
if (newQuery) {
|
||||||
requestUrl = ApiUrlContext._currentValue.search.query + newQuery + '&author=' + this.state.author.id + '&show=shared_by_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_by_me&q=' + encodeURIComponent(newQuery) + this.state.filterArgs;
|
||||||
} else {
|
} else {
|
||||||
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_by_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_by_me' + this.state.filterArgs;
|
||||||
}
|
}
|
||||||
@ -274,7 +274,7 @@ class ProfileSharedByMePage extends Page {
|
|||||||
let requestUrl;
|
let requestUrl;
|
||||||
|
|
||||||
if (this.state.query) {
|
if (this.state.query) {
|
||||||
requestUrl = ApiUrlContext._currentValue.search.query + this.state.query + '&author=' + this.state.author.id + '&show=shared_by_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_by_me&q=' + encodeURIComponent(this.state.query) + this.state.filterArgs;
|
||||||
} else {
|
} else {
|
||||||
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_by_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_by_me' + this.state.filterArgs;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -79,7 +79,7 @@ export class ProfileSharedWithMePage extends Page {
|
|||||||
|
|
||||||
if (author) {
|
if (author) {
|
||||||
if (this.state.query) {
|
if (this.state.query) {
|
||||||
requestUrl = ApiUrlContext._currentValue.search.query + this.state.query + '&author=' + author.id + '&show=shared_with_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + author.id + '&show=shared_with_me&q=' + encodeURIComponent(this.state.query) + this.state.filterArgs;
|
||||||
} else {
|
} else {
|
||||||
requestUrl = ApiUrlContext._currentValue.media + '?author=' + author.id + '&show=shared_with_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + author.id + '&show=shared_with_me' + this.state.filterArgs;
|
||||||
}
|
}
|
||||||
@ -130,7 +130,7 @@ export class ProfileSharedWithMePage extends Page {
|
|||||||
let requestUrl;
|
let requestUrl;
|
||||||
|
|
||||||
if (newQuery) {
|
if (newQuery) {
|
||||||
requestUrl = ApiUrlContext._currentValue.search.query + newQuery + '&author=' + this.state.author.id + '&show=shared_with_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_with_me&q=' + encodeURIComponent(newQuery) + this.state.filterArgs;
|
||||||
} else {
|
} else {
|
||||||
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_with_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_with_me' + this.state.filterArgs;
|
||||||
}
|
}
|
||||||
@ -272,7 +272,7 @@ export class ProfileSharedWithMePage extends Page {
|
|||||||
let requestUrl;
|
let requestUrl;
|
||||||
|
|
||||||
if (this.state.query) {
|
if (this.state.query) {
|
||||||
requestUrl = ApiUrlContext._currentValue.search.query + this.state.query + '&author=' + this.state.author.id + '&show=shared_with_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_with_me&q=' + encodeURIComponent(this.state.query) + this.state.filterArgs;
|
||||||
} else {
|
} else {
|
||||||
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_with_me' + this.state.filterArgs;
|
requestUrl = ApiUrlContext._currentValue.media + '?author=' + this.state.author.id + '&show=shared_with_me' + this.state.filterArgs;
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user