nativescript-community / ui-collectionview

Allows you to easily add a collection view (grid list view) to your projects. Supports vertical and horizontal modes, templating, and more.
Apache License 2.0
59 stars 18 forks source link
This monorepo contains multiple packages:

alignedflowlayout

@nativescript-community/ui-collectionview-alignedflowlayout

Downloads per month NPM Version

A NativeScript CollectionView For Custom aligned Layout Plugin.


Table of Contents

Installation

Run the following command from the root of your project:

ns plugin add @nativescript-community/ui-collectionview-alignedflowlayout

Configuration

To install the plugin run:

import install from '@nativescript-community/ui-collectionview-alignedflowlayout';
install();

then simply use the layoutStyle="align" as a collectionview property You can then use layoutHorizontalAlignment(left, right, justified) and verticalHorizontalAlignment (top, bottom, center)

Demos and Development

Repo Setup

The repo uses submodules. If you did not clone with --recursive then you need to call

git submodule update --init

The package manager used to install and link dependencies must be pnpm or yarn. npm wont work.

To develop and test: if you use yarn then run yarn if you use pnpm then run pnpm i

Interactive Menu:

To start the interactive menu, run npm start (or yarn start or pnpm start). This will list all of the commonly used scripts.

Build

npm run build.all

WARNING: it seems yarn build.all wont always work (not finding binaries in node_modules/.bin) which is why the doc explicitly uses npm run

Demos

npm run demo.[ng|react|svelte|vue].[ios|android]

npm run demo.svelte.ios # Example

Demo setup is a bit special in the sense that if you want to modify/add demos you dont work directly in demo-[ng|react|svelte|vue] Instead you work in demo-snippets/[ng|react|svelte|vue] You can start from the install.ts of each flavor to see how to register new demos

Contributing

Update repo

You can update the repo files quite easily

First update the submodules

npm run update

Then commit the changes Then update common files

npm run sync

Then you can run yarn|pnpm, commit changed files if any

Update readme

npm run readme

Update doc

npm run doc

Publish

The publishing is completely handled by lerna (you can add -- --bump major to force a major release) Simply run

npm run publish

modifying submodules

The repo uses https:// for submodules which means you won't be able to push directly into the submodules. One easy solution is t modify ~/.gitconfig and add

[url "ssh://git@github.com/"]
    pushInsteadOf = https://github.com/

Questions

If you have any questions/issues/comments please feel free to create an issue or start a conversation in the NativeScript Community Discord.

collectionview

@nativescript-community/ui-collectionview

Downloads per month NPM Version

Allows you to easily add a collection view (grid list view) to your projects. Supports vertical and horizontal modes, templating, and more.


| | | | --- | ----------- | | iOS Demo | Android Demo | [](#table-of-contents) [](#table-of-contents) ## Table of Contents * [Installation](#installation) * [API](#api) * [Events](#events) * [Properties](#properties) * [Methods](#methods) * [Usage](#usage) * [Simple Example](#simple-example) * [Templates Example](#templates-example) * [Usage in Angular](#usage-in-angular) * [Simple Example](#simple-example-1) * [Templates Example](#templates-example-1) * [Usage in Vue 3](#usage-in-vue-3) * [Simple Example](#simple-example-2) * [Usage in Vue 2](#usage-in-vue-2) * [Simple Example](#simple-example-3) * [Usage in Svelte](#usage-in-svelte) * [Simple Example](#simple-example-4) * [Usage in React](#usage-in-react) * [Simple Example](#simple-example-5) * [Demos](#demos) * [Demos and Development](#demos-and-development) * [Repo Setup](#repo-setup) * [Build](#build) * [Demos](#demos-1) * [Contributing](#contributing) * [Update repo ](#update-repo-) * [Update readme ](#update-readme-) * [Update doc ](#update-doc-) * [Publish](#publish) * [modifying submodules](#modifying-submodules) * [Questions](#questions) [](#installation) [](#installation) ## Installation Run the following command from the root of your project: `ns plugin add @nativescript-community/ui-collectionview` [](#api) [](#api) ## API ### Events | Property | Description | | ------------------- | ---------------------------------------------------------------------------- | | itemLoading | Triggered when generating an item in the CollectionView. | | itemTap | Triggered when the user taps on an item in the CollectionView. | | loadMoreItems | Triggered when the generated items reached the end of the items property. | | scroll | Triggered on collectionview scroll. | | scrollEnd | Triggered on collectionview scroll end. | | itemReorderStarting | Triggered when a reorder is starting. Changing the `returnValue` of the event data allows you to cancel it | | itemReorderStarted | Triggered when a reorder started. | | itemReordered | Triggered when a reorder finished. | | dataPopulated | Triggered when a refresh has been called. | ### Properties | Property | Type | Description | | ------------- | ------------------------------------------------ | ------------------------------------------------------- | | ios | [UICollectionView](https://tinyurl.com/y4ugbfgc) | Gets the native iOS view that represents the user interface for this component. Valid only when running on iOS. | | android | [android.support.v7.widget.RecyclerView](https://tinyurl.com/lvqebpq) | Gets the native android widget that represents the user interface for this component. Valid only when running on Android OS. | | items | `array` or `ItemsSource` | Gets or sets the items collection of the CollectionView. The items property can be set to an array or an object defining length and getItem(index) method. | | itemTemplate | `string` | Gets or sets the item template of the CollectionView. | | rowHeight | `PercentLength` | Gets or sets the height for every row in the CollectionView. | | colWidth | `PercentLength` | Gets or sets the width for every column in the CollectionView. | | spanSize | `function` | Triggered when an item is loaded. Returns the number of columns that the element should occupy taking into account `colWidth` when the device is vertical and `rowHeight` when horizontal. Parameters: (item, index: number). | | scrollOffset | `number` | Gets the current scroll. | | orientation | `vertical` or `horizontal` | Sets the orientation of the CollectionView. Defaults to `vertical`. | ### Methods | Name | Return | Description | | ------------------------------------------------------ | ------ | ---------------------------------------------------------------------------------------------------------------------- | | refresh() | `void` | Forces the CollectionView to reload all its items. | | refreshVisibleItem() | `void` | Forces CollectionView to reload visible items. | | scrollToIndex(index: number, animated: boolean = true) | `void` | Scrolls the CollectionView to the item with the given index. This can be either animated or not. Defaults to animated. | | isItemAtIndexVisible(index: number) | `boolean` | Returns a boolean indicating whether the item is visible. | [](#usage) [](#usage) ## Usage You need to add `xmlns:gv="@nativescript-community/ui-collectionview"` to your page tag, and then simply use `` in order to add the widget to your page. Use `` to specify the template for each cell: ### Simple Example Create a simple array of objects in your JS/TS file. ```typescript const items = [ { index: 0, name: 'TURQUOISE', color: '#1abc9c' }, { index: 1, name: 'EMERALD', color: '#2ecc71' }, { index: 2, name: 'PETER RIVER', color: '#3498db' }, { index: 3, name: 'AMETHYST', color: '#9b59b6' }, { index: 4, name: 'WET ASPHALT', color: '#34495e' }, { index: 5, name: 'GREEN SEA', color: '#16a085' }, { index: 6, name: 'NEPHRITIS', color: '#27ae60' }, { index: 7, name: 'BELIZE HOLE', color: '#2980b9' }, { index: 8, name: 'WISTERIA', color: '#8e44ad' }, { index: 9, name: 'MIDNIGHT BLUE', color: '#2c3e50' } ]; ``` ```xml ``` ### Templates Example You can also have multiple templates the same way you add them in the builtin `ListView` control: ```xml ``` ```ts export function templateSelector(item: any, index: number, items: any) { return index % 2 === 0 ? "even" : "odd"; } ``` [](#usage-in-angular) [](#usage-in-angular) ## Usage in Angular Import the module into your project. ```typescript import { CollectionViewModule } from '@nativescript-community/ui-collectionview/angular'; @NgModule({ imports: [ CollectionViewModule, ], }) ``` ### Simple Example Create a simple array of objects in your Typescript file. ```typescript items = [ { index: 0, name: 'TURQUOISE', color: '#1abc9c' }, { index: 1, name: 'EMERALD', color: '#2ecc71' }, { index: 2, name: 'PETER RIVER', color: '#3498db' }, { index: 3, name: 'AMETHYST', color: '#9b59b6' }, { index: 4, name: 'WET ASPHALT', color: '#34495e' }, { index: 5, name: 'GREEN SEA', color: '#16a085' }, { index: 6, name: 'NEPHRITIS', color: '#27ae60' }, { index: 7, name: 'BELIZE HOLE', color: '#2980b9' }, { index: 8, name: 'WISTERIA', color: '#8e44ad' }, { index: 9, name: 'MIDNIGHT BLUE', color: '#2c3e50' } ]; ``` Add the following to your component HTML. ```xml ``` ### Templates Example If you want to use multiple item templates, you can do that very similarly to how you do it for the builtin `ListView` control. The only difference is that due to current limitations instead of using the `nsTemplateKey` directive you need to use the `cvTemplateKey` directive that comes from the CollectionView. (In a future version, once the framework allows it this will be changed and you will be able to use the same directive for the `CollectionView` as well) ```html ``` For a more complete example, look in the `demo-ng` directory. [](#usage-in-vue-3) [](#usage-in-vue-3) ## Usage in Vue 3 Register the plugin in your `app.ts`. ```ts import CollectionView from '@nativescript-community/ui-collectionview/vue3'; const app = createApp(YourComponent); app.use(CollectionView); app.start(); ``` ### Simple Example In your component, add the following to make a simple array of objects. ```html ``` Then add the following XML to your component. ```xml ``` For a more complete example, look in the `demo-vue3` and [demo-snippets/vue3](https://github.com/nativescript-community/ui-collectionview/tree/master/demo-snippets/vue3) directory. [](#usage-in-vue-2) [](#usage-in-vue-2) ## Usage in Vue 2 Register the plugin in your `app.ts`. ```typescript import CollectionView from '@nativescript-community/ui-collectionview/vue'; Vue.use(CollectionView); ``` ### Simple Example In your component, add the following to make a simple array of objects. ```typescript export default { // ... data() { const items = [ { index: 0, name: 'TURQUOISE', color: '#1abc9c' }, { index: 1, name: 'EMERALD', color: '#2ecc71' }, { index: 2, name: 'PETER RIVER', color: '#3498db' }, { index: 3, name: 'AMETHYST', color: '#9b59b6' }, { index: 4, name: 'WET ASPHALT', color: '#34495e' }, { index: 5, name: 'GREEN SEA', color: '#16a085' }, { index: 6, name: 'NEPHRITIS', color: '#27ae60' }, { index: 7, name: 'BELIZE HOLE', color: '#2980b9' }, { index: 8, name: 'WISTERIA', color: '#8e44ad' }, { index: 9, name: 'MIDNIGHT BLUE', color: '#2c3e50' } ]; return { itemList: items }; }, // ... }; ``` Then add the following XML to your component. ```xml ``` For a more complete example, look in the `demo-vue` directory. [](#usage-in-svelte) [](#usage-in-svelte) ## Usage in Svelte Register the plugin in your `app.ts`. ```typescript import CollectionViewElement from '@nativescript-community/ui-collectionview/svelte'; CollectionViewElement.register(); ``` ### Simple Example In you component, add the following to import Svelte `Templates` and to create a simple array of objects. ```typescript import { Template } from 'svelte-native/components'; const items = [ { index: 0, name: 'TURQUOISE', color: '#1abc9c' }, { index: 1, name: 'EMERALD', color: '#2ecc71' }, { index: 2, name: 'PETER RIVER', color: '#3498db' }, { index: 3, name: 'AMETHYST', color: '#9b59b6' }, { index: 4, name: 'WET ASPHALT', color: '#34495e' }, { index: 5, name: 'GREEN SEA', color: '#16a085' }, { index: 6, name: 'NEPHRITIS', color: '#27ae60' }, { index: 7, name: 'BELIZE HOLE', color: '#2980b9' }, { index: 8, name: 'WISTERIA', color: '#8e44ad' }, { index: 9, name: 'MIDNIGHT BLUE', color: '#2c3e50' } ]; ``` Then add the following XML to your component: ```xml ``` For a more complete example, look in the `demo-svelte` directory. [](#usage-in-react) [](#usage-in-react) ## Usage in React Register the plugin in your `app.ts`. ```typescript import { registerCollectionView } from '@nativescript-community/ui-collectionview/react'; registerCollectionView(); ``` ### Simple Example In your component, add the following code to create a simple list. ```tsx import { CollectionView } from '@nativescript-community/ui-collectionview/react'; const items = [ { index: 0, name: 'TURQUOISE', color: '#1abc9c' }, { index: 1, name: 'EMERALD', color: '#2ecc71' }, { index: 2, name: 'PETER RIVER', color: '#3498db' }, { index: 3, name: 'AMETHYST', color: '#9b59b6' }, { index: 4, name: 'WET ASPHALT', color: '#34495e' }, { index: 5, name: 'GREEN SEA', color: '#16a085' }, { index: 6, name: 'NEPHRITIS', color: '#27ae60' }, { index: 7, name: 'BELIZE HOLE', color: '#2980b9' }, { index: 8, name: 'WISTERIA', color: '#8e44ad' }, { index: 9, name: 'MIDNIGHT BLUE', color: '#2c3e50' } ]; interface Item { index: number; name: string; color: string; } const cellFactory = (item: Item) => (
swipemenu

@nativescript-community/ui-collectionview-swipemenu

Downloads per month NPM Version

A NativeScript CollectionView SwipeMenu Plugin.


[](#table-of-contents) [](#table-of-contents) ## Table of Contents * [Installation](#installation) * [Configuration](#configuration) * [API](#api) * [CollectionView extensions](#collectionview-extensions) * [Events](#events) * [Propert](#propert) * [Methods](#methods) * [Usage](#usage) * [Simple Example](#simple-example) * [Demos and Development](#demos-and-development) * [Repo Setup](#repo-setup) * [Build](#build) * [Demos](#demos) * [Contributing](#contributing) * [Update repo ](#update-repo-) * [Update readme ](#update-readme-) * [Update doc ](#update-doc-) * [Publish](#publish) * [modifying submodules](#modifying-submodules) * [Questions](#questions) [](#installation) [](#installation) ## Installation Run the following command from the root of your project: `ns plugin add @nativescript-community/ui-collectionview-swipemenu` [](#configuration) [](#configuration) ## Configuration To install the plugin run: ```typescript import install from '@nativescript-community/ui-collectionview-swipemenu'; install(); ``` [](#api) [](#api) ## API [](#collectionview-extensions) [](#collectionview-extensions) ## CollectionView extensions ### Events | Property | Description | | ------------------- | ---------------------------------------------------------------------------- | | swipeMenuOpen | Triggered when a menu is opened in the CollectionView. | | swipeMenuClose | Triggered when a menu is closed in the CollectionView. | ### Propert ### Methods | Name | Return | Description | | ------------------------------------------------------ | ------ | ---------------------------------------------------------------------------------------------------------------------- | | closeCurrentMenu() | `void` | Close any opened menu in the CollectionView. | [](#usage) [](#usage) ## Usage First very important note. For this plugin to work correctly, collectionview items must be an object! The plugin will add `startingSide` property to your items as needed to keep knowledge of which menu is opened and notify the template `SwipeMenu`. Might change in the future You need to add `xmlns:gvs="@nativescript-community/ui-collectionview-swipemenu"` to your page tag, and then simply use `` in order to add the widget to your page. Use `` to specify the template for each cell: ### Simple Example Create a simple array of objects in your JS/TS file. ```typescript const items = [ { index: 0, name: 'TURQUOISE', color: '#1abc9c' }, { index: 1, name: 'EMERALD', color: '#2ecc71' }, { index: 2, name: 'PETER RIVER', color: '#3498db' }, { index: 3, name: 'AMETHYST', color: '#9b59b6' }, { index: 4, name: 'WET ASPHALT', color: '#34495e' }, { index: 5, name: 'GREEN SEA', color: '#16a085' }, { index: 6, name: 'NEPHRITIS', color: '#27ae60' }, { index: 7, name: 'BELIZE HOLE', color: '#2980b9' }, { index: 8, name: 'WISTERIA', color: '#8e44ad' }, { index: 9, name: 'MIDNIGHT BLUE', color: '#2c3e50' } ]; ``` ```xml ``` [](#demos-and-development) [](#demos-and-development) ## Demos and Development ### Repo Setup The repo uses submodules. If you did not clone with ` --recursive` then you need to call ``` git submodule update --init ``` The package manager used to install and link dependencies must be `pnpm` or `yarn`. `npm` wont work. To develop and test: if you use `yarn` then run `yarn` if you use `pnpm` then run `pnpm i` **Interactive Menu:** To start the interactive menu, run `npm start` (or `yarn start` or `pnpm start`). This will list all of the commonly used scripts. ### Build ```bash npm run build.all ``` WARNING: it seems `yarn build.all` wont always work (not finding binaries in `node_modules/.bin`) which is why the doc explicitly uses `npm run` ### Demos ```bash npm run demo.[ng|react|svelte|vue].[ios|android] npm run demo.svelte.ios # Example ``` Demo setup is a bit special in the sense that if you want to modify/add demos you dont work directly in `demo-[ng|react|svelte|vue]` Instead you work in `demo-snippets/[ng|react|svelte|vue]` You can start from the `install.ts` of each flavor to see how to register new demos [](#contributing) [](#contributing) ## Contributing ### Update repo You can update the repo files quite easily First update the submodules ```bash npm run update ``` Then commit the changes Then update common files ```bash npm run sync ``` Then you can run `yarn|pnpm`, commit changed files if any ### Update readme ```bash npm run readme ``` ### Update doc ```bash npm run doc ``` ### Publish The publishing is completely handled by `lerna` (you can add `-- --bump major` to force a major release) Simply run ```shell npm run publish ``` ### modifying submodules The repo uses https:// for submodules which means you won't be able to push directly into the submodules. One easy solution is t modify `~/.gitconfig` and add ``` [url "ssh://git@github.com/"] pushInsteadOf = https://github.com/ ``` [](#questions) [](#questions) ## Questions If you have any questions/issues/comments please feel free to create an issue or start a conversation in the [NativeScript Community Discord](https://nativescript.org/discord).
waterfall

@nativescript-community/ui-collectionview-waterfall

Downloads per month NPM Version

A NativeScript CollectionView waterfall Plugin.


[](#table-of-contents) [](#table-of-contents) ## Table of Contents * [Installation](#installation) * [Configuration](#configuration) * [Demos and Development](#demos-and-development) * [Repo Setup](#repo-setup) * [Build](#build) * [Demos](#demos) * [Contributing](#contributing) * [Update repo ](#update-repo-) * [Update readme ](#update-readme-) * [Update doc ](#update-doc-) * [Publish](#publish) * [modifying submodules](#modifying-submodules) * [Questions](#questions) [](#installation) [](#installation) ## Installation Run the following command from the root of your project: `ns plugin add @nativescript-community/ui-collectionview-waterfall` [](#configuration) [](#configuration) ## Configuration To install the plugin run: ```typescript import install from '@nativescript-community/ui-collectionview-waterfall'; install(); ``` then simply use the `layoutStyle="waterfall"` as a collectionview property [](#demos-and-development) [](#demos-and-development) ## Demos and Development ### Repo Setup The repo uses submodules. If you did not clone with ` --recursive` then you need to call ``` git submodule update --init ``` The package manager used to install and link dependencies must be `pnpm` or `yarn`. `npm` wont work. To develop and test: if you use `yarn` then run `yarn` if you use `pnpm` then run `pnpm i` **Interactive Menu:** To start the interactive menu, run `npm start` (or `yarn start` or `pnpm start`). This will list all of the commonly used scripts. ### Build ```bash npm run build.all ``` WARNING: it seems `yarn build.all` wont always work (not finding binaries in `node_modules/.bin`) which is why the doc explicitly uses `npm run` ### Demos ```bash npm run demo.[ng|react|svelte|vue].[ios|android] npm run demo.svelte.ios # Example ``` Demo setup is a bit special in the sense that if you want to modify/add demos you dont work directly in `demo-[ng|react|svelte|vue]` Instead you work in `demo-snippets/[ng|react|svelte|vue]` You can start from the `install.ts` of each flavor to see how to register new demos [](#contributing) [](#contributing) ## Contributing ### Update repo You can update the repo files quite easily First update the submodules ```bash npm run update ``` Then commit the changes Then update common files ```bash npm run sync ``` Then you can run `yarn|pnpm`, commit changed files if any ### Update readme ```bash npm run readme ``` ### Update doc ```bash npm run doc ``` ### Publish The publishing is completely handled by `lerna` (you can add `-- --bump major` to force a major release) Simply run ```shell npm run publish ``` ### modifying submodules The repo uses https:// for submodules which means you won't be able to push directly into the submodules. One easy solution is t modify `~/.gitconfig` and add ``` [url "ssh://git@github.com/"] pushInsteadOf = https://github.com/ ``` [](#questions) [](#questions) ## Questions If you have any questions/issues/comments please feel free to create an issue or start a conversation in the [NativeScript Community Discord](https://nativescript.org/discord).

Demos and Development

Repo Setup

The repo uses submodules. If you did not clone with --recursive then you need to call

git submodule update --init

The package manager used to install and link dependencies must be pnpm or yarn. npm wont work.

To develop and test: if you use yarn then run yarn if you use pnpm then run pnpm i

Interactive Menu:

To start the interactive menu, run npm start (or yarn start or pnpm start). This will list all of the commonly used scripts.

Build

npm run build.all

WARNING: it seems yarn build.all wont always work (not finding binaries in node_modules/.bin) which is why the doc explicitly uses npm run

Demos

npm run demo.[ng|react|svelte|vue].[ios|android]

npm run demo.svelte.ios # Example

Demo setup is a bit special in the sense that if you want to modify/add demos you dont work directly in demo-[ng|react|svelte|vue] Instead you work in demo-snippets/[ng|react|svelte|vue] You can start from the install.ts of each flavor to see how to register new demos

Contributing

Update repo

You can update the repo files quite easily

First update the submodules

npm run update

Then commit the changes Then update common files

npm run sync

Then you can run yarn|pnpm, commit changed files if any

Update readme

npm run readme

Update doc

npm run doc

Publish

The publishing is completely handled by lerna (you can add -- --bump major to force a major release) Simply run

npm run publish

modifying submodules

The repo uses https:// for submodules which means you won't be able to push directly into the submodules. One easy solution is t modify ~/.gitconfig and add

[url "ssh://git@github.com/"]
    pushInsteadOf = https://github.com/

Questions

If you have any questions/issues/comments please feel free to create an issue or start a conversation in the NativeScript Community Discord.