Giter VIP home page Giter VIP logo

app's Introduction

Swift Island Logo

App Store Swift UI
Twitter Follow Mastodon Follow Twitter Follow

Swift Island App

This is the official Swift Island 2023 iOS app.

Prerequisites

In order to build and run this app, you will need access to the Firebase project for Swift Island, since this app uses the data from said firestore database.

The project is build for Xcode 14 and upwards and the minimal deployment target is iOS 16 for now.

Setup

Tickets

If you wish to access ticket functionality you need to have a Tito token. This token should be stored inside /SwiftIslandApp/Resources/Secrets.json. This file is ignored and should not be pushed to the repo. The contents of the file should be as follows:

{
    "CHECKIN_LIST_SLUG": "<# TITO SLUG #>"
}

Author

This app is mainly build by Paul Peelen [Github] [Twitter], for use for Swift Island 2023.

Code Style

This project applies The Official Kodeco Swift Style Guide (formally known as Ray Wenderlich Swift Style Guide), with a few exceptions which are mentioned below. This project uses SwiftLint to enforce the code style. PR's with violations of the SwiftLint rules will not be approved.

Exceptions

line_limit

The line limit is changed from 120 to 200 for warnings and 300 for errors. The only exception where line_limit may be disabled is in use with long texts. Prefered is to line break these and join, but in this case it is ok to disable.

indentation_width

The indentation_width for this project is 4 instead of 2.

force_unwrapping

Force unwrapping is discouraged, with two exceptions:

Exception 1

When creating an URL from String and the string is in human readable format inside the code. Example:

let url = URL(string: "https://swiftisland.nl")! // swiftlint:disable:this force_unwrap

Any creation of dynamic URL may not disable this rule. This may only be disabled on line level, meaning using :this format.

Exception 2

Use in Preview code. When creating a preview for a SwiftUI view, at times mock code is used. It is OK to force_unwrap, but prefered not to do so if possible.

Example:

// swiftlint:disable force_unwrapping
let selectedDate = Calendar.current.date(from: DateComponents(year: 2023, month: 9, day: 4, hour: 9))!
let secondDate = Calendar.current.date(from: DateComponents(year: 2023, month: 9, day: 4, hour: 10))!
// swiftlint:enable force_unwrapping

Here it is allowed to force_unwrap using disable/enable block or on line level using :this.

License

This project is released under the GPL-3.0 license.

app's People

Contributors

funky-monkey avatar nvh avatar ppeelen avatar tomlokhorst avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

app's Issues

Merge Map link and mini-map

There is no need to have both a map-link and the mini-map. Merge them by the user selecting the mini-map to open a large map.

Only show conference related info if the user has "atTheConference" activated.

Ticket slug verification

Some verification of the ticket slug would be good. Currently everything is accepted, I think maybe a minimal length would be good, but we need to be aware that they are not all formatted the right way, tickets that are brought over from previous years have a different slug

Map app - Simple version

Map - Simple version

Lets the user select from a list where to show a pin. List will contain the bungalow numbers, workshop locations (e.g. "Restaurant", "the Tent" ect), event locations (restaurang, reception etc).

Shows a pin on Schiphol linking to Hassle free information page

Show a pin on Den Helder showing Hassle free information on Den Helder (How to get there and get to Ferry)

Show a pin on ferry location pickup point for van

Swift Island v2: Basic UI

Create a basic UI for the Swift Island v2 (2023) app. This can be accomplished in e.g. Sketch or Figma.

Mentor Page

Shows information about the different mentors. Name, twitter / Mastodon handle, picture, bio ect.

Database schema design

User Story

As a developer
I would like to have a clear overview of the database schema
So that I know how to build the app

Technical information

The database schema defined the data structure in the app, and is in turn defined by both the UI/UX as well as the information available from external APIs.

FAQ page

Page with tips and tricks, such as wifi information

Information on this page could be limited to when the user is on site.. like Wifi information ect.

Shows also information on how to get to the location, who to contact in case of issues or emergency ect.

Agenda page

Agenda page

Shows the workshop agenda for day 1 and day 2, to tabs for each day. If the date is the same as day 2 (6th September) then show tab two as selected.

Each item on the agenda will have a title and which mentor hold the workshop.

When selecting a workshop item a detail page will be pushed showing more details, possible links (such as GitHub link of available), mentor information.

Selecting mentor on detail page will change focus to the mentor tab selecting the mentor details

Bug in Google maps direction link

trim.BFA1F5FE-BFA2-4B39-95E9-8AAF7C2673F3.MOV

It seems give directions from Prins Hendrik to prins hendrik

Also the activity sheet shows all caps? ๐Ÿค”

Schedule layout bugs

  • Events that start when others end should not be overlapping
  • Events that start at x:30 are shown at x:00

Update app associated domain info

Kan een van jullie de app associated domain updaten naar het volgende:

{
  "applinks": {
    "details": [
      {
        "appID": "6B3SHVL3L5.nl.swiftisland.app",
        "paths": [
         "/app"
        ]
      }
    ]
  },
  "appclips": {
      "apps": ["6B3SHVL3L5.nl.swiftisland.app.clip"]
  }
}

Opening event info doesn't always work

After switching dates, tapping an event doesn't work anymore to open details.

Reproduction:

  • open schedule
  • switch to another date
  • with the page picker open, tap on a event to close the date selection

Switching back and forth to another tab fixes it again

Swift Island V2: Basic app setup

Setup the basic app, for all users to consume.
Should contain info that is not for members only.

Should contain:

  • Start page with info on the event
  • Option to open the order page (Tickets button on website)
  • Newsletter subscription (if possible)
  • FAQ
  • Previous mentors

Ticket view bugs

  • removing a ticket removes the wrong index
  • Ticket "names" are not incremental (All show "Ticket 1"

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.