* 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が空文字の時の挙動を修正 * ローカルのみしかノートがインデックスされていない場合、リモートユーザーも選択できなくした
342 lines
6.8 KiB
TypeScript
342 lines
6.8 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export const packedMetaLiteSchema = {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
properties: {
|
|
maintainerName: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
maintainerEmail: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
version: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
providesTarball: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
shortName: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
uri: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'url',
|
|
example: 'https://misskey.example.com',
|
|
},
|
|
description: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
langs: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
},
|
|
tosUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
repositoryUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
default: 'https://github.com/misskey-dev/misskey',
|
|
},
|
|
feedbackUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
default: 'https://github.com/misskey-dev/misskey/issues/new',
|
|
},
|
|
defaultDarkTheme: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
defaultLightTheme: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
disableRegistration: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
emailRequiredForSignup: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
enableHcaptcha: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
hcaptchaSiteKey: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
enableMcaptcha: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
mcaptchaSiteKey: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
mcaptchaInstanceUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
enableRecaptcha: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
recaptchaSiteKey: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
enableTurnstile: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
turnstileSiteKey: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
swPublickey: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
mascotImageUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
default: '/assets/ai.png',
|
|
},
|
|
bannerUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
serverErrorImageUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
infoImageUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
notFoundImageUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
iconUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
maxNoteTextLength: {
|
|
type: 'number',
|
|
optional: false, nullable: false,
|
|
},
|
|
ads: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'id',
|
|
example: 'xxxxxxxxxx',
|
|
},
|
|
url: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'url',
|
|
},
|
|
place: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
ratio: {
|
|
type: 'number',
|
|
optional: false, nullable: false,
|
|
},
|
|
imageUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'url',
|
|
},
|
|
dayOfWeek: {
|
|
type: 'integer',
|
|
optional: false, nullable: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
notesPerOneAd: {
|
|
type: 'number',
|
|
optional: false, nullable: false,
|
|
default: 0,
|
|
},
|
|
enableEmail: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
enableServiceWorker: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
translatorAvailable: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
mediaProxy: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
enableUrlPreview: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
backgroundImageUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
impressumUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
logoImageUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
privacyPolicyUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
inquiryUrl: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
serverRules: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'string',
|
|
},
|
|
},
|
|
themeColor: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
policies: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'RolePolicies',
|
|
},
|
|
noteSearchableScope: {
|
|
type: 'string',
|
|
enum: ['local', 'global'],
|
|
optional: false, nullable: false,
|
|
default: 'local',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const packedMetaDetailedOnlySchema = {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
properties: {
|
|
features: {
|
|
type: 'object',
|
|
optional: true, nullable: false,
|
|
properties: {
|
|
registration: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
emailRequiredForSignup: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
localTimeline: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
globalTimeline: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
hcaptcha: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
turnstile: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
recaptcha: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
objectStorage: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
serviceWorker: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
miauth: {
|
|
type: 'boolean',
|
|
optional: true, nullable: false,
|
|
default: true,
|
|
},
|
|
},
|
|
},
|
|
proxyAccountName: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
requireSetup: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
example: false,
|
|
},
|
|
cacheRemoteFiles: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
cacheRemoteSensitiveFiles: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const packedMetaDetailedSchema = {
|
|
type: 'object',
|
|
allOf: [
|
|
{
|
|
type: 'object',
|
|
ref: 'MetaLite',
|
|
},
|
|
{
|
|
type: 'object',
|
|
ref: 'MetaDetailedOnly',
|
|
},
|
|
],
|
|
} as const;
|