switch to spectrum for icons

This commit is contained in:
2022-06-28 20:46:36 -07:00
parent 2e91316a52
commit 023936ce35
6 changed files with 36 additions and 34 deletions

View File

@@ -1,5 +1,17 @@
import React, { useState } from "react";
import { graphql, navigate, Link } from "gatsby";
import { GatsbyImage, getImage } from "gatsby-plugin-image";
import { Helmet } from "react-helmet";
import classnames from "classnames";
import Calendar from "@spectrum-icons/workflow/Calendar";
import Stopwatch from "@spectrum-icons/workflow/Stopwatch";
import Exposure from "@spectrum-icons/workflow/Exposure";
import Filmroll from "@spectrum-icons/workflow/Filmroll";
import Camera from "@spectrum-icons/workflow/Camera";
import Circle from "@spectrum-icons/workflow/Circle";
import Location from "@spectrum-icons/workflow/Location";
import {
getAspectRatio,
getMeta,
@@ -9,9 +21,6 @@ import {
getHelmetSafeBodyStyle,
hasName,
} from "../../utils";
import { GatsbyImage, getImage } from "gatsby-plugin-image";
import { Helmet } from "react-helmet";
import classnames from "classnames";
import MetadataItem from "./MetadataItem";
const logKeyShortcut = (keyCode) => {
@@ -197,33 +206,33 @@ const GalleryImage = ({ data, pageContext }) => {
<div className="flex flex-col items-end">
<MetadataItem
data={dateTaken.toLocaleDateString()}
icon="calendar-outline"
icon={<Calendar />}
title="date taken"
/>
<div className="flex justify-end gap-2 border border-vibrant-light pl-2 rounded">
<MetadataItem
data={shutterSpeed}
icon="stopwatch-outline"
icon={<Stopwatch />}
title="shutter speed"
/>
{meta.FNumber && (
<MetadataItem
data={`f/${meta.FNumber}`}
icon="aperture-outline"
icon={<Exposure />}
title="aperture"
/>
)}
<MetadataItem data={meta.ISO} icon="film-outline" title="ISO" />
<MetadataItem data={meta.ISO} icon={<Filmroll />} title="ISO" />
</div>
<MetadataItem
data={locationString}
icon="map-outline"
icon={<Location />}
title="location"
/>
{(meta.Make || meta.Model) && (
<MetadataItem
data={[meta.Make, meta.Model].join(" ")}
icon="camera-outline"
icon={<Camera />}
title="camera"
/>
)}
@@ -235,7 +244,7 @@ const GalleryImage = ({ data, pageContext }) => {
]
.filter(Boolean)
.join(" @")}
icon="ellipse"
icon={<Circle />}
title="lens"
/>
)}

View File

@@ -7,8 +7,8 @@ const MetadataItem = ({ icon, data, title }) =>
<span className="text-sm opacity-60 m-0 ">{title}</span>
<span className="text-lg leading-4">{data}</span>
</div>
<span className="icon-offset ml-2 mt-1 text-2xl">
<ion-icon name={icon} title={title}></ion-icon>
<span className="ml-2 pb-2 text-2xl">
{icon}
</span>
</div>
) : null;