0.0.1 • Published 6 years ago

vscodeguru v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

npm version

gzip bundle size

Angular select-guru - Lightweight all in one UI Select, Multiselect and Autocomplete

See Demos in Stackblitz

Table of contents

=================

Features

  • Custom binding to property or object

  • Custom option, label, header and footer templates

  • Virtual Scroll support with large data sets (>5000 items).

  • Infinite scroll

  • Keyboard navigation

  • Multiselect

  • Flexible autocomplete with client/server filtering

  • Custom search

  • Custom tags

  • Append to

  • Group items

  • Output events

  • Accessibility

  • Good base functionality test coverage

  • Themes

Warning

Library is under active development and may have API breaking changes for subsequent major versions after 1.0.0.

Getting started

Step 1: Install select-guru:

NPM

  

  

npm install --save @systemic/select-guru

  

  

YARN

  

  

yarn add @systemic/select-guru

  

  

Step 2: Import the SelectGuruModule and angular FormsModule module:

  

  

import { SelectGuruModule } from  '@systemic/select-guru';

  

  

import { FormsModule } from  '@angular/forms';

  

  

  

@NgModule({

  

  

declarations: [AppComponent],

  

  

imports: [SelectGuruModule, FormsModule],

  

  

bootstrap: [AppComponent]

  

  

})

  

  

export  class  AppModule {}

  

  

Step 3: Include a theme:

To allow customization and theming, select-guru bundle includes only generic styles that are necessary for correct layout and positioning. To get full look of the control, include one of the themes in your application. If you're using the Angular CLI, you can add this to your styles.scss or include it in angular-cli.json.

  

  

@import  "~@systemic/select-guru/themes/default.theme.css";

  

  

// ... or

  

  

@import  "~@systemic/select-guru/themes/material.theme.css";

  

  

  

Step 4 (Optional): Configuration

You can also set global configuration and localization messages by providing custom SELECT_GURU_DEFAULT_CONFIG

  

  

providers: [

  

  

{

  

  

provide:  SELECT_GURU_DEFAULT_CONFIG,

  

  

useValue: {

  

  

notFoundText:  'Custom not found'

  

  

}

  

  

}

  

  

]

  

  

SystemJS

If you are using SystemJS, you should also adjust your configuration to point to the UMD bundle.

In your systemjs config file, map needs to tell the System loader where to look for select-guru:

  

  

map: {

  

  

'@systemic/select-guru':  'node_modules/@systemic/select-guru/bundles/select-guru.umd.js',

  

  

}

  

  

API

Inputs

| Input | Type | Default | Required | Description |

| ------------- | ------------- | ------------- | ------------- | ------------- |

| addTag | boolean \| ((term: string) => any \| Promise<any>) | false | no | Allows to create custom options. |

| addTagText | string | Add item | no | Set custom text when using tagging |

| appendTo | string | null | no | Append dropdown to body or any other element using css selector |

| bindValue | string | - | no | Object property to use for selected model. By default binds to whole object. |

| bindLabel | string | label | no | Object property to use for label. Default label |

| closeOnSelect | boolean | true | no | Whether to close the menu when a value is selected |

| clearAllText | string | Clear all | no | Set custom text for clear all icon title |

| clearable | boolean | true | no | Allow to clear selected value. Default true|

| compareWith | (a: any, b: any) => boolean | (a, b) => a === b | no | A function to compare the option values with the selected values |

| dropdownPosition | bottom | top | auto | auto | no | Set the dropdown position on open |

| groupBy | string | Function | null | no | Allow to group items by key or function expression |

| selectableGroup | boolean | false | no | Allow to select group when groupBy is used |

| items | Array<any> | [] | yes | Items array |

| loading | boolean | - | no | You can set the loading state from the outside (e.g. async items loading) |

| loadingText | string | Loading... | no | Set custom text when for loading items |

| markFirst | boolean | true | no | Marks first item as focused when opening/filtering. Default true|

| maxSelectedItems | number | none | no | When multiple = true, allows to set a limit number of selection. |

| hideSelected | boolean | false | no | Allows to hide selected items. |

| multiple | boolean | false | no | Allows to select multiple items. |

| notFoundText | string | No items found | no | Set custom text when filter returns empty result |

| placeholder | string | - | no | Placeholder text. |

| searchable | boolean | true | no | Allow to search for value. Default true|

| searchFn | (term: string, item: any) => boolean | null | no | Allow to filter by custom search function |

| clearSearchOnAdd | boolean | true | no | Clears search input when item is selected. Default true|

| selectOnTab | boolean | false | no | Select marked dropdown item using tab. Default false|

| typeahead | Subject | - | no | Custom autocomplete or advanced filter. |

| typeToSearchText | string | Type to search | no | Set custom text when using Typeahead |

| virtualScroll | boolean | false | no | Enable virtual scroll for better performance when rendering a lot of data |

Outputs

| Output | Description |

| ------------- | ------------- |

| (add) | Fired when item is selected |

| (blur) | Fired on select blur |

| (change) | Fired on selected value change |

| (close) | Fired on select dropdown close |

| (clear) | Fired on clear icon click |

| (focus) | Fired on select focus |

| (open) | Fired on select dropdown open |

| (remove) | Fired when item is removed |

| (scrollToEnd) | Fired when scrolled to the end of items. Can be used for loading more items in chunks. |

Methods

Name | Description |

| ------------- | ------------- |

| open | Opens the select dropdown panel |

| close | Closes the select dropdown panel |

| focus | Focuses the select element |

Other

Name | Type | Description |

| ------------- | ------------- | ------------- |

| ngOptionHighlight | directive | Highlights search term in option. Accepts search term. Should be used on option element. |

Change Detection

select-guru component implements OnPush change detection which means the dirty checking checks for immutable

data types. That means if you do object mutations like:

  

  

this.items.push({id:  1, name:  'New item'})

  

  

Component will not detect a change. Instead you need to do:

  

  

this.items  = [...this.items, {id:  1, name:  'New item'}];

  

  

This will cause the component to detect the change and update. Some might have concerns that

this is a pricey operation, however, it is much more performant than running ngDoCheck and

constantly diffing the array.

Custom styles

If you are not happy with default styles you can easily override them with increased selector specificity or creating your own theme. E.g.

  

  

<select-guru  class="custom"></select-guru>

  

  
  

  

.ng-select.custom {

  

  

border:0px;

  

  

min-height:  0px;

  

  

border-radius:  0;

  

  

}

  

  

.ng-select.custom  .ng-select-container {

  

  

min-height:  0px;

  

  

border-radius:  0;

  

  

}

  

  

Validation state

By default when you use reactive forms validators or template driven forms validators css class ng-invalid will be applied on select-guru. You can show errors state by adding custom css style

  

  

select-guru.ng-invalid.ng-touched  .ng-select-container {

  

  

border-color:  #dc3545;

  

  

box-shadow:  inset  0  1px  1px  rgba(0,  0,  0,  0.075),  0  0  0  3px  #fde6e8;

  

  

}

  

  

Inspiration

This component is inspired by Ng select