• Stars
    star
    195
  • Rank 199,374 (Top 4 %)
  • Language
    Swift
  • License
    MIT License
  • Created almost 6 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

iOS bits and pieces that you can include in your project to make your life a bit easier.

iOS Nuts And Bolts

Build Status Swift Version iOS Version License

Japx

Collection of commonly shared and reused code throughout the Infinum iOS team.

Features

Networking
Used for easier implementation of networking features.
  • Router - Base API routing containing shared logic for all routers.
  • Encoding - Request params with associated encoding.
  • Adapters - Adapters used for both basic and token authentication.
  • Service - Base protocol for API networking communication.
  • Rx - Reactive implementation of networking communication.
  • JSONAPI - Used for handling JSON:API networking.
  • Headers - commonly used request headers

Database
Used for easier implementation of storage features.
  • Database - High level component that should generally be interacted with. This hides unnecessary details of Realm and exposes good usage patterns.
  • Schema Migration - A way to design your Realm schema that supports migrations. (integrated within the Database component)
  • Various Extensions - Various Realm extensions that are commonly used
  • Async/Await - async/await support for accessing Realm
  • Combine - Combine support for accessing Realm

None of the methods are marked public intentionally. All components are imagined to be in a separate Storage module. Storage module should expose simple interface for the main app.

ModelMapped protocol allows mapping of Domain object to DB objects. This way Realm objects remain internal to Storage module and the rest of the app doesn't know about them.



RxCocoa
Extensions useful when dealing with all things Cocoa, in a reactive way.

RxSwift

Extensions for Observables and Singles which will make your reactive life a little easier.

Combine

Extensions for Publishers which will make your reactive life a little easier.

Foundation

Wide range of useful extensions and computed properties covering many commonly used Foundation features: Arrays, Strings, Bools, Date, Optional etc.

UI

Plenty of extensions of most used UI elements, along with reactive extensions to common UI types such as UIView, UIColor etc.

Viper interfaces

Interfaces used for building your application using the VIPER architecture pattern. Its usage is explained in more detail in our Xcode templates GitHub page.

Utilities

Useful classes and methods which help you achieve your goals.

  • Logging - Used for lightweight logging and debugging during development process.
  • SecurityProtectionManager - Used for handling the security regarding Jailbreak and Reverse engineering detection.



Framework manager

CocoaPods - a Ruby-built dependency manager for Swift and Objective-C Cocoa projects. It has over 65 thousand libraries and is used in over 3 million apps.

Third party integrations

UI

  • MBProgressHUD - an iOS drop-in class that displays a translucent HUD with an indicator and/or labels while work is being done in a background thread. The HUD is meant as a replacement for the undocumented, private UIKit UIProgressHUD with some additional features.

Networking

  • Alamofire - an HTTP networking library written in Swift.
  • CodableAlamofire - an extension for Alamofire that converts JSON data into Decodable object.
  • Japx/RxCodableAlamofire - Lightweight JSON:API parser that flattens complex JSON:API structure and turns it into simple JSON and vice versa.
  • Loggie - in-app network logging library.

Reactive

  • RxSwift - is a generic abstraction of computation expressed through Observable interface.
  • RxCocoa - provides the fundamentals of Observables and provides extensions to the Cocoa and Cocoa Touch frameworks to take advantage of RxSwift.

Localization

Testing

  • RxBlocking - is set of blocking operators for easy unit testing.
  • RxTest - a test framework published at RxSwift repository.
  • Nimble - used to express the expected outcomes of Swift or Objective-C expressions.
  • Quick - behavior-driven development framework for Swift and Objective-C.
  • RxNimble - Nimble extensions that make unit testing with RxSwift easier.

Usage

You can find all the features inside the Sources folder. Each feature has its sample inside the catalog list or tests written for it, where you can find more info on feature usage.

To explore features feel free to open the Catalog.xcworkspace and run Catalog app or go through tests inside Tests folder.

Contributing

