Initial commit of Flutter project

This commit is contained in:
2025-09-19 11:30:38 +05:30
parent 1f0ec17edc
commit 4a9ae0a3b3
28 changed files with 2033 additions and 594 deletions

View File

@@ -1,52 +1,98 @@
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:glowwheels/constants/api.dart';
import 'package:hive/hive.dart';
import 'package:http/http.dart' as http;
import 'package:provider/provider.dart';
import '../models/shop_model.dart';
class ShopProvider with ChangeNotifier {
ShopModel? _shop;
ShopModel? get shop => _shop;
String? _token;
final String _boxName = 'shopBox';
ShopModel? get shop => _shop;
String? get token => _token;
final String _shopBox = 'shopBox';
final String _tokenBox = 'tokenBox';
ShopProvider() {
_loadOrCreateDummyShop();
_loadShopAndTokenFromHive();
}
void _loadOrCreateDummyShop() async {
final box = await Hive.openBox<ShopModel>(_boxName);
if (box.isNotEmpty) {
_shop = box.getAt(0);
} else {
// Dummy data
_shop = ShopModel(
id: '1',
shopName: "Omkara Car Wash Center",
email: "omkara@gmail.com",
mobile: "8617019854",
image: "assets/images/shop_image.jpg",
address: "Bidhannagar, Kolkata, pin-700017",
void _loadShopAndTokenFromHive() async {
final shopBox = await Hive.openBox<ShopModel>(_shopBox);
_shop = shopBox.get('shop');
final tokenBox = await Hive.openBox<String>(_tokenBox);
_token = tokenBox.get('token');
notifyListeners();
}
String? getShopId(BuildContext context) {
return Provider.of<ShopProvider>(context, listen: false).shop?.user.id;
}
Future<bool> login(String email, String password) async {
final loginUri = Uri.parse(ApiConstants.loginUrl);
try {
final response = await http.post(
loginUri,
headers: {'Content-Type': 'application/json'},
body: jsonEncode({'email': email, 'password': password}),
);
await box.add(_shop!);
print('Response code: ${response.statusCode}');
print('Response body: ${response.body}');
if (response.statusCode == 200) {
final data = jsonDecode(response.body);
final shopModel = ShopModel.fromJson(data);
final shopBox = await Hive.openBox<ShopModel>(_shopBox);
final tokenBox = await Hive.openBox<String>(_tokenBox);
await shopBox.put('shop', shopModel);
await tokenBox.put('token', shopModel.token);
_shop = shopModel;
_token = shopModel.token;
notifyListeners();
return true;
} else {
print('HTTP Error: ${response.statusCode}');
return false;
}
} catch (e) {
print('Login Exception: $e');
return false;
}
notifyListeners();
}
Future<void> setShop(ShopModel shop) async {
_shop = shop;
notifyListeners();
final box = await Hive.openBox<ShopModel>(_boxName);
await box.clear(); // Keep only one shop
await box.add(shop);
}
Future<void> logout() async {
_shop = null;
_token = null;
notifyListeners();
final box = await Hive.openBox<ShopModel>(_boxName);
await box.clear();
final shopBox = await Hive.openBox<ShopModel>(_shopBox);
await shopBox.clear();
final tokenBox = await Hive.openBox<String>(_tokenBox);
await tokenBox.clear();
}
void setShop(ShopModel shop) {
_shop = shop;
notifyListeners();
}
void setToken(String token) {
_token = token;
notifyListeners();
}
}