Reformat all project files to use the prettier config file.

This commit is contained in:
Patrick Fic
2024-03-27 15:35:07 -07:00
parent b161530381
commit e1df64d592
873 changed files with 111387 additions and 125473 deletions

View File

@@ -1,71 +1,68 @@
import {useMutation, useQuery} from "@apollo/client";
import { useMutation, useQuery } from "@apollo/client";
import React from "react";
import {logImEXEvent, messaging} from "../../firebase/firebase.utils";
import {QUERY_ALL_ASSOCIATIONS, UPDATE_ACTIVE_ASSOCIATION,} from "../../graphql/associations.queries";
import { logImEXEvent, messaging } from "../../firebase/firebase.utils";
import { QUERY_ALL_ASSOCIATIONS, UPDATE_ACTIVE_ASSOCIATION } from "../../graphql/associations.queries";
import AlertComponent from "../alert/alert.component";
import ProfileShopsComponent from "./profile-shops.component";
import axios from "axios";
import {getToken} from "firebase/messaging";
import { getToken } from "firebase/messaging";
import {connect} from "react-redux";
import {createStructuredSelector} from "reselect";
import {selectBodyshop, selectCurrentUser,} from "../../redux/user/user.selectors";
import { connect } from "react-redux";
import { createStructuredSelector } from "reselect";
import { selectBodyshop, selectCurrentUser } from "../../redux/user/user.selectors";
const mapStateToProps = createStructuredSelector({
bodyshop: selectBodyshop,
currentUser: selectCurrentUser,
bodyshop: selectBodyshop,
currentUser: selectCurrentUser
});
const mapDispatchToProps = (dispatch) => ({
//setUserLanguage: language => dispatch(setUserLanguage(language))
//setUserLanguage: language => dispatch(setUserLanguage(language))
});
export default connect(
mapStateToProps,
mapDispatchToProps
)(ProfileShopsContainer);
export default connect(mapStateToProps, mapDispatchToProps)(ProfileShopsContainer);
export function ProfileShopsContainer({bodyshop, currentUser}) {
const {loading, error, data} = useQuery(QUERY_ALL_ASSOCIATIONS, {
fetchPolicy: "network-only",
nextFetchPolicy: "network-only",
variables: {
email: currentUser.email,
},
skip: !currentUser,
export function ProfileShopsContainer({ bodyshop, currentUser }) {
const { loading, error, data } = useQuery(QUERY_ALL_ASSOCIATIONS, {
fetchPolicy: "network-only",
nextFetchPolicy: "network-only",
variables: {
email: currentUser.email
},
skip: !currentUser
});
const [updateActiveAssociation] = useMutation(UPDATE_ACTIVE_ASSOCIATION);
const updateActiveShop = async (newActiveAssocId) => {
logImEXEvent("profile_change_active_shop");
try {
const fcm_tokens = await getToken(messaging);
await axios.post("/notifications/unsubscribe", {
fcm_tokens,
imexshopid: bodyshop.imexshopid,
type: "messaging"
});
} catch (error) {
console.log("No FCM token. Skipping unsubscribe.");
}
await updateActiveAssociation({
variables: {
newActiveAssocId: newActiveAssocId
}
});
const [updateActiveAssociation] = useMutation(UPDATE_ACTIVE_ASSOCIATION);
const updateActiveShop = async (newActiveAssocId) => {
logImEXEvent("profile_change_active_shop");
//Force window refresh.
try {
const fcm_tokens = await getToken(messaging);
window.location.reload();
};
await axios.post("/notifications/unsubscribe", {
fcm_tokens,
imexshopid: bodyshop.imexshopid,
type: "messaging",
});
} catch (error) {
console.log("No FCM token. Skipping unsubscribe.");
}
await updateActiveAssociation({
variables: {
newActiveAssocId: newActiveAssocId,
},
});
//Force window refresh.
window.location.reload();
};
if (error) return <AlertComponent type="error" message={error.message}/>;
return (
<ProfileShopsComponent
loading={loading}
data={data ? data.associations : null}
updateActiveShop={updateActiveShop}
/>
);
if (error) return <AlertComponent type="error" message={error.message} />;
return (
<ProfileShopsComponent
loading={loading}
data={data ? data.associations : null}
updateActiveShop={updateActiveShop}
/>
);
}