|
@@ -28,6 +28,17 @@ class MobReqCreatePage extends StatefulWidget {
|
|
|
State<MobReqCreatePage> createState() => _MobReqCreatePageState();
|
|
|
}
|
|
|
|
|
|
+getColorScheme(val){
|
|
|
+ var color;
|
|
|
+ switch (val){
|
|
|
+ case 0: color = Color(0xFF4FB66C); break;
|
|
|
+ case 50: color = Color(0xFFFFA800); break;
|
|
|
+ case 100: color = Color(0xFFC9223B); break;
|
|
|
+ default: color = Color(0xFF4FB66C);
|
|
|
+ }
|
|
|
+ return color;
|
|
|
+}
|
|
|
+
|
|
|
class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
final RequestFunction reqFunc = RequestFunction();
|
|
|
final SharedPreferencesManager sharedPreferencesManager = locator<SharedPreferencesManager>();
|
|
@@ -39,6 +50,8 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
TextEditingController controllerUserId = new TextEditingController()..text = '';
|
|
|
|
|
|
FocusNode focusNodeLocation = new FocusNode();
|
|
|
+ double _currentSliderValue = 0;
|
|
|
+ Color sliderColor = getColorScheme(0);
|
|
|
|
|
|
@override
|
|
|
void initState() {
|
|
@@ -51,6 +64,13 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
reqFunc.getSuggestionLocation(context);
|
|
|
U.getOtherLabelList(context);
|
|
|
|
|
|
+ switch (widget.request['requestPriority']){
|
|
|
+ case 'RENDAH': _currentSliderValue = 0; break;
|
|
|
+ case 'NORMAL': _currentSliderValue = 50; break;
|
|
|
+ case 'TINGGI': _currentSliderValue = 100; break;
|
|
|
+ }
|
|
|
+ sliderColor = getColorScheme(_currentSliderValue);
|
|
|
+
|
|
|
// TODO: implement initState
|
|
|
super.initState();
|
|
|
}
|
|
@@ -78,7 +98,7 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
margin: EdgeInsets.only(bottom: 21),
|
|
|
width: double.infinity, height: U.bodyWidth(context)/(kIsWeb?2.1:1.7),
|
|
|
decoration: widget.request['_mobileImage'] != null ? BoxDecoration(
|
|
|
- color: Color(0xff292D32).withOpacity(0.1),
|
|
|
+ color: Color(0xff292D32).withValues(alpha: 0.1),
|
|
|
borderRadius: BorderRadius.all(Radius.circular(12)),
|
|
|
image: DecorationImage(
|
|
|
image: CachedNetworkImageProvider(widget.request['_mobileImage']+'?bridge-cache=true', cacheManager: CacheManager(CacheMan.config(widget.request['_mobileImage']))),
|
|
@@ -103,7 +123,7 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
],
|
|
|
),
|
|
|
decoration: BoxDecoration(
|
|
|
- border: Border.all(color: textColor.withOpacity(0.15)),
|
|
|
+ border: Border.all(color: textColor.withValues(alpha: 0.15)),
|
|
|
borderRadius: BorderRadius.all(Radius.circular(12))
|
|
|
),
|
|
|
),
|
|
@@ -133,8 +153,8 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
],
|
|
|
),
|
|
|
decoration: BoxDecoration(
|
|
|
- color: Provider.of<CreateSerModule>(context).locationType()==1?primaryColor.withOpacity(0.15):Colors.white,
|
|
|
- border: Border.all(color: Provider.of<CreateSerModule>(context).locationType()==1?primaryColor:textColor.withOpacity(0.15)),
|
|
|
+ color: Provider.of<CreateSerModule>(context).locationType()==1?primaryColor.withValues(alpha: 0.15):Colors.white,
|
|
|
+ border: Border.all(color: Provider.of<CreateSerModule>(context).locationType()==1?primaryColor:textColor.withValues(alpha: 0.15)),
|
|
|
borderRadius: BorderRadius.only(topLeft: Radius.circular(12), topRight: Radius.circular(12))
|
|
|
),
|
|
|
),
|
|
@@ -147,8 +167,8 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
margin: EdgeInsets.only(bottom: 21, top: widget.request['scanToRequest'] ? 8 : 0),
|
|
|
padding: EdgeInsets.symmetric(vertical: 12, horizontal: 15),
|
|
|
decoration: BoxDecoration(
|
|
|
- color: Provider.of<CreateSerModule>(context).locationType()==2?primaryColor.withOpacity(0.15):Colors.white,
|
|
|
- border: Border.all(color: Provider.of<CreateSerModule>(context).locationType()==2?primaryColor:textColor.withOpacity(0.15)),
|
|
|
+ color: Provider.of<CreateSerModule>(context).locationType()==2?primaryColor.withValues(alpha: 0.15):Colors.white,
|
|
|
+ border: Border.all(color: Provider.of<CreateSerModule>(context).locationType()==2?primaryColor:textColor.withValues(alpha: 0.15)),
|
|
|
borderRadius: widget.request['scanToRequest'] ? BorderRadius.all(Radius.circular(12.0)) : BorderRadius.only(bottomLeft: Radius.circular(12), bottomRight: Radius.circular(12))
|
|
|
),
|
|
|
child: Row(
|
|
@@ -177,14 +197,14 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
readOnly: (!kIsWeb && widget.request['scanToRequest']) || Provider.of<CreateSerModule>(context).locationType() == 1 ? true : false,
|
|
|
searchInputDecoration: SearchInputDecoration(
|
|
|
hintText: widget.request['scanToRequest'] && !kIsWeb ? 'pleaseScan'.tr() : 'placeholderLocation'.tr(),
|
|
|
- hintStyle: TextStyle(color: textColor.withOpacity(0.5), fontSize: 14),
|
|
|
+ hintStyle: TextStyle(color: textColor.withValues(alpha: 0.5), fontSize: 14),
|
|
|
filled: true,
|
|
|
fillColor: backgroundColor,
|
|
|
- hoverColor: Colors.black.withOpacity(0.1),
|
|
|
+ hoverColor: Colors.black.withValues(alpha: 0.1),
|
|
|
contentPadding: EdgeInsets.all(13),
|
|
|
border: InputBorder.none,
|
|
|
- disabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withOpacity(0.5))),
|
|
|
- enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withOpacity(0.5))),
|
|
|
+ disabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withValues(alpha: 0.5))),
|
|
|
+ enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withValues(alpha: 0.5))),
|
|
|
focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: const BorderSide(color: primaryColor)),
|
|
|
isDense: true
|
|
|
),
|
|
@@ -204,7 +224,7 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- onTapCancel: () => print("gasido cah"),
|
|
|
+ onTapCancel: () => print(" "),
|
|
|
),
|
|
|
],
|
|
|
),
|
|
@@ -263,13 +283,13 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
readOnly: false,
|
|
|
decoration: InputDecoration(
|
|
|
hintText: U.otherLabelList()['placeholder-${context.locale.toString()}']??'typeId'.tr(),
|
|
|
- hintStyle: TextStyle(color: textColor.withOpacity(0.5), fontSize: 14),
|
|
|
+ hintStyle: TextStyle(color: textColor.withValues(alpha: 0.5), fontSize: 14),
|
|
|
filled: true,
|
|
|
fillColor: backgroundColor,
|
|
|
- hoverColor: Colors.black.withOpacity(0.1),
|
|
|
+ hoverColor: Colors.black.withValues(alpha: 0.1),
|
|
|
contentPadding: EdgeInsets.all(13),
|
|
|
border: InputBorder.none,
|
|
|
- enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withOpacity(0.5))),
|
|
|
+ enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withValues(alpha: 0.5))),
|
|
|
focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: const BorderSide(color: primaryColor)),
|
|
|
isDense: true
|
|
|
),
|
|
@@ -288,14 +308,14 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
readOnly: true,
|
|
|
decoration: InputDecoration(
|
|
|
hintText: 'selectDate'.tr(),
|
|
|
- hintStyle: TextStyle(color: textColor.withOpacity(0.5), fontSize: 14),
|
|
|
+ hintStyle: TextStyle(color: textColor.withValues(alpha: 0.5), fontSize: 14),
|
|
|
filled: true,
|
|
|
fillColor: backgroundColor,
|
|
|
- hoverColor: Colors.black.withOpacity(0.1),
|
|
|
+ hoverColor: Colors.black.withValues(alpha: 0.1),
|
|
|
contentPadding: EdgeInsets.all(13),
|
|
|
prefixIcon: Padding(padding: EdgeInsets.only(left: 13, right: 13), child: U.iconsax('calendar-edit', color: textColor, size: 24)),
|
|
|
border: InputBorder.none,
|
|
|
- enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withOpacity(0.5))),
|
|
|
+ enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withValues(alpha: 0.5))),
|
|
|
focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: const BorderSide(color: primaryColor)),
|
|
|
isDense: true
|
|
|
),
|
|
@@ -360,19 +380,19 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
indicatorType: Indicator.ballPulseRise,
|
|
|
colors: U.defaultRainbowColors(),
|
|
|
strokeWidth: 1,
|
|
|
- backgroundColor: Colors.black.withOpacity(0),
|
|
|
+ backgroundColor: Colors.black.withValues(alpha: 0),
|
|
|
pathBackgroundColor: Colors.black,
|
|
|
),
|
|
|
) : Icon(Icons.add_rounded, color: Colors.black26, size: 40),
|
|
|
decoration: BoxDecoration(color: Colors.white, borderRadius: BorderRadius.all(Radius.circular(5)), border: Border.all(color: Colors.black26, width: 2)),
|
|
|
),
|
|
|
onTap: ()=>pickupImageNew(),
|
|
|
- ) : Container()
|
|
|
+ ) : Container(),
|
|
|
],
|
|
|
) : GestureDetector(
|
|
|
child: Container(
|
|
|
padding: EdgeInsets.symmetric(horizontal: 8, vertical: 12),
|
|
|
- decoration: BoxDecoration(borderRadius: BorderRadius.all(Radius.circular(10)), border: Border.all(color: Color(0xFF078C84)), color: Color(0xFFFFFFFF).withOpacity(0.2)),
|
|
|
+ decoration: BoxDecoration(borderRadius: BorderRadius.all(Radius.circular(10)), border: Border.all(color: Color(0xFF078C84)), color: Color(0xFFFFFFFF).withValues(alpha: 0.2)),
|
|
|
child: Row(
|
|
|
children: [
|
|
|
U.iconsax('image', color: primaryColor, size: 30),
|
|
@@ -382,7 +402,69 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
),
|
|
|
),
|
|
|
onTap: ()=>pickupImageNew(),
|
|
|
- )
|
|
|
+ ),
|
|
|
+ U.newServerVersion(1736473802) ? Column(
|
|
|
+ crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
+ children: [
|
|
|
+ SizedBox(height: 36),
|
|
|
+ Text('changePriority'.tr(), style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
|
|
|
+ SizedBox(height: 12),
|
|
|
+ Container(
|
|
|
+ height: 32,
|
|
|
+ decoration: BoxDecoration(
|
|
|
+ color: Colors.white,
|
|
|
+ borderRadius: BorderRadius.circular(25.0),
|
|
|
+ border: Border.all(
|
|
|
+ width: 3.0,
|
|
|
+ color: Colors.transparent,
|
|
|
+ ),
|
|
|
+ gradient: LinearGradient(
|
|
|
+ colors: [
|
|
|
+ Color(0xFF4FB66C).withValues(alpha: 1),
|
|
|
+ Color(0xFFFFA800).withValues(alpha: 1),
|
|
|
+ Color(0xFFC9223B).withValues(alpha: 1),
|
|
|
+ ],
|
|
|
+ begin: Alignment.topLeft,
|
|
|
+ end: Alignment.bottomRight,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ child: Container(
|
|
|
+ decoration: BoxDecoration(
|
|
|
+ color: Colors.white,
|
|
|
+ borderRadius: BorderRadius.circular(25.0),
|
|
|
+ ),
|
|
|
+ child: SliderTheme(
|
|
|
+ data: SliderThemeData(
|
|
|
+ inactiveTrackColor: Colors.white,
|
|
|
+ ),
|
|
|
+ child: Slider(
|
|
|
+ activeColor: sliderColor,
|
|
|
+ value: _currentSliderValue,
|
|
|
+ max:100,
|
|
|
+ divisions: 2,
|
|
|
+ onChanged: (double value) {
|
|
|
+ setState(() {
|
|
|
+ _currentSliderValue = value;
|
|
|
+ sliderColor = getColorScheme(value);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ SizedBox(height: 4,),
|
|
|
+ Center(
|
|
|
+ child: Row(
|
|
|
+ mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
+ children: [
|
|
|
+ Text('priorityLow'.tr(), style: TextStyle(fontSize: 12),),
|
|
|
+ Text('priorityNormal'.tr(), style: TextStyle(fontSize: 12)),
|
|
|
+ Text('priorityHigh'.tr(), style: TextStyle(fontSize: 12)),
|
|
|
+ ],
|
|
|
+ )
|
|
|
+ )
|
|
|
+ ],
|
|
|
+ ) : SizedBox()
|
|
|
],
|
|
|
),
|
|
|
],
|
|
@@ -415,14 +497,14 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
keyboardType: widget.request['noteFormat'] == 'NUMBER' ? TextInputType.number : null,
|
|
|
decoration: InputDecoration(
|
|
|
hintText: 'placeholderNote'.tr(),
|
|
|
- hintStyle: TextStyle(color: textColor.withOpacity(0.5), fontSize: 14),
|
|
|
+ hintStyle: TextStyle(color: textColor.withValues(alpha: 0.5), fontSize: 14),
|
|
|
filled: true,
|
|
|
fillColor: backgroundColor,
|
|
|
- hoverColor: Colors.black.withOpacity(0.1),
|
|
|
+ hoverColor: Colors.black.withValues(alpha: 0.1),
|
|
|
contentPadding: EdgeInsets.all(13),
|
|
|
prefixIcon: Padding(padding: EdgeInsets.only(left: 13, right: 13), child: U.iconsax('edit-2', color: textColor, size: 24)),
|
|
|
border: InputBorder.none,
|
|
|
- enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withOpacity(0.5))),
|
|
|
+ enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withValues(alpha: 0.5))),
|
|
|
focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: const BorderSide(color: primaryColor)),
|
|
|
isDense: true
|
|
|
),
|
|
@@ -436,7 +518,7 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
if (controllerDateString.text.trim().isEmpty && widget.request['noteFormat'] == 'DATE'){
|
|
|
showError(context, 'dateRequired'.tr());
|
|
|
} else {
|
|
|
- reqFunc.sendRequestToOthers(context, widget, controllerUserId, controllerNote, controllerLocation, controllerDateString);
|
|
|
+ reqFunc.sendRequestToOthers(context, widget, controllerUserId, controllerNote, controllerLocation, controllerDateString, _currentSliderValue);
|
|
|
}
|
|
|
} else {
|
|
|
showError(context, 'idRequired'.tr());
|
|
@@ -444,7 +526,7 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
} else if (controllerDateString.text.trim().isNotEmpty && widget.request['noteFormat'] == 'DATE'){
|
|
|
dialogSendLater();
|
|
|
} else {
|
|
|
- reqFunc.sendRequest(context, widget, controllerNote, controllerLocation, controllerDateString);
|
|
|
+ reqFunc.sendRequest(context, widget, controllerNote, controllerLocation, controllerDateString, _currentSliderValue);
|
|
|
}
|
|
|
} else {
|
|
|
showError(context, 'lengthMax'.tr());
|
|
@@ -492,7 +574,7 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
gradient: LinearGradient(
|
|
|
begin: Alignment.topLeft, end: Alignment.bottomRight,
|
|
|
colors: [
|
|
|
- Color(0xff131480).withOpacity(0.56), Color(0xff131480).withOpacity(0.90), Color(0xff131480).withOpacity(0.75)
|
|
|
+ Color(0xff131480).withValues(alpha: 0.56), Color(0xff131480).withValues(alpha: 0.90), Color(0xff131480).withValues(alpha: 0.75)
|
|
|
]
|
|
|
)
|
|
|
),
|
|
@@ -500,7 +582,7 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
onTap: (){
|
|
|
navigateBack(contexts);
|
|
|
Provider.of<CreateSerModule>(context, listen: false).setSendLater(true);
|
|
|
- reqFunc.sendRequest(context, widget, controllerNote, controllerLocation, controllerDateString);
|
|
|
+ reqFunc.sendRequest(context, widget, controllerNote, controllerLocation, controllerDateString, _currentSliderValue);
|
|
|
},
|
|
|
),
|
|
|
),
|
|
@@ -522,14 +604,14 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
gradient: LinearGradient(
|
|
|
begin: Alignment.topLeft, end: Alignment.bottomRight,
|
|
|
colors: [
|
|
|
- Color(0xff078C84).withOpacity(0.56), Color(0xff078C84).withOpacity(0.90), Color(0xff078C84).withOpacity(0.75)
|
|
|
+ Color(0xff078C84).withValues(alpha: 0.56), Color(0xff078C84).withValues(alpha: 0.90), Color(0xff078C84).withValues(alpha: 0.75)
|
|
|
]
|
|
|
)
|
|
|
),
|
|
|
),
|
|
|
onTap: (){
|
|
|
navigateBack(contexts);
|
|
|
- reqFunc.sendRequest(context, widget, controllerNote, controllerLocation, controllerDateString);
|
|
|
+ reqFunc.sendRequest(context, widget, controllerNote, controllerLocation, controllerDateString, _currentSliderValue);
|
|
|
},
|
|
|
),
|
|
|
),
|
|
@@ -542,7 +624,7 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
padding: EdgeInsets.all(3),
|
|
|
child: Text('scheduledMsg'.tr(), style: TextStyle(color: textColor, fontSize: 12, fontWeight: FontWeight.w300)),
|
|
|
decoration: BoxDecoration(
|
|
|
- color: Color(0xffCCA600).withOpacity(0.2),
|
|
|
+ color: Color(0xffCCA600).withValues(alpha: 0.2),
|
|
|
borderRadius: BorderRadius.all(Radius.circular(3))
|
|
|
),
|
|
|
)
|
|
@@ -555,8 +637,9 @@ class _MobReqCreatePageState extends State<MobReqCreatePage> {
|
|
|
pickupImageNew() async{
|
|
|
if(Provider.of<CreateSerModule>(context, listen: false).images().length < 5){
|
|
|
if (kIsWeb) {
|
|
|
- var image = await reqFunc.getImageNew(context, ImageSource.gallery);
|
|
|
- Provider.of<CreateSerModule>(context, listen: false).setImages(image);
|
|
|
+ await reqFunc.getImageNew(context, ImageSource.gallery).then((img){
|
|
|
+ img != null ? Provider.of<CreateSerModule>(context, listen: false).setImages(img) : (){};
|
|
|
+ });
|
|
|
} else{
|
|
|
showModalBottomSheet<void>(
|
|
|
context: context,
|