tachybase_todo/packages/client/src/schemas/select/index.md
2021-08-29 00:25:28 +08:00

7.2 KiB
Raw Blame History

title nav group
Select - 选择器
title path
组件 /client
order title path
1 Schemas /client/schemas

Select - 选择器

Node Tree

// 常规选择器

// 选项值为对象类型

// 抽屉选择器

  // 可选项
  
    
      
        
      
    
  
  // 选中项详情
  
    
      // 添加其他节点
    
  


Designable Bar

Select.DesignableBar
Select.Drawer.DesignableBar
Select.Options.DesignableBar
Select.OptionTag.DesignableBar

Examples
单选
import React from 'react';
import { SchemaRenderer } from '../';

const options = [
  {
    label: '选项1',
    value: 1,
    color: 'red',
  },
  {
    label: '选项2',
    value: 2,
    color: 'blue',
  },
];

const schema = {
  type: 'object',
  properties: {
    input: {
      type: 'number',
      title: `编辑模式`,
      enum: options,
      'x-decorator': 'FormItem',
      'x-component': 'Select.Object',
      'x-reactions': {
        target: 'read',
        fulfill: {
          state: {
            value: '{{$self.value}}',
          },
        },
      },
    },
    read: {
      type: 'number',
      title: `阅读模式`,
      enum: options,
      'x-decorator': 'FormItem',
      'x-component': 'Select.Object',
      'x-read-pretty': true,
    },
  }
};

export default () => {
  return (
    <SchemaRenderer schema={schema}/>
  );
};
多选
import React from 'react';
import { SchemaRenderer } from '../';

const options = [
  {
    label: '选项1',
    value: 1,
    color: 'red',
  },
  {
    label: '选项2',
    value: 2,
    color: 'blue',
  },
];

const schema = {
  type: 'object',
  properties: {
    input: {
      interface: 'string',
      type: 'string',
      title: `编辑模式`,
      name: 'name1',
      enum: options,
      'x-decorator': 'FormItem',
      'x-component': 'Select',
      'x-component-props': {
        mode: 'tags',
      },
      'x-reactions': {
        target: 'read',
        fulfill: {
          state: {
            value: '{{$self.value}}',
          },
        },
      },
    },
    read: {
      interface: 'string',
      type: 'string',
      title: `阅读模式`,
      enum: options,
      'x-read-pretty': true,
      'x-decorator': 'FormItem',
      'x-component': 'Select',
      'x-component-props': {
        mode: 'tags',
      },
    },
  }
}

export default () => {
  return (
    <SchemaRenderer schema={schema} />
  );
};
分组
import React from 'react';
import { SchemaRenderer } from '../';

const dataSource = [
  {
    label: 'Manager',
    children: [
      {value: 'jack', label: 'Jack'},
    ],
  },
  {
    label: 'Engineer',
    children: [
      {value: 'lucy', label: 'Lucy'},
    ],
  },
];

const schema = {
  type: 'object',
  properties: {
    input: {
      interface: 'select',
      type: 'number',
      title: `编辑模式`,
      enum: dataSource,
      'x-decorator': 'FormItem',
      'x-component': 'Select',
      'x-component-props': {
        placeholder: 'please enter',
      },
      'x-reactions': {
        target: 'read',
        fulfill: {
          state: {
            value: '{{$self.value}}',
          },
        },
      },
    },
    read: {
      interface: 'select',
      type: 'number',
      title: `阅读模式`,
      required: true,
      enum: dataSource,
      'x-read-pretty': true,
      'x-decorator': 'FormItem',
      'x-component': 'Select',
      'x-component-props': {
        placeholder: 'please enter',
      },
    }
  }
};

export default () => {
  return (
    <SchemaRenderer schema={schema}/>
  );
};
Select.Object
选项值为 Object 类型
单选
import React from 'react';
import { SchemaRenderer } from '../';

const dataSource = [
  {
    id: 1,
    title: '标题1',
  },
  {
    id: 2,
    title: '标题2',
  },
  {
    id: 3,
    title: '标题3',
  },
];

const schema = {
  type: 'object',
  properties: {
    input: {
      type: 'object',
      title: `编辑模式`,
      enum: dataSource,
      'x-decorator': 'FormItem',
      'x-component': 'Select.Object',
      'x-component-props': {
        placeholder: 'please enter',
        // mode: 'tags',
        fieldNames: {
          label: 'title',
          value: 'id',
        },
      },
      'x-reactions': {
        target: 'read',
        fulfill: {
          state: {
            value: '{{$self.value}}',
          },
        },
      },
    },
    read: {
      type: 'object',
      title: `阅读模式`,
      enum: dataSource,
      'x-read-pretty': true,
      'x-decorator': 'FormItem',
      'x-component': 'Select.Object',
      'x-component-props': {
        placeholder: 'please enter',
        // mode: 'tags',
        fieldNames: {
          label: 'title',
          value: 'id',
        },
      },
    }
  }
};

export default () => {
  return (
    <SchemaRenderer schema={schema} />
  );
};
多选
import React from 'react';
import { SchemaRenderer } from '../';

const dataSource = [
  {
    id: 1,
    title: '标题1',
  },
  {
    id: 2,
    title: '标题2',
  },
  {
    id: 3,
    title: '标题3',
  },
];

const schema = {
  type: 'object',
  properties: {
    input: {
      type: 'array',
      title: `编辑模式`,
      enum: dataSource,
      'x-decorator': 'FormItem',
      'x-component': 'Select.Object',
      'x-component-props': {
        placeholder: 'please enter',
        mode: 'tags',
        fieldNames: {
          label: 'title',
          value: 'id',
        },
      },
      'x-reactions': {
        target: 'read',
        fulfill: {
          state: {
            value: '{{$self.value}}',
          },
        },
      },
    },
    read: {
      type: 'array',
      title: `阅读模式`,
      enum: dataSource,
      'x-read-pretty': true,
      'x-decorator': 'FormItem',
      'x-component': 'Select.Object',
      'x-component-props': {
        placeholder: 'please enter',
        mode: 'tags',
        fieldNames: {
          label: 'title',
          value: 'id',
        },
      },
    }
  }
};

export default () => {
  return (
    <SchemaRenderer schema={schema} />
  );
};
Select.Drawer

Schema API
Select
type 支持 string、number、object 和 arrayarray 元素可以是 string、number 或 object。如
{
  properties: {
    select: {
      type: 'string', // 也可以是 number、object、array
      'x-component': 'Select',
    }
  }
}
可以配置 dataSourceenum的 fieldNames
{
  properties: {
    select: {
      type: 'string', // 也可以是 number、object、array
      'x-component': 'Select',
      'x-component-props': {
        fieldNames: {
          label: 'label', // 标签文案
          value: 'value',
          color: 'color', // 标签颜色
          children: 'children', // 选项分组时,选项字段对应的 key
        },
      },
    },
  }
}
Select.Drawer
type 支持 object 和 arraySelect.Drawer 的可选项是以抽屉方式展开,提供了 Select.Options 和 Select.OptionTag 用于配置可选项界面和选中项详情界面。