Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/issue 74 #14

Merged
merged 11 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 19 additions & 15 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ function App() {
const [hasCheckedTmpUser, setHasCheckedTmpUser] = useState(false);
const [activeCoupon, setActiveCoupon] = useState();
const [isAnonymousRegister, setIsAnonymousRegister] = useState(false);
const [theme, setTheme] = useState(null);

const [dropdownOptions, setDropdownOptions] = useState({
isOpen: false,
Expand Down Expand Up @@ -184,6 +185,8 @@ function App() {
setActiveCoupon,
isAnonymousRegister,
setIsAnonymousRegister,
theme,
setTheme,
};

return (
Expand All @@ -192,21 +195,22 @@ function App() {
<QueryClientProvider client={queryClient}>
<SafeAreaProvider>
<View style={styles.flex1} onLayout={onLayoutRootView}>
<Navigation />
<RequireRegistration
handleContinue={handleRegisterRedirection}
isOpen={isRegistrationModalOpan}
onClose={handleRegistrationModalClose}
/>
<DropdownBackdrop
onClose={() =>
setDropdownOptions((options) => ({
...options,
isOpen: false,
}))
}
{...dropdownOptions}
/>
<Navigation contextTheme={theme} setTheme={setTheme}>
<DropdownBackdrop
onClose={() =>
setDropdownOptions((options) => ({
...options,
isOpen: false,
}))
}
{...dropdownOptions}
/>
<RequireRegistration
handleContinue={handleRegisterRedirection}
isOpen={isRegistrationModalOpan}
onClose={handleRegistrationModalClose}
/>
</Navigation>
</View>
</SafeAreaProvider>
<FlashMessage position="top" />
Expand Down
4 changes: 0 additions & 4 deletions i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ import {
SOSCenter as SOSCenterScreen,
LocalAuthenticationScreen,
MyQA as MyQAScreen,
ChangeLanguage,
} from "./src/screens/locales.js";

import {
Expand Down Expand Up @@ -156,7 +155,6 @@ const resources = {
"share-platform-screen": SharePlatformScreen.en,
"sos-center-screen": SOSCenterScreen.en,
"my-qa-screen": MyQAScreen.en,
"change-language": ChangeLanguage.en,

// Backdrops
"cancel-consultation": CancelConsultation.en,
Expand Down Expand Up @@ -248,7 +246,6 @@ const resources = {
"share-platform-screen": SharePlatformScreen.ru,
"sos-center-screen": SOSCenterScreen.ru,
"my-qa-screen": MyQAScreen.ru,
"change-language": ChangeLanguage.ru,

// Backdrops
"cancel-consultation": CancelConsultation.ru,
Expand Down Expand Up @@ -340,7 +337,6 @@ const resources = {
"share-platform-screen": SharePlatformScreen.kk,
"sos-center-screen": SOSCenterScreen.kk,
"my-qa-screen": MyQAScreen.kk,
"change-language": ChangeLanguage.kk,

// Backdrops
"cancel-consultation": CancelConsultation.kk,
Expand Down
Binary file added src/assets/logo-vertical-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/logo-vertical.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions src/backdrops/FilterProviders/FilterProviders.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,8 @@ export const FilterProviders = ({
dropdownId="filterLanguage"
/>
<View style={styles.toggleContainer}>
<AppText style={styles.label}>
{t("providers_free_consultation_label")}
</AppText>
<Toggle
label={t("providers_free_consultation_label")}
isToggled={data.onlyFreeConsultation}
handleToggle={(checked) =>
handleSelect("onlyFreeConsultation", checked)
Expand Down
8 changes: 3 additions & 5 deletions src/backdrops/SelectConsultation/SelectConsultation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ export const SelectConsultation = ({
name="free-slots"
selected={selectedSlot}
setSelected={handleChooseSlot}
classes="select-consultation__radio-button-selector-group"
/>
);
};
Expand Down Expand Up @@ -201,19 +200,19 @@ export const SelectConsultation = ({
loading={isCouponLoading}
style={{
width: appStyles.screenWidth * 0.4,
minWidth: 'auto',
minWidth: "auto",
borderRadius: 40,
paddingVertical: 10,
}}
/>
</View>
{couponError && <Error style={styles.error} message={couponError} />}
{couponError && <Error style={styles.error} message={couponError} />}
{providerDataQuery.isLoading ? (
<View style={{ alignItems: "center" }}>
<Loading size="lg" />
</View>
) : (
<View style={{marginTop: 20}}>
<View style={{ marginTop: 20 }}>
<Header
handleDayChange={handleDayChange}
setStartDate={setStartDate}
Expand Down Expand Up @@ -248,7 +247,6 @@ const styles = StyleSheet.create({
flex: 1,
marginBottom: 16,
height: 90,

},
couponInput: { width: "50%", marginRight: 12 },
error: {
Expand Down
21 changes: 11 additions & 10 deletions src/blocks/ActivityHistory/ActivityHistory.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import { useGetChatData, useGetAllChatHistoryData, useDebounce } from "#hooks";
import { systemMessageTypes } from "#utils";

import Config from "react-native-config";
import { useGetTheme } from "#hooks";
const { AMAZON_S3_BUCKET } = Config;

export const ActivityHistory = ({
Expand All @@ -28,6 +29,7 @@ export const ActivityHistory = ({
providerId,
}) => {
const { t } = useTranslation("activity-history");
const { colors } = useGetTheme();

const [shownMessages, setShownMessages] = useState();
const messagesContainerRef = useRef();
Expand Down Expand Up @@ -144,16 +146,7 @@ export const ActivityHistory = ({
};
return (
<>
<Block
style={{
paddingBottom: 10,
position: "absolute",
top: 0,
height: "28%",
backgroundColor: "white",
zIndex: 1,
}}
>
<Block style={[styles.block, { backgroundColor: colors.background }]}>
<View style={[styles.container]}>
<TouchableOpacity onPress={() => navigation.goBack()}>
<Icon
Expand Down Expand Up @@ -228,6 +221,14 @@ export const ActivityHistory = ({
};

const styles = StyleSheet.create({
block: {
paddingBottom: 10,
position: "absolute",
top: 0,
height: "28%",
backgroundColor: "white",
zIndex: 1,
},
container: { flexDirection: "row", alignItems: "center" },
avatar: { width: 42, height: 42, borderRadius: 100, marginHorizontal: 16 },
messagesContainer: {
Expand Down
72 changes: 41 additions & 31 deletions src/blocks/ArticleView/ArticleView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ import { View, StyleSheet, Image } from "react-native";
import Markdown from "react-native-markdown-display";

import { Icon, Label, Block, AppText } from "#components";

import { appStyles } from "#styles";

import articlePlaceholder from "#assets";
import { useGetTheme } from "#hooks";

/**
* ArticleView
Expand All @@ -16,6 +15,8 @@ import articlePlaceholder from "#assets";
* @return {jsx}
*/
export const ArticleView = ({ articleData }) => {
const { colors } = useGetTheme();

return (
<>
<View style={styles.imageContainer}>
Expand Down Expand Up @@ -47,7 +48,10 @@ export const ArticleView = ({ articleData }) => {
</AppText>

<View style={styles.categoryContainer}>
<AppText namedStyle="smallText" style={styles.categoryText}>
<AppText
namedStyle="smallText"
style={[styles.categoryText, { color: colors.text }]}
>
{articleData.categoryName}
</AppText>
</View>
Expand All @@ -59,7 +63,40 @@ export const ArticleView = ({ articleData }) => {
})}
</View>

<Markdown style={styles}>{articleData.body}</Markdown>
<Markdown
style={{
...styles,
heading3: {
fontSize: 20,
lineHeight: 24,
fontFamily: "Nunito_600SemiBold",
color: colors.text,
marginTop: 20,
marginBottom: 8,
},
heading4: {
fontSize: 16,
lineHeight: 24,
fontFamily: "Nunito_600SemiBold",
color: colors.text,
marginTop: 12,
},
paragraph: {
color: colors.textSecondary,
fontSize: 16,
fontFamily: "Nunito_400Regular",
lineHeight: 24,
},
list_item: {
color: colors.textSecondary,
fontSize: 16,
fontFamily: "Nunito_400Regular",
lineHeight: 24,
},
}}
>
{articleData.body}
</Markdown>
</Block>
</>
);
Expand All @@ -86,35 +123,8 @@ const styles = StyleSheet.create({
borderRadius: 25,
justifyContent: "center",
},
heading3: {
fontSize: 20,
lineHeight: 24,
fontFamily: "Nunito_600SemiBold",
color: appStyles.colorBlue_3d527b,
marginTop: 20,
marginBottom: 8,
},
heading4: {
fontSize: 16,
lineHeight: 24,
fontFamily: "Nunito_600SemiBold",
color: appStyles.colorBlue_3d527b,
marginTop: 12,
},
paragraph: {
color: appStyles.colorGray_66768d,
fontSize: 16,
fontFamily: "Nunito_400Regular",
lineHeight: 24,
},
categoryText: {
fontFamily: appStyles.fontBold,
color: appStyles.colorBlue_3d527b,
},
list_item: {
color: appStyles.colorGray_66768d,
fontSize: 16,
fontFamily: "Nunito_400Regular",
lineHeight: 24,
},
});
2 changes: 0 additions & 2 deletions src/blocks/Consultations/Consultations.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ import { useTranslation } from "react-i18next";
import { StyleSheet, View } from "react-native";

import { AppText, Block, Consultation, TabsUnderlined } from "#components";

import { ONE_HOUR, showToast } from "#utils";

import {
useGetAllConsultations,
useAcceptConsultation,
Expand Down
7 changes: 4 additions & 3 deletions src/blocks/ConsultationsDashboard/ConsultationsDashboard.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState, useEffect } from "react";
import React from "react";
import { useTranslation } from "react-i18next";
import { View, StyleSheet, TouchableOpacity } from "react-native";

Expand All @@ -12,7 +12,7 @@ import {
} from "#components";
import { appStyles } from "#styles";

import { userSvc } from "#services";
import { useGetTheme } from "#hooks";

/**
* ConsultationsDashboard
Expand All @@ -32,6 +32,7 @@ export const ConsultationsDashboard = ({
handleRegistrationModalOpen,
isTmpUser,
}) => {
const { isDarkMode } = useGetTheme();
const { t } = useTranslation("consultations-dashboard");
const width = appStyles.screenWidth * 0.96;

Expand Down Expand Up @@ -81,7 +82,7 @@ export const ConsultationsDashboard = ({
<View style={styles.buttonContainer}>
<AppButton
label={t("schedule_consultation_label")}
type="secondary"
type={isDarkMode ? "primary" : "secondary"}
size="lg"
onPress={handleScheduleConsultation}
/>
Expand Down
9 changes: 3 additions & 6 deletions src/blocks/MoodTracker/MoodTracker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,9 @@ import { StyleSheet, View, TouchableOpacity } from "react-native";
import { useTranslation } from "react-i18next";

import { Block, Emoticon, AppText, Textarea, AppButton } from "#components";

import { useAddMoodTrack } from "#hooks";

import { useAddMoodTrack, useGetTheme } from "#hooks";
import { showToast } from "#utils";

import { appStyles } from "#styles";

import { Context } from "#services";

/**
Expand All @@ -21,6 +17,7 @@ import { Context } from "#services";
* @return {jsx}
*/
export const MoodTracker = ({ navigation }) => {
const { colors } = useGetTheme();
const { t, i18n } = useTranslation("mood-tracker");
const { isTmpUser, handleRegistrationModalOpen } = useContext(Context);
const queryClient = useQueryClient();
Expand Down Expand Up @@ -77,7 +74,7 @@ export const MoodTracker = ({ navigation }) => {
<AppText
numberOfLines={1}
namedStyle="smallText"
style={styles.textSelected}
style={[styles.textSelected, { color: colors.textTertiary }]}
>
{emoticon.label}
</AppText>
Expand Down
Loading
Loading