fix: warning is not a valid value for v-model in JetBrains IDE (#12787)

This commit is contained in:
anyesu 2024-04-13 21:41:11 +08:00 committed by GitHub
parent 7217004dd8
commit 04814e2ead
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 45 additions and 12 deletions

View File

@ -1,7 +1,7 @@
/* eslint-disable no-continue */ /* eslint-disable no-continue */
import { Articles } from './parser.js'; import { Articles } from './parser.js';
import { formatType, removeVersion, toKebabCase } from './utils.js'; import { formatType, removeVersion, toKebabCase } from './utils.js';
import { VueEventArgument, VueTag } from './type.js'; import { VueAttribute, VueEvent, VueEventArgument, VueTag } from './type.js';
function formatComponentName(name: string, tagPrefix: string) { function formatComponentName(name: string, tagPrefix: string) {
return tagPrefix + toKebabCase(name); return tagPrefix + toKebabCase(name);
@ -105,21 +105,52 @@ export function formatter(
const tag = findTag(vueTags, name); const tag = findTag(vueTags, name);
table.body.forEach((line) => { table.body.forEach((line) => {
const [name, desc, type, defaultVal] = line; const [_name, desc, _type, defaultVal] = line;
const name = removeVersion(_name);
const type = formatType(_type);
if (!tag.attributes) { if (!tag.attributes) {
tag.attributes = []; tag.attributes = [];
} }
tag.attributes.push({ const attribute: VueAttribute = {
name: removeVersion(name), name,
default: defaultVal, default: defaultVal,
description: desc, description: desc,
value: { value: {
type: formatType(type), type,
kind: 'expression', kind: 'expression',
}, },
}); };
if (name === 'v-model') {
const modelValue = 'modelValue';
// add `modelValue`
tag.attributes.push({ ...attribute, name: modelValue });
if (type === 'boolean') {
// fix: warning `is not a valid value for v-model` in JetBrains IDE
// ref: https://github.com/JetBrains/web-types/issues/79#issuecomment-2045153333
attribute.value = { ...attribute.value, type: type + ' ' };
}
if (!tag.events) {
tag.events = [];
}
tag.events.push({
name: `update:${modelValue}`,
description: `${desc}\n\nEmitted when the value of \`${modelValue}\` prop changes.`,
arguments: [
{
name: modelValue,
type,
},
],
});
}
tag.attributes.push(attribute);
}); });
return; return;
} }
@ -127,20 +158,21 @@ export function formatter(
if (tableTitle.includes('Events')) { if (tableTitle.includes('Events')) {
const name = getNameFromTableTitle(tableTitle, tagPrefix) || defaultName; const name = getNameFromTableTitle(tableTitle, tagPrefix) || defaultName;
const tag = findTag(vueTags, name); const tag = findTag(vueTags, name);
const events: VueEvent[] = [];
table.body.forEach((line) => { table.body.forEach((line) => {
const [name, desc, args] = line; const [name, desc, args] = line;
if (!tag.events) { events.push({
tag.events = [];
}
tag.events.push({
name: removeVersion(name), name: removeVersion(name),
description: desc, description: desc,
arguments: formatArguments(args), arguments: formatArguments(args),
}); });
}); });
// for higher priority
tag.events = events.concat(tag.events || []);
return; return;
} }

View File

@ -17,6 +17,7 @@ async function readMarkdown(options: Options) {
const mds = await glob(normalizePath(`${options.path}/**/*.md`)); const mds = await glob(normalizePath(`${options.path}/**/*.md`));
return mds return mds
.filter((md) => options.test.test(md)) .filter((md) => options.test.test(md))
.sort((a, b) => a.localeCompare(b)) // keep order
.map((path) => fse.readFileSync(path, 'utf-8')); .map((path) => fse.readFileSync(path, 'utf-8'));
} }

View File

@ -1,5 +1,5 @@
/* eslint-disable no-cond-assign */ /* eslint-disable no-cond-assign */
const TITLE_REG = /^(#+)\s+([^\n]*)/; const TITLE_REG = /^(#+)\s+([^\r\n]*)/;
const TABLE_REG = /^\|.+\r?\n\|\s*-+/; const TABLE_REG = /^\|.+\r?\n\|\s*-+/;
const TD_REG = /\s*`[^`]+`\s*|([^|`]+)/g; const TD_REG = /\s*`[^`]+`\s*|([^|`]+)/g;
const TABLE_SPLIT_LINE_REG = /^\|\s*-/; const TABLE_SPLIT_LINE_REG = /^\|\s*-/;