Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

syncfusion-angular-mentionsyncfusion Angular mention 搜索

Agent Skill

syncfusion-angular-mention 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

517

周安装

22

GitHub Stars

公开资料未说明

下载量

181
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-angular-mention(syncfusion Angular mention 搜索)
来源仓库:https://github.com/syncfusion/angular-ui-components-skills
仓库路径:skills/syncfusion-angular-mention
安装命令:
npx skills add https://github.com/syncfusion/angular-ui-components-skills --skill syncfusion-angular-mention
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/angular-ui-components-skills --skill syncfusion-angular-mention

简介

用于查找、检索和筛选相关信息。syncfusion-angular-mention 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据来源线索快速定位候选结果。
  • 通过 GitHub 仓库安装,适用于多种宿主环境。
  • 使用前建议确认权限范围和维护状态。
  • 注意可能触发联网或文件操作,需评估安全风险。

SKILL.md

Implementing Syncfusion Angular Mention Component

Component Overview & Architecture

The Mention component renders an autocomplete suggestion popup when the user types a trigger character (default @) inside a target element (a div[contenteditable], textarea, or similar). It is designed for:

  1. User tagging — tag people, teams, or resources using @
  2. Hashtag suggestions — use any custom character (#, /, etc.) as the trigger
  3. Rich text integration — works with contenteditable divs and editors
  4. Data binding — supports local arrays (strings, objects, complex objects) and remote DataManager sources
  5. FilteringContains, StartsWith, EndsWith with configurable min-length, debounce, and spacing
  6. Template customization — item, display, no-records, spinner, and group templates
  7. Disabled items — mark individual list items as non-selectable
  8. Accessibility — WCAG 2.2 compliant with full keyboard navigation and ARIA attributes

Key Characteristics

AspectDetails
TriggerAny single character via mentionChar (default @)
TargetAny HTMLElement or CSS selector string set via target
Data SourcesLocal arrays (strings, objects), remote DataManager (OData, Web API)
FilteringBuilt-in: Contains, StartsWith, EndsWith; configurable minLength, allowSpaces
DisplayshowMentionChar controls whether the trigger character is shown with selected text
SuffixsuffixText appends a space or newline after the selected item
AccessibilityWCAG 2.2, Section 508, ADA; keyboard shortcuts: Arrow keys, Enter, Tab, Escape
LocalizationL10n.load() for noRecordsTemplate locale key

Documentation Navigation Guide

📄 Getting Started

Read: references/getting-started.md

  • Install @syncfusion/ej2-angular-dropdowns package
  • Set up Angular 21+ project with standalone components
  • Import MentionModule and required CSS themes
  • Create a target contenteditable div
  • Bind target and basic dataSource
  • Display/customize the mention character with showMentionChar and mentionChar

📄 Data Binding

Read: references/data-binding.md

  • Bind to local arrays of strings, JSON objects, and complex objects
  • Map text, value, groupBy, and iconCss via fields property
  • Remote data with DataManager using ODataV4Adaptor and WebApiAdaptor
  • Use the query property to scope remote requests

📄 Filtering

Read: references/filtering.md

  • Control filter strategy with filterType (Contains, StartsWith, EndsWith)
  • Set minimum input length before triggering with minLength
  • Allow spaces in the middle of a mention search with allowSpaces
  • Limit visible suggestion count with suggestionCount
  • Tune debounce delay for remote sources with debounceDelay

📄 Templates

Read: references/templates.md

  • Customize suggestion list item layout with itemTemplate
  • Customize the inserted text representation with displayTemplate
  • Handle empty results with noRecordsTemplate
  • Show a loading indicator while fetching remote data with spinnerTemplate
  • Customize grouped items with groupTemplate

📄 Customization

Read: references/customization.md

  • Show/hide the trigger character alongside selected text with showMentionChar
  • Append a suffix (space, newline) after selection with suffixText
  • Resize the popup with popupHeight and popupWidth
  • Change the trigger character with mentionChar
  • Control leading space requirement with requireLeadingSpace
  • Apply custom CSS classes with cssClass
  • Highlight searched characters with highlight
  • Configure ignoreCase and ignoreAccent for search behavior

📄 Sorting & Disabled Items

Read: references/sorting-and-disabled-items.md

  • Sort suggestions with sortOrder (None, Ascending, Descending)
  • Mark items as non-selectable via fields.disabled
  • Dynamically disable items at runtime using the disableItem method

📄 Accessibility & Localization

Read: references/accessibility-and-localization.md

  • WCAG 2.2, Section 508, and ADA compliance
  • Full keyboard shortcuts (Arrow Down/Up, Enter, Tab, Escape)
  • ARIA attributes: aria-selected, aria-activedescendent, aria-owns
  • Localize noRecordsTemplate with L10n.load()
  • RTL support with enableRtl

📄 API Reference

Read: references/api.md

  • Complete properties reference with types, defaults, and descriptions
  • All methods: addItem, disableItem, getDataByValue, getItems, hidePopup, showPopup, search, destroy
  • All events: dataBound, actionFailureTemplate

Quick Start Example

// app.component.ts (Angular 21 Standalone)
import { Component } from '@angular/core';
import { MentionModule } from '@syncfusion/ej2-angular-dropdowns';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [MentionModule],
  template: `
    <label style="font-size: 15px; font-weight: 600;">Comments</label>
    <div id="mentionElement"
         placeholder="Type @ and tag a user"
         style="min-height: 100px; border: 1px solid #D7D7D7; border-radius: 4px; padding: 8px;">
    </div>
    <ejs-mention [dataSource]="userData" [target]="mentionTarget"></ejs-mention>
  `
})
export class AppComponent {
  public userData: string[] = ['Selma Rose', 'Garth', 'Robert', 'William', 'Joseph'];
  public mentionTarget: string = '#mentionElement';
}

