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 [RM75] Character Card #76

Merged
merged 4 commits into from
Aug 12, 2021
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
12 changes: 11 additions & 1 deletion Rick-and-Morty/Rick And Morty.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
/* Begin PBXBuildFile section */
1711B39E26B1898100BE935B /* CharacterListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1711B39D26B1898100BE935B /* CharacterListView.swift */; };
17588BAC26C1750B008ECC31 /* Character.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17588BAB26C1750B008ECC31 /* Character.swift */; };
17588BAF26C273BB008ECC31 /* CharacterCard.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17588BAE26C273BB008ECC31 /* CharacterCard.swift */; };
17588BB226C2B126008ECC31 /* RickAndMortyService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17588BB126C2B126008ECC31 /* RickAndMortyService.swift */; };
179D2D7626C3D24B008E1B3A /* RickAndMortyServiceProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 179D2D7526C3D24B008E1B3A /* RickAndMortyServiceProtocol.swift */; };
B811686D1CFF1C9900301A0A /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B811686C1CFF1C9900301A0A /* AppDelegate.swift */; };
Expand All @@ -30,6 +31,7 @@
/* Begin PBXFileReference section */
1711B39D26B1898100BE935B /* CharacterListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CharacterListView.swift; sourceTree = "<group>"; };
17588BAB26C1750B008ECC31 /* Character.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Character.swift; sourceTree = "<group>"; };
17588BAE26C273BB008ECC31 /* CharacterCard.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CharacterCard.swift; sourceTree = "<group>"; };
17588BB126C2B126008ECC31 /* RickAndMortyService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RickAndMortyService.swift; sourceTree = "<group>"; };
179D2D7526C3D24B008E1B3A /* RickAndMortyServiceProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RickAndMortyServiceProtocol.swift; sourceTree = "<group>"; };
B81168691CFF1C9900301A0A /* Rick And Morty.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Rick And Morty.app"; sourceTree = BUILT_PRODUCTS_DIR; };
Expand Down Expand Up @@ -68,6 +70,13 @@
path = Model;
sourceTree = "<group>";
};
17588BAD26C273A2008ECC31 /* Views */ = {
isa = PBXGroup;
children = (
1711B39D26B1898100BE935B /* CharacterListView.swift */,
17588BAE26C273BB008ECC31 /* CharacterCard.swift */,
);
path = Views;
17588BB026C2B112008ECC31 /* Services */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -98,10 +107,10 @@
B811686B1CFF1C9900301A0A /* Rick And Morty */ = {
isa = PBXGroup;
children = (
17588BAD26C273A2008ECC31 /* Views */,
17588BB026C2B112008ECC31 /* Services */,
17588BAA26C174FB008ECC31 /* Model */,
B811686C1CFF1C9900301A0A /* AppDelegate.swift */,
1711B39D26B1898100BE935B /* CharacterListView.swift */,
B81168751CFF1C9900301A0A /* Assets.xcassets */,
B81168771CFF1C9900301A0A /* LaunchScreen.storyboard */,
B811687A1CFF1C9900301A0A /* Info.plist */,
Expand Down Expand Up @@ -222,6 +231,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
17588BAF26C273BB008ECC31 /* CharacterCard.swift in Sources */,
17588BB226C2B126008ECC31 /* RickAndMortyService.swift in Sources */,
17588BAC26C1750B008ECC31 /* Character.swift in Sources */,
179D2D7626C3D24B008E1B3A /* RickAndMortyServiceProtocol.swift in Sources */,
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "2.jpeg",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
94 changes: 94 additions & 0 deletions Rick-and-Morty/Rick And Morty/Views/CharacterCard.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
//
// CharacterTileView.swift
// Rick And Morty
//
// Created by Scottie Gray on 2021-08-10.
// Copyright © 2021 Novoda. All rights reserved.
//

import SwiftUI
import Foundation

struct CharacterCardState {
var id: Int
var name: String
var image: UIImage
var isAlive: Bool
var species: String
var lastLocation: String
var firstEpisode: String
}

private struct Constants {
let cornerRadius: CGFloat = 10
let noSpacing: CGFloat = 0
let VSpacing: CGFloat = 10
let borderWidth: CGFloat = 0.25
let cardHeight: CGFloat = 200
let lastLocationCaption = "Last known location:"
let firstEpisodeCaption = "First seen in:"
}

struct CharacterCard: View {
var characterCardState: CharacterCardState
private let constants: Constants = Constants()

var body: some View {
HStack(alignment: .top) {
Image(uiImage: characterCardState.image)
.resizable()
.aspectRatio(contentMode: .fit)

VStack(alignment: .leading, spacing: constants.VSpacing) {
VStack(alignment: .leading, spacing: constants.noSpacing) {
Text(characterCardState.name)
.font(.title)
.fontWeight(.black)
HStack {
Circle()
.foregroundColor(characterCardState.isAlive ? .green : .red)
.frame(width: 10, height: 10)
Text(characterCardState.isAlive ? "Alive - \(characterCardState.species)" : "Dead - \(characterCardState.species)")
}
}

characterDetailsVStack(caption: constants.lastLocationCaption, text: characterCardState.lastLocation)

characterDetailsVStack(caption: constants.firstEpisodeCaption, text: characterCardState.firstEpisode)
}
Spacer()
}
.cornerRadius(constants.cornerRadius)
.overlay(
RoundedRectangle(cornerRadius: constants.cornerRadius)
.stroke(Color(.lightGray), lineWidth: constants.borderWidth)
)
.padding()
.frame(height: constants.cardHeight)
}

func characterDetailsVStack(caption: String, text: String) -> some View {
return VStack(alignment: .leading, spacing: constants.noSpacing) {
Text(caption)
.font(.caption)
.foregroundColor(.secondary)
Text(text)
}
}
}

struct CharacterTileView_Previews: PreviewProvider {
static var previews: some View {
Group {
VStack {
CharacterCard(characterCardState: CharacterCardState(id: 2, name: "Morty", image: UIImage(named: "morty-image")!, isAlive: true, species: "Human", lastLocation: "Earth", firstEpisode: "Episode 1"))
}
.preferredColorScheme(.light)
VStack {
CharacterCard(characterCardState: CharacterCardState(id: 2, name: "Morty", image: UIImage(named: "morty-image")!, isAlive: true, species: "Human", lastLocation: "Earth", firstEpisode: "Episode 1"))
}
.preferredColorScheme(.dark)

}
}
}