reza fixed some issue

master
Reza_ashrafi 3 years ago
parent 7505ab4ee0
commit 81c2c27249
  1. 6
      src/redux/reducers/public.js
  2. 3
      src/screens/QR/layouts/Scan/index.js
  3. 6
      src/screens/Video/index.js

@ -6,7 +6,7 @@ const width = Dimensions.get("window").width;
const initialState = {
ltr: false,
theme: null,
mobile : width < 720,
mobile: width < 720,
homeData: [],
newProducts: [],
levels: [],
@ -43,7 +43,7 @@ const initialState = {
categories: null,
bookSection: null,
grades: {
0: 'پایه تحصیلی',
0: "پایه تحصیلی",
// _0: "پیش دبستان",
1: "اول",
2: "دوم",
@ -79,7 +79,7 @@ const publicApi = (state = initialState, action) => {
let { type, data } = action;
switch (type) {
case "public/setLtr":
return { ...state, ltr : true };
return { ...state, ltr: true };
case "public/setIsDark":
AsyncStorage.setItem("theme", data);
return { ...state, location: false, error: null, theme: data };

@ -31,9 +31,6 @@ function Scan({ theme, page }) {
const { status } = await BarCodeScanner.requestPermissionsAsync();
setHasPermission(status === "granted");
})();
if (page === "book") {
navigation.push("QRContent", { data : "zist10-13" });
}
}, []);
const handleBarCodeScanned = React.useCallback(

@ -142,7 +142,7 @@ function Product({
fontFamily: "demi",
}}
>
{book?.name}
{book?.name || " "}
</Text>
<Text
style={{
@ -155,7 +155,7 @@ function Product({
fontFamily: "regular",
}}
>
{"پایه" + " " + grades[book?.gradeId]}
{"پایه" + " " + (grades[book?.gradeId] || " ")}
</Text>
</View>
</View>
@ -207,7 +207,7 @@ function Product({
{seasons
?.sort((a, b) => a[0]?.categoryId - b[0]?.categoryId)
?.map((season, index) => (
<Season season={season} key={index} id={book?.id} />
<Season season={season} key={index} id={book?.id} index={index} />
))}
</View>
</ScrollView>

Loading…
Cancel
Save