All Projects → onlyhom → Mobile Select

onlyhom / Mobile Select

Licence: mit
手机移动端选择组件 支持是否级联/单选到多选/可异步更新数据等..

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Mobile Select

Pd Select
vue components ,like ios 3D picker style,vue 3d 选择器组件,3D滚轮
Stars: ✭ 101 (-87.82%)
Mutual labels:  mobile, picker, select, selector
React Native Modal Dropdown
A react-native dropdown/picker/selector component for both Android & iOS.
Stars: ✭ 1,103 (+33.05%)
Mutual labels:  picker, select, selector
Bottomsheet
BottomSheet dialog library for Android
Stars: ✭ 219 (-73.58%)
Mutual labels:  mobile, picker
WeightedRandomSelector
Very fast C# class for weighted random picking.
Stars: ✭ 117 (-85.89%)
Mutual labels:  selector, picker
PhoneNumberKit
Android Kotlin library to parse and format international phone numbers. Country code picker.
Stars: ✭ 124 (-85.04%)
Mutual labels:  picker, number
React Native Dropdown Picker
A single / multiple, categorizable & searchable item picker (dropdown) component for react native which supports both Android & iOS.
Stars: ✭ 230 (-72.26%)
Mutual labels:  picker, select
Calendar
📆 calendar 日历
Stars: ✭ 119 (-85.65%)
Mutual labels:  mobile, picker
react-native-select-pro
React Native dropdown (select) component developed by Mobile Reality
Stars: ✭ 79 (-90.47%)
Mutual labels:  select, picker
React Native Picker Select
🔽 A Picker component for React Native which emulates the native <select> interfaces for iOS and Android
Stars: ✭ 1,229 (+48.25%)
Mutual labels:  picker, select
Time Selector
Android Time Selector Library
Stars: ✭ 285 (-65.62%)
Mutual labels:  picker, selector
React Native Calendar Select
A component to select period from calendar like Airbnb
Stars: ✭ 279 (-66.34%)
Mutual labels:  picker, select
Flutter photo
Pick image/video from album by flutter. Support ios and android. UI by flutter, no native.
Stars: ✭ 285 (-65.62%)
Mutual labels:  picker, selector
Actual Number Picker
Android: A horizontal number picker
Stars: ✭ 206 (-75.15%)
Mutual labels:  picker, number
React Mobile Picker
An iOS like select box component for React
Stars: ✭ 180 (-78.29%)
Mutual labels:  mobile, picker
Jhform
JhForm - 自定义表单工具,更加简单,快捷的创建表单、设置页面
Stars: ✭ 108 (-86.97%)
Mutual labels:  picker, select
GWLPhotoSelector
相册照片多张选择控件
Stars: ✭ 50 (-93.97%)
Mutual labels:  selector, picker
React Native Number Please
🔢 Generate react-native pickers with range numbers.
Stars: ✭ 30 (-96.38%)
Mutual labels:  picker, number
Flutter wechat assets picker
An assets picker in WeChat style, support multi assets picking.
Stars: ✭ 398 (-51.99%)
Mutual labels:  mobile, picker
react-native-multiple-select
Customizable & Animated, Easy to Use Multiple Select Library for React Native
Stars: ✭ 31 (-96.26%)
Mutual labels:  select, picker
Vue Select
Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.
Stars: ✭ 4,115 (+396.38%)
Mutual labels:  select, selector

Mobile Select

MIT License downloads dependencies

A multi-function mobile phone scrolling selector, support single to multi-select, support multi-level cascade, provide custom callback function, provide update function redraw, relocation function, compatible pc drag and so on.

【查看中文文档】

Features

  • A mobile phone select component with native js, do not rely on any library
  • Can be passed to an ordinary array or json array
  • According to the length of the parameters passed, automatically render the corresponding number of columns, support for individual to multiple options
  • Automatic identification is cascading
  • After successful selection, provide a custom callback function callback ()
  • After each gesture sliding, it also provides a callback function transitionEnd ()
  • Provide update () function, pass the other parameters to render again
  • Provide relocation function

Preview

Use mobile phone scan code to preview:

