hashをパスと行数から決定

This commit is contained in:
tai-cha
2025-02-21 22:29:42 +09:00
parent dc9472771b
commit 1e80ee5bd0
7 changed files with 95 additions and 17 deletions

View File

@@ -6,11 +6,9 @@ SPDX-License-Identifier: AGPL-3.0-only
<template>
<div class="_gaps_m">
<MkSearchMarker
markerId="test"
:locationLabel="[i18n.ts.muteAndBlock]"
icon="ti ti-ban"
:keywords="['mute', i18n.ts.wordMute]"
:children="['test2']"
>
<MkFolder>
<template #icon><i class="ti ti-message-off"></i></template>
@@ -20,7 +18,6 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkInfo>{{ i18n.ts.wordMuteDescription }}</MkInfo>
<MkSearchMarker
markerId="test2"
:locationLabel="[i18n.ts.muteAndBlock, i18n.ts.wordMute]"
icon="ti ti-ban"
:keywords="['showMutedWord', i18n.ts.showMutedWord]"

View File

@@ -18,13 +18,13 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
</div>
<MkSearchMarker markerId="727cc9e8-ad67-474a-9241-b5a9a6475e47">
<MkSearchMarker>
<MkInput v-model="profile.name" :max="30" manualSave :mfmAutocomplete="['emoji']">
<template #label>{{ i18n.ts._profile.name }}</template>
</MkInput>
</MkSearchMarker>
<MkSearchMarker markerId="1a06c7f9-e85e-46cb-bf5f-b3efa8e71b93">
<MkSearchMarker>
<MkTextarea v-model="profile.description" :max="500" tall manualSave mfmAutocomplete :mfmPreview="true">
<template #label>{{ i18n.ts._profile.description }}</template>
<template #caption>{{ i18n.ts._profile.youCanIncludeHashtags }}</template>

View File

@@ -0,0 +1,76 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
// This file was automatically generated by create-search-index.
// Do not edit this file.
import { i18n } from '@/i18n.js';
export const searchIndexes = [
{
filePath: 'src/pages/settings/profile.vue',
usage: [
{
staticProps: {
markerId: '4mWPWOqkN',
},
bindProps: {},
},
{
staticProps: {
markerId: 'gw1zundQ3',
},
bindProps: {},
},
],
},
{
filePath: 'src/pages/settings/privacy.vue',
usage: [
{
staticProps: {
icon: 'ti ti-lock-open',
markerId: 'ssTCH2oBL',
},
bindProps: {
locationLabel: [i18n.ts.privacy, i18n.ts.makeFollowManuallyApprove],
keywords: ['follow', 'lock', i18n.ts.lockedAccountInfo],
},
},
],
},
{
filePath: 'src/pages/settings/mute-block.vue',
usage: [
{
staticProps: {
icon: 'ti ti-ban',
markerId: 'CVhDOYgMv',
},
bindProps: {
locationLabel: [i18n.ts.muteAndBlock],
keywords: ['mute', i18n.ts.wordMute],
children: [
'kcHPXo5ZV',
],
},
},
{
staticProps: {
icon: 'ti ti-ban',
markerId: 'kcHPXo5ZV',
},
bindProps: {
locationLabel: [i18n.ts.muteAndBlock, i18n.ts.wordMute],
keywords: ['showMutedWord', i18n.ts.showMutedWord],
},
},
],
},
] as const;
export type AnalysisResults = typeof searchIndexes;
export type ComponentUsageInfo = AnalysisResults[number]['usage'][number];