Before adding a new feature, please ensure that you:

  • Have checked there is no same component already in the catalog. If a similar component already exists, try to upgrade it if needed.
  • Have created a sufficient example or wrote tests for it. If the component is for something in UIKit, the example is better, while tests are preferred for Foundation features. Please, take a look at one of the currently available features to grasp the idea.
  • Code is structured, well written using standard Swift coding style or check one at our Coding Style handbook.
  • All public methods and properties have documentation - comments have to be meaningful and concise.
  • Use public modifier for all method and properties that could be changed from a user of your feature, and private for internal properties. Another reason why public is mandatory when using framework based development, only public properties and methods will be visible to the user.
  • Remove any reference to the project that piece of code was created in - mostly the project name from header comment in the file.
  • Reduce the dependencies to a minimum.

Adding a new feature

If you are reading this, you probably have a feature PR in mind.

All features should go inside the Sources folder, inside an appropriate category (create a new one, if missing). Take a look at already created features to get a feeling on how to sort the things out.

However, before creating a PR with a new chunk of code - create an example or write tests describing how to use your feature.

For UI components we suggest creating an example view controller, while for some Foundation related feature we recommend creating tests - since they will cover how to use the feature and what to expect from it.

Creating an example

Inside Catalog/Examples folder create a new folder (a group backed by folder) with your feature name. Try to put it in some of the current categories or create an appropriate category folder for it.

Create a new view controller (XIB, Storyboard, Code - whatever floats your boat) inside of a previously created folder. Make your view controller conforms to Catalogizable protocol:

class SomeCoolFeatureViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        // Your code here...
    }

}

extension SomeCoolFeatureViewController: Catalogizable {

    static var title: String {
        return "Some Cool Feature"
    }

    static var viewController: UIViewController {
        return SomeCoolFeatureViewController()
        /// Or if creating it from storyboard:
        /// let storyboard = UIStoryboard(name: "SomeStoryboardName", bundle: nil)
        /// return storyboard.instantiateViewController(ofType: SomeCoolFeatureViewController.self)
    }

}

To be able to run your example you'll have to add it to the catalog data source - it is on top of the Catalog/Examples folder. There should be all available examples in terms of references to example view controllers. Just put your newly created view controller as a reference to some of the provided sections or create an appropriate section for it:

func _someSectionItems() -> [Catalogizable.Type] {
    return [
        SomeOldFeatureViewController.self,
        SomeCoolFeatureViewController.self,
    ]
}

Now run Catalog scheme, and you should see your new cool feature on the list and be able to open it.

Writing tests

If the feature is not UI related, then we recommend writing tests for it. Tests should go inside the Tests folder - in appropriate category. On your disposal you have a few testing frameworks: Quick, Nimble, RxTest, RxBlocking, RxNimble. Also, you can write your tests in good ol' XCTest.

Take a look at currently written tests - and be creative :)

More Repositories

1

android_dbinspector

Android library for viewing, editing and sharing in app databases.
Kotlin
951
star
2

rails-handbook

Describing the development process used by the Infinum Rails Team.
Slim
763
star
3

FBAnnotationClustering

iOS library for clustering map notifications in an easy and performant way
Objective-C
713
star
4

Android-Goldfinger

Android library to simplify Biometric authentication implementation.
Java
653
star
5

ios-viper-xcode-templates

Used for generating template files for the VIPER architecture, which solves the common Massive View Controller issues in iOS apps.
HTML
576
star
6

phrasing

Edit phrases inline for your Ruby on Rails applications!
Ruby
545
star
7

eightshift-boilerplate

This repository contains all the tools you need to start building a modern WordPress theme, using all the latest front end development tools.
PHP
511
star
8

Android-GoldenEye

A wrapper for Camera1 and Camera2 API which exposes simple to use interface.
Kotlin
376
star
9

cookies_eu

Gem to add cookie consent to Rails application
Haml
269
star
10

dox

Automated API documentation from Rspec
Ruby
234
star
11

MjolnirRecyclerView

[DEPRECATED] This library is no longer maintained and it will not receive any more updates.
Java
218
star
12

Japx

