Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
appFluetter
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nayeli Monserrat Velasco Lopez
appFluetter
Commits
50476693
Commit
50476693
authored
Aug 01, 2024
by
nayeli92433
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Listado de articulos por categoria
parent
02adba50
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
154 additions
and
15 deletions
+154
-15
rutas.dart
lib/config/rutas.dart
+1
-1
ArticuloController.dart
lib/src/controllers/ArticuloController.dart
+50
-0
ArticleApi.dart
lib/src/http_api/ArticleApi.dart
+37
-0
articles_page.dart
lib/src/pages/articles_page.dart
+57
-9
CategoryListWidget.dart
lib/src/pages/category/CategoryListWidget.dart
+9
-5
No files found.
lib/config/rutas.dart
View file @
50476693
...
...
@@ -7,6 +7,6 @@ Map<String, WidgetBuilder> getApplicationRoutes() {
return
<
String
,
WidgetBuilder
>{
'login'
:
(
context
)
=>
const
LoginPage
(),
'home'
:
(
context
)
=>
const
HomePage
(),
'articles'
:
(
context
)
=>
const
Article
sPage
(
),
'articles'
:
(
context
)
=>
const
Article
Page
(
categoryId:
1
),
};
}
lib/src/controllers/ArticuloController.dart
0 → 100644
View file @
50476693
import
'dart:convert'
;
import
'package:connectivity_plus/connectivity_plus.dart'
;
import
'package:miapp_flutter/src/models/ArticuloModel.dart'
;
import
'../http_api/ArticleApi.dart'
;
class
ArticuloController
{
final
Connectivity
_connectivity
=
Connectivity
();
final
ArticleApi
_articleApi
=
ArticleApi
();
Future
<
Map
<
String
,
dynamic
>>
getArticles
(
int
categoryId
)
async
{
Map
<
String
,
dynamic
>
mapResp
=
{
'ok'
:
false
,
'message'
:
'No hay artículos'
,
'data'
:
null
};
// Verificar la conectividad de la red
List
<
ConnectivityResult
>
connectivityResult
=
await
_connectivity
.
checkConnectivity
();
if
(!
connectivityResult
.
contains
(
ConnectivityResult
.
none
))
{
if
(
connectivityResult
.
contains
(
ConnectivityResult
.
wifi
)
||
connectivityResult
.
contains
(
ConnectivityResult
.
mobile
))
{
try
{
// Realizar la solicitud a la API
Map
<
String
,
dynamic
>
respGet
=
await
_articleApi
.
getArticles
(
categoryId
);
if
(
respGet
[
'statusCode'
]
==
200
)
{
try
{
var
decodeResp
=
json
.
decode
(
respGet
[
'body'
]);
List
<
ArticleModel
>
listArticles
=
ArticleModel
.
fromJsonArray
(
decodeResp
[
'data'
]);
mapResp
[
'ok'
]
=
true
;
mapResp
[
'message'
]
=
"
${listArticles.length}
artículos encontrados"
;
mapResp
[
'data'
]
=
listArticles
;
}
catch
(
e
)
{
mapResp
[
'message'
]
=
"Error en procesamiento de datos:
$e
"
;
}
}
else
{
mapResp
[
'message'
]
=
"Error en la respuesta de la API:
${respGet['body']}
"
;
}
}
catch
(
e
)
{
mapResp
[
'message'
]
=
"Error en la solicitud a la API:
$e
"
;
}
}
else
{
mapResp
[
'message'
]
=
'No hay conexión a internet'
;
}
}
else
{
mapResp
[
'message'
]
=
'No hay conexión a internet'
;
}
return
mapResp
;
}
}
\ No newline at end of file
lib/src/http_api/ArticleApi.dart
0 → 100644
View file @
50476693
import
'dart:convert'
;
import
'package:http/http.dart'
as
http
;
import
'package:flutter/foundation.dart'
;
import
'package:miapp_flutter/environments/archivo.dart'
;
class
ArticleApi
{
final
String
apiUrl
=
'articulo'
;
// Método para obtener los artículos
Future
<
Map
<
String
,
dynamic
>>
getArticles
(
int
categoryId
)
async
{
String
url
=
'
${apiApp}
/
$apiUrl
?categoria=
$categoryId
&offset=0&max=100'
;
if
(
kDebugMode
)
{
print
(
'Url ->
$url
'
);
}
try
{
final
response
=
await
http
.
get
(
Uri
.
parse
(
url
));
// Verifica el estado de la respuesta
if
(
response
.
statusCode
==
200
)
{
return
{
'statusCode'
:
response
.
statusCode
,
'body'
:
response
.
body
,
};
}
else
{
return
{
'statusCode'
:
response
.
statusCode
,
'body'
:
'Error:
${response.reasonPhrase}
'
,
};
}
}
catch
(
e
)
{
return
{
'statusCode'
:
501
,
'body'
:
'Error:
$e
'
,
};
}
}
}
lib/src/pages/articles_page.dart
View file @
50476693
import
'package:flutter/material.dart'
;
class
ArticlesPage
extends
StatelessWidget
{
const
ArticlesPage
({
Key
?
key
})
:
super
(
key:
key
);
import
'../controllers/ArticuloController.dart'
;
import
'../models/ArticuloModel.dart'
;
class
ArticlePage
extends
StatefulWidget
{
final
int
categoryId
;
const
ArticlePage
({
Key
?
key
,
required
this
.
categoryId
})
:
super
(
key:
key
);
@override
_ArticlePageState
createState
()
=>
_ArticlePageState
();
}
class
_ArticlePageState
extends
State
<
ArticlePage
>
{
final
ArticuloController
_articleController
=
ArticuloController
();
late
Future
<
Map
<
String
,
dynamic
>>
_articlesFuture
;
@override
void
initState
()
{
super
.
initState
();
_articlesFuture
=
_articleController
.
getArticles
(
widget
.
categoryId
);
}
@override
Widget
build
(
BuildContext
context
)
{
return
Scaffold
(
appBar:
AppBar
(
title:
const
Text
(
'Articles Page'
),
title:
const
Text
(
'Artículos'
),
backgroundColor:
Colors
.
indigoAccent
,
foregroundColor:
Colors
.
white
,
),
body:
Center
(
child:
ElevatedButton
(
onPressed:
()
{
Navigator
.
pushNamed
(
context
,
'login'
);
},
child:
const
Text
(
'Hola articles_page'
),
body:
FutureBuilder
<
Map
<
String
,
dynamic
>>(
future:
_articlesFuture
,
builder:
(
context
,
snapshot
)
{
if
(
snapshot
.
hasData
)
{
if
(
snapshot
.
data
![
'ok'
])
{
if
(
snapshot
.
data
![
'data'
]
!=
null
&&
(
snapshot
.
data
![
'data'
]
as
List
).
isNotEmpty
)
{
List
<
ArticleModel
>
articles
=
snapshot
.
data
![
'data'
]
as
List
<
ArticleModel
>;
return
ListView
.
builder
(
itemCount:
articles
.
length
,
itemBuilder:
(
context
,
index
)
{
final
article
=
articles
[
index
];
return
Card
(
child:
ListTile
(
title:
Text
(
article
.
nombre
),
subtitle:
Text
(
'Clave:
${article.clave}
'
),
trailing:
Text
(
'
\$
${article.precios.isNotEmpty ? article.precios.first.precio.toStringAsFixed(2) : 'N/A'}
'
),
),
);
},
);
}
else
{
return
Center
(
child:
Text
(
'No se encontraron artículos.'
));
}
}
else
{
return
Center
(
child:
Text
(
'Error:
${snapshot.data!['message']}
'
));
}
}
else
if
(
snapshot
.
hasError
)
{
return
Center
(
child:
Text
(
'Error:
${snapshot.error}
'
));
}
else
{
return
const
Center
(
child:
CircularProgressIndicator
());
}
},
),
);
}
...
...
lib/src/pages/category/CategoryListWidget.dart
View file @
50476693
import
'package:flutter/material.dart'
;
import
'package:miapp_flutter/src/pages/articles_page.dart'
;
import
'../../controllers/CategoriaController.dart'
;
import
'../../models/CategoriaModel.dart'
;
...
...
@@ -9,15 +9,14 @@ class CategoryListWidget extends StatefulWidget {
}
class
_CategoryWidgetState
extends
State
<
CategoryListWidget
>
{
final
CategoryController
_categoryCtrl
=
CategoryController
();
//El categoryCtrl se usa para obtener las categorías
final
CategoryController
_categoryCtrl
=
CategoryController
();
@override
Widget
build
(
BuildContext
context
)
{
return
SafeArea
(
child:
Padding
(
padding:
const
EdgeInsets
.
all
(
16.0
),
child:
FutureBuilder
<
Map
<
String
,
dynamic
>>(
//El futureBuilder se utiliza para
// manejar operaciones asíncronas y donde map tiene las categorias
child:
FutureBuilder
<
Map
<
String
,
dynamic
>>(
future:
_categoryCtrl
.
getCategories
(),
builder:
(
context
,
snapshot
)
{
if
(
snapshot
.
hasData
)
{
...
...
@@ -32,7 +31,12 @@ class _CategoryWidgetState extends State<CategoryListWidget> {
title:
Text
(
category
.
name
??
'No Name'
),
leading:
const
Icon
(
Icons
.
touch_app
),
onTap:
()
{
// Navegar al listado de servicios
Navigator
.
push
(
context
,
MaterialPageRoute
(
builder:
(
context
)
=>
ArticlePage
(
categoryId:
category
.
id
),
),
);
},
),
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment