@trwix/nativeui
TypeScript icon, indicating that this package has built-in type declarations

1.4.6 • Public • Published

alt:V-NativeUI

This project is a (fully TypeScript compatible) port of RageMP-NativeUI Kar for alt:V. It provides a simple way to use NativeUI menus in your clientside scripts. A lot of credits to datWeazel who made the initial port of the RageMP-NativeUI.

Usage:

With bundler:

  1. Create in your package.json location a file named .npmrc and add this line:
    @durtyfree:registry=https://npm.pkg.github.com
    
  2. Install by run npm install --save @durtyfree/altv-nativeui.
  3. Add this line to top of file where you want to use NativeUI.
    import * as NativeUI from "@durtyfree/altv-nativeui";

Without bundler:

  1. Download .zip archive you want from releases page.
  2. Unpack archive in client's folder, and import like any other file:
    # nativeui-min
    import * as NativeUI from "nativeui/nativeui.min.js";
    # nativeui
    import * as NativeUi from "nativeui/nativeui.js";
    • Don't forget include nativeui folder in client-files section of your resource.cfg (if needed)

See examples folder for alt:V resource examples.

Example Menu

import * as NativeUI from 'includes/NativeUIMenu/NativeUI.mjs';

const ui = new NativeUI.Menu("NativeUI Test", "Test Subtitle", new NativeUI.Point(50, 50));
ui.AddItem(new NativeUI.UIMenuListItem(
  	"List Item",
   	"Description for List Item",
   	new NativeUI.ItemsCollection(["Item 1", "Item 2", "Item 3"])
));

ui.AddItem(new NativeUI.UIMenuSliderItem(
  	"Slider Item",
   	["Fugiat", "pariatur", "consectetur", "ex", "duis", "magna", "nostrud", "et", "dolor", "laboris"],
   	5,
   	"Fugiat pariatur consectetur ex duis magna nostrud et dolor laboris est do pariatur amet sint.",
   	true
));

ui.AddItem(new NativeUI.UIMenuCheckboxItem(
  	"Checkbox Item",
   	false,
   	"Fugiat pariatur consectetur ex duis magna nostrud et dolor laboris est do pariatur amet sint."
));

ui.ItemSelect.on(item => {
  	if (item instanceof NativeUI.UIMenuListItem) {
  		alt.log(item.SelectedItem.DisplayText, item.SelectedItem.Data);
   	} else if (item instanceof NativeUI.UIMenuSliderItem) {
   		alt.log(item.Text, item.Index, item.IndexToItem(item.Index));
   	} else {
   		alt.log(item.Text);
   	}
});

Result:
Result

Readme

Keywords

Package Sidebar

Install

npm i @trwix/nativeui

Weekly Downloads

1

Version

1.4.6

License

Apache-2.0

Unpacked Size

273 kB

Total Files

40

Last publish

Collaborators

  • ghosty2004
  • adriantandara