Gif preview:

Image text

Installation

Method1 tag import:

<link rel="stylesheet" type="text/css" href="css/mobileSelect.css" />
<script src="js/mobileSelect.js" type="text/javascript"></script>

Method2 npm install:

npm install mobile-select -D

Import in your js file:

import MobileSelect from "mobile-select";

Getting Started

①Ordinary array format - Non-cascade

<div id="day"></div>
<!--Don't forget this trigger in your page-->

<script type="text/javascript">
  var mobileSelect1 = new MobileSelect({
    trigger: "#day",
    title: "单项选择",
    wheels: [
      { data: ["周日", "周一", "周二", "周三", "周四", "周五", "周六"] },
    ],
    position: [2], //Initialize positioning
  });
</script>

②Json format - Non-cascade

<div id="area"></div>

<script type="text/javascript">
  var mobileSelect2 = new MobileSelect({
    trigger: "#area",
    title: "地区选择",
    wheels: [
      {
        data: [
          { id: "1", value: "附近" },
          { id: "2", value: "上城区" },
          { id: "3", value: "下城区" },
          { id: "4", value: "江干区" },
          { id: "5", value: "拱墅区" },
          { id: "6", value: "西湖区" },
        ],
      },
      {
        data: [
          { id: "1", value: "1000米" },
          { id: "2", value: "2000米" },
          { id: "3", value: "3000米" },
          { id: "4", value: "5000米" },
          { id: "5", value: "10000米" },
        ],
      },
    ],
    callback: function (indexArr, data) {
      console.log(data); //Returns the selected json data
    },
  });
</script>
Example:

Image text

③Json format - Cascade

<div id="area2"></div>

<script type="text/javascript">
  var mobileSelect3 = new MobileSelect({
    trigger: "#area2",
    title: "地区选择-联动",
    wheels: [
      {
        data: [
          {
            id: "1",
            value: "附近",
            childs: [
              { id: "1", value: "1000米" },
              { id: "2", value: "2000米" },
              { id: "3", value: "3000米" },
              { id: "4", value: "5000米" },
              { id: "5", value: "10000米" },
            ],
          },
          { id: "2", value: "上城区" },
          { id: "3", value: "下城区" },
          { id: "4", value: "江干区" },
          { id: "5", value: "拱墅区" },
          { id: "6", value: "西湖区" },
        ],
      },
    ],
    position: [0, 1],
    callback: function (indexArr, data) {
      console.log(data); //Returns the selected json data
    },
  });
</script>
Example:

Image text

④ajax asynchronous fill data

<!-- ************ Non-cascade Format ************ -->

<div id="trigger4"></div>

<script type="text/javascript">
    var mobileSelect4 = new MobileSelect({
        trigger: '#trigger4',
        title: 'ajax fill data - non-cascade',
        wheels: [
                    {data:[
                        {id:'1',value:'choose area'},
                    ]},
                    {data:[
                        {id:'1',value:'choose distance'},
                    ]}
                ],
        callback:function(indexArr, data){
            console.log(data);
        }
    });

    $.ajax({
        type: "POST",
        url: "xxxx",
        data: {},
        dataType: "json",
        success: function(res){
            //Assume that the obtained res.data.area is:
            // [
            //     {id:'1',value:'area1'},
            //     {id:'2',value:'area2'},
            //     {id:'3',value:'area3'},
            //     {id:'4',value:'area4'}
            // ]

            //Assume that the obtained res.data.distance is:
            // [
            //     {id:'1',value:'200 metres'},
            //     {id:'2',value:'300 metres'},
            //     {id:'3',value:'400 metres'}
            // ]

            mobileSelect4.updateWheel(0, res.data.area); //Update the 0th wheel
            mobileSelect4.updateWheel(1, res.data.distance); //Update the 1th wheel
        }
    });
</script>
</script>




<!-- ************ Cascade Format ************ -->

<div id="trigger4"></div>