Install the package:

⚠️ Security note: Pin the package to a specific version to prevent unintended upgrades to potentially compromised releases. Verify the installed version against your lockfile (package-lock.json / yarn.lock) after installation.
ng add @syncfusion/ej2-angular-dropdowns@33.1.44

Add CSS (styles.css):

⚠️ Security note: These imports are resolved from node_modules at build time. Ensure the installed Syncfusion packages match your pinned versions in package-lock.json or yarn.lock before building. Do not source these files from a CDN without Subresource Integrity (SRI) hashes.
@import '../node_modules/@syncfusion/ej2-base/styles/material3.css';
@import '../node_modules/@syncfusion/ej2-buttons/styles/material3.css';
@import '../node_modules/@syncfusion/ej2-popups/styles/material3.css';
@import '../node_modules/@syncfusion/ej2-lists/styles/material3.css';
@import '../node_modules/@syncfusion/ej2-angular-dropdowns/styles/material3.css';

Common Patterns

Pattern 1: Object Data with Field Mapping

public userData: { [key: string]: Object }[] = [
  { Name: 'Selma Rose', EmailId: 'selma@gmail.com' },
  { Name: 'Maria', EmailId: 'maria@gmail.com' },
  { Name: 'Robert', EmailId: 'robert@gmail.com' }
];
public fields: Object = { text: 'Name' };
public mentionTarget: string = '#mentionElement';
<ejs-mention [dataSource]="userData" [fields]="fields" [target]="mentionTarget"></ejs-mention>

Pattern 2: Custom Trigger Character with showMentionChar

<ejs-mention
  [dataSource]="userData"
  [target]="mentionTarget"
  [mentionChar]="'#'"
  [showMentionChar]="true">
</ejs-mention>

Pattern 3: Remote Data with Popup Width

⚠️ Security note: Replace the URL below with your own API endpoint. Avoid enabling crossDomain: true unless your server explicitly requires it and you have validated the CORS policy. Always sanitize or restrict user input before it is forwarded to remote sources, and verify installed packages against your lockfile (package-lock.json / yarn.lock).
import { DataManager, ODataV4Adaptor, Query } from '@syncfusion/ej2-data';

public searchData: DataManager = new DataManager({
  url: 'https://your-api-endpoint.example.com/api/',
  adaptor: new ODataV4Adaptor
  // crossDomain: true — enable only if your server requires it and CORS is properly configured
});
public query: Query = new Query().from('Customers').select(['ContactName', 'CustomerID']).take(6);
public fields: Object = { text: 'ContactName', value: 'CustomerID' };
public popupWidth: string = '250px';

Pattern 4: Allow Spaces in Mention Search

<ejs-mention
  [dataSource]="userData"
  [fields]="fields"
  [allowSpaces]="true"
  [target]="mentionTarget">
</ejs-mention>

Key Properties Quick Reference

PropertyTypeDefaultPurpose
targetHTMLElement \stringTarget element where mention suggestions appear
dataSourceArray \DataManager[]Source data for suggestions
fieldsFieldSettingsModel{text: null, value: null}Map data columns to component
mentionCharstring'@'Character that triggers the suggestion popup
showMentionCharbooleanfalseShow trigger character with inserted text
suffixTextstringnullText appended after the selected item
filterTypeFilterType'Contains'How suggestions are matched
minLengthnumber0Minimum chars to trigger filtering
allowSpacesbooleanfalseAllow spaces in mid-mention search
suggestionCountnumber25Max number of suggestions shown
debounceDelaynumber300Delay (ms) before filtering fires
sortOrderSortOrder'None'Sort suggestions order
popupHeightstring \number'300px'Popup list height
popupWidthstring \number'auto'Popup list width
highlightbooleanfalseHighlight matched characters
ignoreCasebooleantrueCase-insensitive search
ignoreAccentbooleanIgnore diacritics in search
requireLeadingSpacebooleantrueRequire space before trigger character
cssClassstringnullCustom CSS class(es) on the component
localestring'en-US'Localization culture
enableRtlbooleanfalseRight-to-left rendering
enablePersistencebooleanfalsePersist state between reloads
zIndexnumber1000Popup z-index

Workflow Decision Tree

Need to implement Mention / @mention tagging?
│
├─ What's your data source?
│   ├─ Local strings/array  → See Data Binding: "Array of simple data"
│   ├─ Local objects        → See Data Binding: "Array of JSON data" + fields mapping
│   └─ Remote API           → See Data Binding: "Binding remote data"
│
├─ Custom trigger character (not @)?
│   └─ YES → [mentionChar]="'#'" (or any single char)
│
├─ Show trigger char in inserted text?
│   └─ YES → [showMentionChar]="true"
│
├─ Multi-word names (e.g., "John Doe")?
│   └─ YES → [allowSpaces]="true"
│
├─ Custom item layout in popup?
│   └─ YES → See Templates: itemTemplate / displayTemplate
│
├─ Need sorted suggestions?
│   └─ YES → See Sorting & Disabled Items: sortOrder
│
├─ Some items should not be selectable?
│   └─ YES → See Sorting & Disabled Items: fields.disabled / disableItem
│
├─ Filtering behavior?
│   ├─ By default (Contains)  → No extra config
│   ├─ StartsWith / EndsWith  → filterType="StartsWith"
│   └─ Minimum typed chars    → [minLength]="3"
│
└─ Need accessibility or localization?
    └─ YES → See Accessibility & Localization reference

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.11%
按下载量换算60

Claude

32.07%
按下载量换算58

Cursor

20.44%
按下载量换算37

Gemini CLI

10.45%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills