mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Implement mixed author threads
This commit is contained in:
parent
bc5e58823a
commit
de7224e0b9
2 changed files with 9 additions and 3 deletions
|
@ -237,12 +237,16 @@ const findNextStatus = (id: string, bucket: GraphQLProcessBucket): number => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const findPreviousStatus = (id: string, bucket: GraphQLProcessBucket): number => {
|
const findPreviousStatus = (id: string, bucket: GraphQLProcessBucket): number => {
|
||||||
const status = bucket.statuses.find(status => (status.rest_id ?? status.legacy?.id_str) === id);
|
const status = bucket.allStatuses.find(status => (status.rest_id ?? status.legacy?.id_str) === id);
|
||||||
if (!status) {
|
if (!status) {
|
||||||
console.log('uhhh, we could not even find that tweet, dunno how that happened');
|
console.log('uhhh, we could not even find that tweet, dunno how that happened');
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
return bucket.statuses.findIndex(
|
if ((status.rest_id ?? status.legacy?.id_str) === status.legacy?.in_reply_to_status_id_str) {
|
||||||
|
console.log('Tweet does not have a parent')
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return bucket.allStatuses.findIndex(
|
||||||
_status =>
|
_status =>
|
||||||
(_status.rest_id ?? _status.legacy?.id_str) === status.legacy?.in_reply_to_status_id_str
|
(_status.rest_id ?? _status.legacy?.id_str) === status.legacy?.in_reply_to_status_id_str
|
||||||
);
|
);
|
||||||
|
@ -357,6 +361,7 @@ export const constructTwitterThread = async (
|
||||||
}
|
}
|
||||||
|
|
||||||
const threadStatuses = [originalStatus];
|
const threadStatuses = [originalStatus];
|
||||||
|
bucket.allStatuses = bucket.statuses;
|
||||||
bucket.statuses = filterBucketStatuses(bucket.statuses, originalStatus);
|
bucket.statuses = filterBucketStatuses(bucket.statuses, originalStatus);
|
||||||
|
|
||||||
let currentId = id;
|
let currentId = id;
|
||||||
|
@ -432,7 +437,7 @@ export const constructTwitterThread = async (
|
||||||
|
|
||||||
while (findPreviousStatus(currentId, bucket) !== -1) {
|
while (findPreviousStatus(currentId, bucket) !== -1) {
|
||||||
const index = findPreviousStatus(currentId, bucket);
|
const index = findPreviousStatus(currentId, bucket);
|
||||||
const status = bucket.statuses[index];
|
const status = bucket.allStatuses[index];
|
||||||
const newCurrentId = status.rest_id ?? status.legacy?.id_str;
|
const newCurrentId = status.rest_id ?? status.legacy?.id_str;
|
||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
|
|
1
src/types/vendor/twitter.d.ts
vendored
1
src/types/vendor/twitter.d.ts
vendored
|
@ -572,5 +572,6 @@ type TweetStub = {
|
||||||
|
|
||||||
interface GraphQLProcessBucket {
|
interface GraphQLProcessBucket {
|
||||||
statuses: GraphQLTwitterStatus[];
|
statuses: GraphQLTwitterStatus[];
|
||||||
|
allStatuses: GraphQLTwitterStatus[];
|
||||||
cursors: GraphQLTimelineCursor[];
|
cursors: GraphQLTimelineCursor[];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue