All files / src/components BuildingPopup.tsx

93.33% Statements 14/15
57.14% Branches 8/14
83.33% Functions 5/6
93.33% Lines 14/15

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239                    1x                                                                     2x 2x 2x 2x   2x   2x                     2x 2x     2x   1x 2x                                                                                                 2x                                                   1x                                                                                                                                                                                          
import React from "react";
import { Image, Pressable, StyleSheet, Text, View } from "react-native";
import { Ionicons } from "@expo/vector-icons";
import FontAwesome5 from "@expo/vector-icons/FontAwesome5";
import { BuildingId } from "../data/buildings";
import { hasIndoorMaps } from "../utils/buildingIndoorMaps";
import { useTheme } from "../hooks/useTheme";
import { useAccessibleTypography } from "../hooks/useAccessibilitySettings";
import PopupTemplate from "./PopupTemplate";
 
const defaultAccessibility = {
  hasElevator: false,
  hasParking: false,
  isAccessible: false,
};
 
export default function BuildingPopup({
  id,
  name,
  addressLines = [],
  buildingId,
  openingHours = "",
  hasStudySpots = false,
  image,
  accessibility,
  onClose,
  onDirections,
  onIndoorMaps,
}: Readonly<{
  id: string;
  name: string;
  addressLines?: string[];
  buildingId: BuildingId;
  openingHours?: string;
  hasStudySpots?: boolean;
  image: any;
  accessibility?: {
    hasElevator: boolean;
    hasParking: boolean;
    isAccessible: boolean;
  };
  onClose: () => void;
  onDirections: () => void;
  onIndoorMaps?: () => void;
}>) {
  const { colors } = useTheme();
  const { textStyle } = useAccessibleTypography();
  const showIndoorMaps = hasIndoorMaps(buildingId);
  const resolvedAccessibility = accessibility ?? defaultAccessibility;
 
  const font = textStyle;
 
  return (
    <PopupTemplate
      title={name}
      accessibility={resolvedAccessibility}
      onClose={onClose}
      renderTopContent={() =>
        image == null ? null : (
          <Image source={image} style={styles.image} resizeMode="cover" />
        )
      }
      renderBody={() => {
        const lines = addressLines ?? [];
        return (
          <>
            {lines.map((line, lineIndex) => {
              const occurrence = lines
                .slice(0, lineIndex)
                .filter((l) => l === line).length;
              return (
                <Text
                  key={`${id}-${name}-${line}#${occurrence}`}
                  style={[
                    styles.address,
                    font(14),
                    { color: colors.textMuted },
                  ]}
                >
                  {line}
                </Text>
              );
            })}
            <View style={styles.metaRow}>
              <Text
                style={[styles.metaLabel, font(14), { color: colors.text }]}
              >
                Hours:
              </Text>
              <Text
                style={[
                  styles.metaValue,
                  font(14),
                  { color: colors.textMuted },
                ]}
              >
                {openingHours}
              </Text>
            </View>
            <View style={styles.metaRow}>
              <Text
                style={[styles.metaLabel, font(14), { color: colors.text }]}
              >
                Study Spots:
              </Text>
              <Text
                style={[
                  styles.metaValue,
                  font(14),
                  { color: colors.textMuted },
                ]}
              >
                {hasStudySpots ? "Yes" : "No"}
              </Text>
            </View>
          </>
        );
      }}
      renderButtons={() => (
        <View style={styles.buttonRow}>
          <Pressable
            onPress={onDirections}
            style={[styles.directionsBtn, { backgroundColor: colors.primary }]}
          >
            <FontAwesome5 name="directions" size={18} color="white" />
            <Text style={[styles.directionsText, font(14)]}>Directions</Text>
          </Pressable>
          {showIndoorMaps && onIndoorMaps && (
            <Pressable
              onPress={onIndoorMaps}
              style={[
                styles.indoorMapsBtn,
                { backgroundColor: colors.primary },
              ]}
            >
              <Ionicons name="map" size={18} color="white" />
              <Text style={[styles.indoorMapsText, font(14)]}>Indoor Maps</Text>
            </Pressable>
          )}
        </View>
      )}
    />
  );
}
 
const styles = StyleSheet.create({
  backdrop: {
    ...StyleSheet.absoluteFillObject,
    justifyContent: "center",
    alignItems: "center",
    paddingHorizontal: 16,
  },
  card: {
    width: "100%",
    maxWidth: 520,
    borderRadius: 16,
    overflow: "hidden",
    shadowColor: "#000",
    shadowOpacity: 0.18,
    shadowRadius: 18,
    shadowOffset: { width: 0, height: 6 },
    elevation: 10,
  },
  image: {
    width: "100%",
    height: 120,
  },
  headerRow: {
    flexDirection: "row",
    justifyContent: "space-between",
    alignItems: "flex-start",
    gap: 12,
    paddingHorizontal: 14,
    paddingTop: 12,
  },
  title: {},
  headerRight: {
    flexDirection: "row",
    alignItems: "center",
    gap: 10,
  },
  iconsRow: {
    flexDirection: "row",
    alignItems: "center",
    gap: 8,
  },
  badge: {
    borderRadius: 10,
    paddingHorizontal: 8,
    paddingVertical: 2,
  },
  badgeText: { color: "#fff", fontWeight: "900" },
  closeBtn: {
    width: 32,
    height: 32,
    borderRadius: 16,
    alignItems: "center",
    justifyContent: "center",
  },
  address: {
    marginTop: 4,
    paddingHorizontal: 14,
  },
  metaRow: {
    flexDirection: "row",
    gap: 8,
    paddingHorizontal: 14,
    marginTop: 8,
  },
  metaLabel: {},
  metaValue: {},
  buttonRow: {
    marginTop: 14,
    marginBottom: 14,
    flexDirection: "row",
    justifyContent: "flex-end",
    gap: 10,
  },
  directionsBtn: {
    flexDirection: "row",
    alignItems: "center",
    gap: 8,
    borderRadius: 999,
    paddingHorizontal: 14,
    paddingVertical: 10,
    marginRight: 14,
  },
  directionsText: { color: "#fff" },
  indoorMapsBtn: {
    flexDirection: "row",
    alignItems: "center",
    gap: 8,
    borderRadius: 999,
    paddingHorizontal: 14,
    paddingVertical: 10,
  },
  indoorMapsText: { color: "#fff" },
});