weblabormx/world-ui
最新稳定版本:2.0.0
Composer 安装命令:
composer require weblabormx/world-ui
包简介
UI Component library built on top of WireUI that implement Weblabor World service out of the box
README 文档
README
World UI is a component library, based on WireUI for easy implementation with Weblabor World API.
Install
Install the package through composer using:
composer require weblabormx/world-ui
Then, configure on your config/services.php your World API Token.
[
//...
'weblabor' => [
'world' => [
'token' => env('WEBLABOR_WORLD_TOKEN'),
// 'endpoint' => env('WEBLABOR_WORLD_ENDPOINT') // OPTIONAL
]
]
];
Publishing assets
You can optionally publish the wireui.php config file using:
php artisan vendor:publish --tag='worldui.config'
Default config:
<?php use WeblaborMx\WorldUi\Components; return [ 'endpoint' => rtrim(config('services.weblabor.world.endpoint', env('WEBLABOR_WORLD_ENDPOINT', 'https://world.weblabor.mx/api')), '/'), 'api_token' => config('services.weblabor.world.token', env('WEBLABOR_WORLD_TOKEN')), 'components' => [ [ 'class' => Components\CountrySelect::class, 'alias' => 'country-select' ], [ 'class' => Components\DivisionSelect::class, 'alias' => 'division-select' ], [ 'class' => Components\DivisionSearchSelect::class, 'alias' => 'division-search' ], ] ];
Components
Country Select
Example:
<x-country-select
wire:model="country"
wire:key="country-select"
label="Country"
placeholder="Your country" />
Division Select
Unique Fields
- id: The ID of the division to get the children from
- regex: An optional regex to match the names of the countries
Example:
<x-division-select
label="State"
id="{{ $country }}"
wire:key="state-select"
placeholder="Your state" />
Search Select
Unique Fields
- search: Content to be searched
- parentId: Division ID to filter the results
Example:
<x-input label="Search"
wire:model.lazy="search"
placeholder="Your search" />
<x-division-search
search="{{ $search }}"
parentId="{{ $country }}"
wire:key="search-select"
wire:target="search"
wire:loading.remove />
统计信息
- 总下载量: 135
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2023-08-15