Lightweight parser for the complex JSON:API (http://jsonapi.org/) structure.
Swift
152
star
13

flutter-charts

Customizable charts library for flutter.
Dart
142
star
14

datx

DatX is an opinionated JS/TS data store. It features support for simple property definition, references to other models and first-class TypeScript support.
TypeScript
138
star
15

learnQuery

Learn JavaScript fundamentals by building your own jQuery equivalent library
JavaScript
137
star
16

flutter-dasher

Dart
118
star
17

floggy

Customizable logger for dart and flutter applications.
Dart
117
star
18

android-complexify

An Android library which makes checking the quality of user's password a breeze.
Java
113
star
19

Android-Prince-of-Versions

Android library for handling application updates.
Java
104
star
20

android_connectionbuddy

Utility library for handling connectivity change events.
Java
94
star
21

eightshift-docs

A documentation website for Eightshift open source projects
MDX
84
star
22

Retromock

Java library for mocking responses in a Retrofit service.
Kotlin
68
star
23

eightshift-frontend-libs

Frontend library that exposes custom scripts and styles for modern WordPress projects
JavaScript
68
star
24

eightshift-libs

Library that is meant to be used inside Eightshift Boilerplate and Eightshift Boilerplate Plugin libs via composer in order to be able to easily set up a modern development process.
PHP
61
star
25

frontend-handbook

Our handbook based on 10 years of experience in Frontend/JS development
Slim
57
star
26

Locker

Securely lock your secrets under the watch of TouchID or FaceID keeper 🔒
Swift
50
star
27

emotion-normalize

normalize.css but for emotion.js
JavaScript
50
star
28

mobx-jsonapi-store

JSON API Store for MobX
TypeScript
48
star
29

Dagger-2-Example

Dagger 2 example project
Java
44
star
30

ios-prince-of-versions

Library used for easier versioning of your applications, allowing you to prompt your users to update the app to the newest version
Swift
43
star
31

android-sentinel

Sentinel is a simple one screen UI which provides a standardised entry point for tools used in development and QA alongside device, application and permissions data.
Kotlin
38
star
32

enumerations

Better Rails Enumerations
Ruby
37
star
33

kotlin-jsonapix

JsonApiX is an Android, annotation processor library that was made to transform regular Kotlin classes into their JSON API representations, with the ability to serialize or deserialize them to or from strings.
Kotlin
37
star
34

eightshift-boilerplate-plugin

This repository contains all the tools you need to start building a modern WordPress plugin.
PHP
36
star
35

mobx-collection-store

Data collection store for MobX
TypeScript
35
star
36

decoupled-json-content

JavaScript
30
star
37

wordpress-handbook

Official WordPress handbook at Infinum
Slim
30
star
38

webpack-asset-pipeline

🚀 A missing link for the asset pipeline alternative with Webpack.
JavaScript
30
star
39

ios-loggie

Simplify debugging by showing network requests of your app as they happen.
Swift
30
star
40

eightshift-forms

WordPress plugin project for Gutenberg forms
PHP
29
star
41

flutter-plugins-locker

Flutter plugin that secures your secrets in keychain using biometric authentication (Fingerprint, Touch ID, Face ID...).
Dart
29
star
42

default_rails_template

Default template for generating new Rails applications.
Ruby
27
star
43

media-blender

Easy and predictable SASS/SCSS media queries
CSS
26
star
44

android-collar

Gradle plugin which collects all analytics screen names, events and user properties for Android projects.
Kotlin
26
star
45

secrets_cli

CLI for storing and reading your secrets via vault
Ruby
25
star
46

flutter-plugins-japx

JSON API parser for Flutter
Dart
25
star
47

flutter-bits

Flutter
Dart
22
star
48

react-mobx-translatable

Make React components translatable using MobX
JavaScript
21
star
49

dungeons-and-dragons

🎲 Dungeons & Dragons Character builder and keeper (work in progress)
TypeScript
19
star
50

android-crash-handler

Utility library which handles crash handler configuration
Java
19
star
51

qa-handbook

Describing the processes used by the Infinum QA Team
Slim
18
star
52

iOS-Bugsnatch

Swift
18
star
53

eightshift-coding-standards

Eightshift coding standards for WordPress
PHP
16
star
54

jsonapi-query_builder

Ruby
14
star
55

thrifty-retrofit-converter

Retrofit converter which uses Thrifty for Apache Thrift-compatible serialization
Java
13
star
56

json-wp-post-parser

JSON Post Parser plugin parses your content and saves it as JSON available in REST posts and pages endpoints.
PHP
13
star
57

swift-style-guide

12
star
58

react-responsive-ssr

TypeScript
11
star
59

redbreast

iOS strong image typing library
Ruby
11
star
60

generator-infinitely-static

💫 Static page generator with routes support thats infinitely awesome
JavaScript
10
star
61

ngx-hal

Angular datastore library with HAL support
TypeScript
10
star
62

fiscalizer

A gem for fiscalizing invoices in Croatia using Ruby.
Ruby
9
star
63

ember-form-object

Form object pattern in ember apps
JavaScript
9
star
64

JS-React-Example

Infinum's way of doing React
TypeScript
9
star
65

js-talks

✨ Interesting talks and mini lectures about new and cool stuff that's going on in the world of JS development, organized by the Infinum JS team
9
star
66

android-handbook

Slim
8
star
67

js-linters

Infinum's JS team linter rules
TypeScript
7
star
68

auth-worker

OAuth2 Service Worker handler
TypeScript
7
star
69

array_validator

Array Validations for ActiveModel
Ruby
7
star
70

eightshift-storybook

Storybook package for Eightshift-Boilerplate
7
star
71

icomcom-react

💬 A React component for handling communication with content in <iframe />
JavaScript
7
star
72

dox-demo

Demo app for dox gem:
HTML
6
star
73

android-localian

Android library that manages your application locale and language across multiple Android API levels.
Kotlin
6
star
74

ios-handbook

Slim
6
star
75

flutter-prince-of-versions

Library used for easier versioning of your applications, allowing you to prompt your users to update the app to the newest version
Dart
6
star
76

learn-react

👋 ⚛️ Learn React by implementing your own!
TypeScript
5
star
77

I18n-js

Javascript library for string internationalization.
CoffeeScript
5
star
78

ios-collar

In-app analytics debugging tool
Swift
5
star
79

ngx-form-object

Reactive forms manager
TypeScript
5
star
80

ios-sentinel

Developer’s toolbox for debugging applications
Swift
4
star
81

mobx-keys-store

Keys store for MobX
TypeScript
4
star
82

mysterious-sampler

Swift
4
star
83

rails-infinum-jsonapi_example_app_old

Ruby
4
star
84

phrasing_plus

Phrasing extension for editing images inline
Ruby
4
star
85

eightshift-web-components

Web components library that exposes custom scripts and styles for modern WordPress projects
Svelte
4
star
86

Install-Flutter-Version-Manager-Bitrise

Shell
4
star
87

infinum_setup

Setup script
Ruby
4
star
88

loglevel-filesave

Loglevel plugin for saving logs to the file
JavaScript
4
star
89

eightshift-blocks

Project dedicated to use inside WP Boilerplate and WP Boilerplate Plugin projects via composer to be able to easily setup modern development process for Gutenberg blocks..
PHP
3
star
90

data_sync

Rails plugin for database and file synchronization
Ruby
3
star
91

docusaurus-theme

Infinum Docusaurus teme
JavaScript
3
star
92

next-passenger

next.js with passenger proof of concept
Dockerfile
3
star
93

SocketMan

Android WebSocket client app
Java
3
star
94

react-asset-collector

Collect assets from react components so you can do HTTP2 push
JavaScript
3
star
95

rails_log_book

Ruby
3
star
96

mina-secrets

Mina plugin for secrets_cli gem
Ruby
2
star
97

ngx-nuts-and-bolts

A collection of commonly used pieces of Angular-related code that we use everyday at Infinum.
TypeScript
2
star
98

money_with_date

Extension for the money gem which adds dates to Money objects.
Ruby
2
star
99

blog-android-permissions

Java
2
star
100

JS-RxWorkshop

TypeScript
2
star