<script type="text/javascript">
    var mobileSelect4 = new MobileSelect({
        trigger: '#trigger4',
        title: 'ajax fill data - cascade',
        wheels: [
                    {data:[
                        {
                            id:'1',
                            value:'',
                            childs:[
                                {id:'A1',value:''},
                            ]
                        }
                    ]}
                ],
        callback:function(indexArr, data){
            console.log(data);
        }
    });

    $.ajax({
        type: "POST",
        url: "xxxx",
        data: {},
        dataType: "json",
        success: function(res){
            //Assume that the obtained res.data is:
            // [{
            //     id:'1',
            //     value:'after update',
            //     childs:[
            //         {id:'A1',value:'apple'},
            //         {id:'A2',value:'banana'},
            //         {id:'A3',value:'orange'}
            //     ]
            // }]
            mobileSelect4.updateWheels(res.data);
        }
    });
</script>

⑤How to use in vue-cli

npm install mobile-select -D
<template>
  <div>
    <div id="trigger5">vue-cli-demo</div>
  </div>
</template>

<script>
  import MobileSelect from "mobile-select";

  export default {
    mounted() {
      var mobileSelect5 = new MobileSelect({
        trigger: "#trigger5",
        title: "vue-cli-demo",
        wheels: [
          { data: ["周日", "周一", "周二", "周三", "周四", "周五", "周六"] },
        ],
        callback: function (indexArr, data) {
          console.log(data);
        },
      });
    },
  };
</script>

⑥Json format - Data field mapping

<div id="trigger6"></div>

<script type="text/javascript">
  // If your data field is named id, title, children
  // does not match the id, value, childs field name of mobileSelect
  // You can use the keyMap property for field name mapping
  var mobileSelect6 = new MobileSelect({
    trigger: "#trigger6",
    title: "keyMap",
    wheels: [
      {
        data: [
          {
            id: "1",
            title: "A",
            children: [
              { id: "A1", title: "A-a" },
              { id: "A2", title: "A-b" },
              { id: "A3", title: "A-c" },
            ],
          },
          {
            id: "1",
            title: "B",
            children: [
              { id: "B1", title: "B-a" },
              { id: "B2", title: "B-b" },
              { id: "B3", title: "B-c" },
            ],
          },
        ],
      },
    ],
    keyMap: {
      id: "id",
      value: "title",
      childs: "children",
    },
    callback: function (indexArr, data) {
      console.log(data);
    },
  });
</script>

Options

Option Default Type Description
trigger Required parameter. No default value String The id/class/tag of the trigger object
wheels Required parameter. No default value Array The data displayed on the wheel
callback function(indexArr, data){} function A callback function after successful selected, return parameter (indexArr, data)
transitionEnd function(indexArr, data){} function A callback function that after each gesture sliding, return parameter (indexArr, data)
cancel function(indexArr, data){} function A callback function after cancel selected, return last successful selected parameter (indexArr, data)
onShow function(e){} function A callback when the window is show, return object itself as parameter
onHide function(e){} function A callback when the window is hidden, return object itself as parameter
title '' String Component title
position [0,0,0,…] Array Initialize positioning
connector ' ' String When there are multiple wheels, set the connection to connect multiple values, the default value is a space
ensureBtnText '确认' String The text content of comfirm button
cancelBtnText '取消' String The text content of cancel button
ensureBtnColor '#1e83d3' String The text color of the comfirm button
cancelBtnColor '#666666' String The text color of the cancel button
titleColor '#000000' String The text color of the component title
titleBgColor '#ffffff' String The background color of the component title
textColor '#000000' String The text color of the wheels
bgColor '#ffffff' String The Wheels background color
maskOpacity 0.7 Number Mask opacity
keyMap {id:'id', value:'value', childs:'childs'} Object Field name mapping, applies to field names that do not match id, value, childs
triggerDisplayData true Boolean When the click is confirmed, the trigger's innerHtml becomes the selected data.
( If there are other elements in the trigger, you can set it to false. If you need to display data elsewhere, you can use the data returned by callback to stitch yourself )

Tips: The meaning of the parameters returned in the callback function is as follows

  • indexArr is the currently selected index array, such as[0,0,1]
  • data is the currently selected json array, such as[{id:'1',value:'hello'},{id:'2',value:'world'}]

Functions:

Function Arguments Description
show() no-argument show the compontent
hide() no-argument hide the compontent
setTitle() string Set the title of the component
locatePosition() sliderIndex, posIndex Pass the position array parameter, relocate the position of the wheel
updateWheel() sliderIndex, data Re-render the specified wheel
updateWheels() data Re-render the all wheel(Only used in cascading data forma)
getValue() no-argument Gets the value selected by the component

Tips: The function parameters need to be passed as follows

  • SliderIndex represents the index of the wheel to be modified
  • PosIndex represents the location index

The second time how to reshow the selected position?

There is an indexArr parameter in the callback callback function, which is an array that records the currently selected location:
After converting this array into a string, you can save it in a hidden field or otherwise, and pass it to the background.
Next time you open the page,
When the MobileSelect is instantiated, it reads the string, turns it into an array, passes it to position, and completes the initialization position.

Demo of use the function :

<div id="day"></div>

var mySelect = new MobileSelect({ trigger: '#day', wheels: [
{data:['周日','周一','周二','周三','周四','周五','周六']},
{data:['08:00','09:00','10:00','11:00','12:00','13:00','14:00']} ],
position:[1,1] //Initialize the positioning of both wheels are selected in the
index 1 option }); //---------------------------------------------- //After the
basic instantiated, use the functions mySelect.setTitle('啦啦啦(๑•̀ㅁ•́ฅ)'); //
Set the title of the component
mySelect.updateWheel(0,['sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday']);
// Update the 0th wheel of the data,the data from the Chinese week to the
English week mySelect.locatePosition(1,0); // Reposition the position of the
first wheel and change the 0th data of the first wheel to the current selection.
// (The first wheel is the right wheel, the left side of the wheel is the first
0)

Base example → Function after operation

基础实例 功能函数操作后

Project demo:

Use the transitionEnd (), callback (), updateWheel (), locatePosition () functions to do the following:

  • choose the date of the day, not more than today has been too.
  • Select the time to take the car, the car must not exceed the time to take the car (including the date and time).

Image text

Logs

2017-04-20[update]

As the input tag in the iphone, the cursor will flashing. As well as the input tag open in the iphone6P / iphone7P chrome will appear offset phenomenon. So do not use the input tag, instead by the ordinary div trigger. The value selected will be written in the div trigger‘s innerHTML. It is recommended to use the callback (indexArr, data) function to get the selected value.

2017-07-27[bug fixed]

Repair the issues raised by [li362692680]: Cascade selection can not initially locate the secondary selection box. At the same time repair the init function of the entry array parameter length is less than the number of wheels can not move the problem.

2017-07-30[bug fixed + update]

Repair the issues raised by [leohgbs]:

  1. The update does not take into account the problem that the data is json.
  2. After the update, the cached data is not updated, resulting in a callback data source error.

Change the variable name: jsonData → cascadeJsonData Change method name: updateWheels() → reRenderWheels() The updateWheel() method does not change. Add new API: updateWheels(data) is used to update the entire data source in cascading data format.

2017-08-15[update]

Repair in cascade state, single click failed. Delete the comment after the brace in the js file(In the php environment there will be js code failure situation). Fix ios potential bug. Add API: show() Add API: getValue() Add option style options(Modify the connector / button text / button color / background color and so on): connector ensureBtnText ensureBtnColor cancelBtnText cancelBtnColor titleColor titleBgColor bgColor textColor Supports color formats such as #ff0000 rgba(0,255,255,0.5) orange.

2017-09-07[update]

Add keyMap function Update README

2017-10-17[update]

Add cancel callback

2017-12-12[update]

Remove cancel callback Thanks for [ngdly]: Add onshow callback Add onhide callback Add show function Add hide function

2018-01-28[update]

Thanks for [aaalog]: Modify the method for listening to click events. To fix the click event which will triggered twice the transitionEnd funtion: Remove addListenerLi(), singleClick() internal methods, Click judgment directly in the touchend event.

2018-01-29[update]

Add maskOpacity option

License

MIT LICENSE

Copyright (c) 2017-present, LIHONG OU(onlyhom)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].