スキル一覧に戻る
griffnb

filters-building

by griffnb

0🍴 0📅 2026年1月19日
GitHubで見るManusで実行

SKILL.md


name: "filters-building" description: "Building table filters with query parameters, model search, and supported query patterns"

Filters Building Skill

Filter Types Quick Reference

type FilterType =
  | "simple-select"              // Constants (single)
  | "multi-select"               // Constants (multiple)
  | "model-select"               // Model relationship (small lists)
  | "model-multi-select"         // Model relationships (small lists)
  | "model-search-select"        // Model relationship (large lists)
  | "model-search-multi-select"  // Model relationships (large lists)
  | "text"                       // Text input
  | "email"                      // Email input
  | "number"                     // Number input
  | "checkbox"                   // Boolean 0/1
  | "date-range"                 // Date range picker
  | "gap";                       // Visual spacing

Field Definition

Field can be string OR object:

// Simple string - used for all three
field: "organization_id"

// Complex object for custom queries
field: {
  queryParam: "organization_type_id",       // URL query param
  postgresColumn: "organizations.type",     // Postgres column
  elasticsearchColumn: "organization_type_id" // ES column
}

Supported Query Patterns

Query ParameterSQL ResultDescription
?name=johnWHERE account.name = 'john'Exact match
?name[]=john&name[]=janeWHERE account.name IN('john','jane')Multiple values
?not:name=johnWHERE account.name != 'john'Not equal
?q:name=johnWHERE LOWER(account.name) ILIKE '%john%'Like search
?gt:age=25WHERE account.age > 25Greater than
?lt:age=65WHERE account.age < 65Less than
?between:age=25|65WHERE account.age >= 25 AND account.age <= 65Range

Gap (Section Separator)

{
  type: "gap",
  placeholder: "",
  label: "Organization Filters",
  field: "",
}

Text Filter

{
  placeholder: "Search Name",
  type: "text",
  field: "name", // Uses q:name for ILIKE search
}

Checkbox Filter

{
  placeholder: "Is Active",
  type: "checkbox",
  field: "is_active",
  checkedValue: "1",
  uncheckedValue: "",
}

Simple Select (Constants)

import { constants } from "@/models/constants";

{
  placeholder: "Status",
  type: "simple-select",
  field: "status",
  options: constants.asset.status,
}

Multi Select (Constants)

{
  placeholder: "Organization Type",
  type: "multi-select",
  field: {
    queryParam: "organization_type_id",
    postgresColumn: "organizations.type",
    elasticsearchColumn: "organization_type_id",
  },
  options: constants.organization.type,
}

Model Select (Small Lists)

For < 50 options:

{
  placeholder: "Organization",
  type: "model-select",
  field: "organization_id",
  modelName: "organization",
  modelDisplayField: "label",
  modelSearchFilters: { disabled: "0" },
}

Model Multi Select (Small Lists)

{
  placeholder: "Tags",
  type: "model-multi-select",
  field: "tag_ids",
  modelName: "tag",
  modelDisplayField: "label",
  modelSearchFilters: { disabled: "0" },
}

Model Search Select (Large Lists)

For > 50 options:

{
  placeholder: "Organization",
  type: "model-search-select",
  field: "organization_id",
  modelName: "organization",
  modelDisplayField: "label",
  modelSearchParam: "q",
  modelSearchFilters: { disabled: "0" },
}

Model Search Multi Select (Large Lists)

{
  placeholder: "Organizations",
  type: "model-search-multi-select",
  field: "organization_id",
  modelName: "organization",
  modelDisplayField: "label",
  modelSearchParam: "q",
  modelSearchFilters: { disabled: "0" },
}

Date Range Filter

{
  placeholder: "Created Date",
  type: "date-range",
  field: "created_at",
}

Complete Example

import { IFilterField } from "@/ui/common/components/types/filters";
import { constants } from "@/models/constants";

export const assetFilters: IFilterField[] = [
  // Section 1: Basic Filters
  {
    placeholder: "Search Name",
    type: "text",
    field: "name",
  },
  {
    placeholder: "Status",
    type: "multi-select",
    field: "status",
    options: constants.asset.status,
  },
  {
    placeholder: "Is Active",
    type: "checkbox",
    field: "is_active",
    checkedValue: "1",
    uncheckedValue: "",
  },

  // Gap for visual separation
  {
    type: "gap",
    placeholder: "",
    label: "Organization Filters",
    field: "",
  },

  // Section 2: Relationships
  {
    placeholder: "Organization",
    type: "model-search-multi-select",
    field: "organization_id",
    modelName: "organization",
    modelDisplayField: "label",
    modelSearchParam: "q",
    modelSearchFilters: { disabled: "0" },
  },
  {
    placeholder: "Organization Type",
    type: "multi-select",
    field: {
      queryParam: "organization_type_id",
      postgresColumn: "organizations.type",
      elasticsearchColumn: "organization_type_id",
    },
    options: constants.organization.type,
  },

  // Gap for dates section
  {
    type: "gap",
    placeholder: "",
    label: "Date Filters",
    field: "",
  },

  // Section 3: Dates
  {
    placeholder: "Created Date",
    type: "date-range",
    field: "created_at",
  },
];

Best Practices

  1. Group related filters with gap separators
  2. Use search variants for lists > 50 items
  3. Always use label as modelDisplayField (modify model if needed)
  4. Always use q as modelSearchParam for consistency
  5. Add modelSearchFilters to exclude disabled/archived records
  6. Use field objects only when postgres/ES columns differ from query param
  7. Constants are model-specific: constants.{model}.{field}

Filter Selection Guide

Data TypeCountFilter Type
Text fieldN/Atext
Email fieldN/Aemail
Number fieldN/Anumber
BooleanN/Acheckbox
DateN/Adate-range
Constants1simple-select
ConstantsManymulti-select
Model< 50model-select or model-multi-select
Model> 50model-search-select or model-search-multi-select

Key Rules

  1. Use gaps to separate logical filter sections
  2. Model filters should always filter out disabled records
  3. Use search variants for better UX with large datasets
  4. Field objects allow custom query building (see Go controller docs)
  5. Keep placeholder text concise and descriptive

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です