bff813042e
* refactor(frontend): noteSearchAvailableをaccountsに移動 * feat: searchページでのクエリの受取りとtypeによる表示タブの変更 * user検索でsearchの親から受け取った値を基に入力値を初期化 * feat(frontend): ノート検索で親(search)からの情報を基にユーザー情報を取得 * feat(frontend): ユーザーのノートを検索するページに遷移するボタン * feat(frontend): ノート検索にホスト名指定のオプション追加 also 🎨 * style: ただ照会部分を囲っただけ(可読性確保のために) * refactor: remove unneed import defineProps and withDefaults are compiler micro when using `<script setup>` FYI: https://vuejs.org/api/sfc-script-setup.html#defineprops-defineemits:~:text=defineProps%20and%20defineEmits%20are%20compiler%20macros%20only%20usable%20inside%20%3Cscript%20setup%3E.%20They%20do%20not%20need%20to%20be%20imported%2C%20and%20are%20compiled%20away%20when%20%3Cscript%20setup%3E%20is%20processed. * Update CHANGELOG * Fix: ノート検索の初期値が常にホスト指定になってしまう * notesSearchAvailableをaccountに持たせるのをやめる * SDPX-Licence-Identifier * Fix: Vitest fails due to instance.policies being undefined * Add Storybook for search * Fix(storybook): ノート検索が利用できないと出てしまう問題 * storybookでユーザー選択ができないのを修正 * feat: ノート検索で自分を選択可能に & 🎨 * feat(background): api/metaで検索可能なノートのスコープを参照できるように * globalのノートが検索不可能な場合、検索オプションを表示しないように * Update CHANGELOG.md * config.meilisearch.scopeがstring[]を取ることがあるので修正 * meilisearchを利用かつscopeがlocalの場合、リモートユーザーのメニューで「このユーザーのノートを検索」を出さないように * hostが空文字の時の挙動を修正 * ローカルのみしかノートがインデックスされていない場合、リモートユーザーも選択できなくした
244 lines
6.4 KiB
TypeScript
244 lines
6.4 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import type { entities } from 'misskey-js'
|
|
|
|
export function abuseUserReport() {
|
|
return {
|
|
id: 'someabusereportid',
|
|
createdAt: '2016-12-28T22:49:51.000Z',
|
|
comment: 'This user is a spammer!',
|
|
resolved: false,
|
|
reporterId: 'reporterid',
|
|
targetUserId: 'targetuserid',
|
|
assigneeId: 'assigneeid',
|
|
reporter: userDetailed('reporterid', 'reporter', 'misskey-hub.net', 'Reporter'),
|
|
targetUser: userDetailed('targetuserid', 'target', 'misskey-hub.net', 'Target'),
|
|
assignee: userDetailed('assigneeid', 'assignee', 'misskey-hub.net', 'Assignee'),
|
|
me: null,
|
|
forwarded: false,
|
|
};
|
|
}
|
|
|
|
export function channel(id = 'somechannelid', name = 'Some Channel', bannerUrl: string | null = 'https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/fedi.jpg?raw=true'): entities.Channel {
|
|
return {
|
|
id,
|
|
createdAt: '2016-12-28T22:49:51.000Z',
|
|
lastNotedAt: '2016-12-28T22:49:51.000Z',
|
|
name,
|
|
description: null,
|
|
userId: null,
|
|
bannerUrl,
|
|
pinnedNoteIds: [],
|
|
color: '#000',
|
|
isArchived: false,
|
|
usersCount: 1,
|
|
notesCount: 1,
|
|
isSensitive: false,
|
|
allowRenoteToExternal: false,
|
|
};
|
|
}
|
|
|
|
export function clip(id = 'someclipid', name = 'Some Clip'): entities.Clip {
|
|
return {
|
|
id,
|
|
createdAt: '2016-12-28T22:49:51.000Z',
|
|
lastClippedAt: null,
|
|
userId: 'someuserid',
|
|
user: {
|
|
id: 'someuserid',
|
|
name: 'Misskey User',
|
|
username: 'miskist',
|
|
host: 'misskey-hub.net',
|
|
avatarUrl: 'https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/about-icon.png?raw=true',
|
|
avatarBlurhash: 'eQFRshof5NWBRi},juayfPju53WB?0ofs;s*a{ofjuay^SoMEJR%ay',
|
|
avatarDecorations: [],
|
|
emojis: {},
|
|
badgeRoles: [],
|
|
onlineStatus: 'unknown',
|
|
},
|
|
notesCount: undefined,
|
|
name,
|
|
description: 'Some clip description',
|
|
isPublic: false,
|
|
favoritedCount: 0,
|
|
};
|
|
}
|
|
|
|
export function emojiDetailed(id = 'someemojiid', name = 'some_emoji'): entities.EmojiDetailed {
|
|
return {
|
|
id,
|
|
aliases: ['alias1', 'alias2'],
|
|
name,
|
|
category: 'emojiCategory',
|
|
host: null,
|
|
url: '/client-assets/about-icon.png',
|
|
license: null,
|
|
isSensitive: false,
|
|
localOnly: false,
|
|
roleIdsThatCanBeUsedThisEmojiAsReaction: ['roleId1', 'roleId2'],
|
|
};
|
|
}
|
|
|
|
export function galleryPost(isSensitive = false) {
|
|
return {
|
|
id: 'somepostid',
|
|
createdAt: '2016-12-28T22:49:51.000Z',
|
|
updatedAt: '2016-12-28T22:49:51.000Z',
|
|
userId: 'someuserid',
|
|
user: userDetailed(),
|
|
title: 'Some post title',
|
|
description: 'Some post description',
|
|
fileIds: ['somefileid'],
|
|
files: [
|
|
file(isSensitive),
|
|
],
|
|
isSensitive,
|
|
likedCount: 0,
|
|
isLiked: false,
|
|
}
|
|
}
|
|
|
|
export function file(isSensitive = false) {
|
|
return {
|
|
id: 'somefileid',
|
|
createdAt: '2016-12-28T22:49:51.000Z',
|
|
name: 'somefile.jpg',
|
|
type: 'image/jpeg',
|
|
md5: 'f6fc51c73dc21b1fb85ead2cdf57530a',
|
|
size: 77752,
|
|
isSensitive,
|
|
blurhash: 'eQAmoa^-MH8w9ZIvNLSvo^$*MwRPbwtSxutRozjEiwR.RjWBoeozog',
|
|
properties: {
|
|
width: 1024,
|
|
height: 270
|
|
},
|
|
url: 'https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/fedi.jpg?raw=true',
|
|
thumbnailUrl: 'https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/fedi.jpg?raw=true',
|
|
comment: null,
|
|
folderId: null,
|
|
folder: null,
|
|
userId: null,
|
|
user: null,
|
|
};
|
|
}
|
|
|
|
export function federationInstance(): entities.FederationInstance {
|
|
return {
|
|
id: 'someinstanceid',
|
|
firstRetrievedAt: '2021-01-01T00:00:00.000Z',
|
|
host: 'misskey-hub.net',
|
|
usersCount: 10,
|
|
notesCount: 20,
|
|
followingCount: 5,
|
|
followersCount: 15,
|
|
isNotResponding: false,
|
|
isSuspended: false,
|
|
suspensionState: 'none',
|
|
isBlocked: false,
|
|
softwareName: 'misskey',
|
|
softwareVersion: '2024.5.0',
|
|
openRegistrations: false,
|
|
name: 'Misskey Hub',
|
|
description: '',
|
|
maintainerName: '',
|
|
maintainerEmail: '',
|
|
isSilenced: false,
|
|
iconUrl: 'https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/about-icon.png?raw=true',
|
|
faviconUrl: '',
|
|
themeColor: '',
|
|
infoUpdatedAt: '',
|
|
latestRequestReceivedAt: '',
|
|
};
|
|
}
|
|
|
|
export function userDetailed(id = 'someuserid', username = 'miskist', host:entities.UserDetailed['host'] = 'misskey-hub.net', name:entities.UserDetailed['name'] = 'Misskey User'): entities.UserDetailed {
|
|
return {
|
|
id,
|
|
username,
|
|
host,
|
|
name,
|
|
onlineStatus: 'unknown',
|
|
avatarUrl: 'https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/about-icon.png?raw=true',
|
|
avatarBlurhash: 'eQFRshof5NWBRi},juayfPju53WB?0ofs;s*a{ofjuay^SoMEJR%ay',
|
|
avatarDecorations: [],
|
|
emojis: {},
|
|
bannerBlurhash: 'eQA^IW^-MH8w9tE8I=S^o{$*R4RikXtSxutRozjEnNR.RQadoyozog',
|
|
bannerUrl: 'https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/fedi.jpg?raw=true',
|
|
birthday: '2014-06-20',
|
|
createdAt: '2016-12-28T22:49:51.000Z',
|
|
description: 'I am a cool user!',
|
|
followingVisibility: 'public',
|
|
followersVisibility: 'public',
|
|
roles: [],
|
|
fields: [
|
|
{
|
|
name: 'Website',
|
|
value: 'https://misskey-hub.net',
|
|
},
|
|
],
|
|
verifiedLinks: [],
|
|
followersCount: 1024,
|
|
followingCount: 16,
|
|
hasPendingFollowRequestFromYou: false,
|
|
hasPendingFollowRequestToYou: false,
|
|
isAdmin: false,
|
|
isBlocked: false,
|
|
isBlocking: false,
|
|
isBot: false,
|
|
isCat: false,
|
|
isFollowed: false,
|
|
isFollowing: false,
|
|
isLocked: false,
|
|
isModerator: false,
|
|
isMuted: false,
|
|
isSilenced: false,
|
|
isSuspended: false,
|
|
lang: 'en',
|
|
location: 'Fediverse',
|
|
notesCount: 65536,
|
|
pinnedNoteIds: [],
|
|
pinnedNotes: [],
|
|
pinnedPage: null,
|
|
pinnedPageId: null,
|
|
publicReactions: false,
|
|
securityKeys: false,
|
|
twoFactorEnabled: false,
|
|
usePasswordLessLogin: false,
|
|
twoFactorBackupCodesStock: 'none',
|
|
updatedAt: null,
|
|
lastFetchedAt: null,
|
|
uri: null,
|
|
url: null,
|
|
movedTo: null,
|
|
alsoKnownAs: null,
|
|
notify: 'none',
|
|
memo: null
|
|
};
|
|
}
|
|
|
|
export function inviteCode(isUsed = false, hasExpiration = false, isExpired = false, isCreatedBySystem = false) {
|
|
const date = new Date();
|
|
const createdAt = new Date();
|
|
createdAt.setDate(date.getDate() - 1)
|
|
const expiresAt = new Date();
|
|
|
|
if (isExpired) {
|
|
expiresAt.setHours(date.getHours() - 1)
|
|
} else {
|
|
expiresAt.setHours(date.getHours() + 1)
|
|
}
|
|
|
|
return {
|
|
id: "9gyqzizw77",
|
|
code: "SLF3JKF7UV2H9",
|
|
expiresAt: hasExpiration ? expiresAt.toISOString() : null,
|
|
createdAt: createdAt.toISOString(),
|
|
createdBy: isCreatedBySystem ? null : userDetailed('8i3rvznx32'),
|
|
usedBy: isUsed ? userDetailed('3i3r2znx1v') : null,
|
|
usedAt: isUsed ? date.toISOString() : null,
|
|
used: isUsed,
|
|
}
|
|
}
|