refactor: improve display in feed channel list
This commit is contained in:
parent
2ce5597dfe
commit
15c6290587
@ -38,6 +38,7 @@ function PageComponent() {
|
|||||||
channelId,
|
channelId,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
refetchOnWindowFocus: false,
|
||||||
getNextPageParam: (lastPage) => lastPage.nextCursor,
|
getNextPageParam: (lastPage) => lastPage.nextCursor,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -59,7 +59,7 @@ export const feedIntegrationRouter = router({
|
|||||||
data: {
|
data: {
|
||||||
channelId: channelId,
|
channelId: channelId,
|
||||||
eventName: eventType,
|
eventName: eventType,
|
||||||
eventContent: `[${pusherName}](${pusherEmail}) push commit **${commits}** to [${ref}] in [${fullName}](${repoUrl})`,
|
eventContent: `[${pusherName}](mailto:${pusherEmail}) push commit **${commits}** to [${ref}] in [${fullName}](${repoUrl})`,
|
||||||
tags: [],
|
tags: [],
|
||||||
source: 'github',
|
source: 'github',
|
||||||
senderId,
|
senderId,
|
||||||
@ -81,12 +81,13 @@ export const feedIntegrationRouter = router({
|
|||||||
const repoUrl = _.get(data, 'repository.html_url');
|
const repoUrl = _.get(data, 'repository.html_url');
|
||||||
const senderId = String(_.get(data, 'sender.id'));
|
const senderId = String(_.get(data, 'sender.id'));
|
||||||
const senderName = String(_.get(data, 'sender.login'));
|
const senderName = String(_.get(data, 'sender.login'));
|
||||||
|
const senderUrl = String(_.get(data, 'sender.html_url'));
|
||||||
const url = String(_.get(data, 'compare'));
|
const url = String(_.get(data, 'compare'));
|
||||||
const event = await prisma.feedEvent.create({
|
const event = await prisma.feedEvent.create({
|
||||||
data: {
|
data: {
|
||||||
channelId: channelId,
|
channelId: channelId,
|
||||||
eventName: eventType,
|
eventName: eventType,
|
||||||
eventContent: `${senderName} star repo [${fullName}](${repoUrl}), now is ${starCount}.`,
|
eventContent: `[${senderName}](${senderUrl}) star repo [${fullName}](${repoUrl}), now is ${starCount}.`,
|
||||||
tags: [],
|
tags: [],
|
||||||
source: 'github',
|
source: 'github',
|
||||||
senderId,
|
senderId,
|
||||||
|
Loading…
Reference in New Issue
Block a user