Giter Site home page Giter Site logo

remizorrr / gityourfeedback Goto Github PK

View Code? Open in Web Editor NEW

This project forked from gabek/gityourfeedback

0.0 1.0 0.0 8.67 MB

Let users submit feedback, with screenshots, directly from your iOS app to Github Issues

License: MIT License

Swift 56.37% Ruby 0.28% Objective-C 42.04% Shell 1.31%

gityourfeedback's Introduction

GitYourFeedback

Platform version Swift Version

A lot of organizations run on GitHub, not just for the code repositories, but also for the heavy use of Issues, the bug tracking/feedback reporting tool. Instead of routing your users to GitHub and expecting them to file issues, this is an option to support it right from inside your iOS application.

Example

To run the example project:

  • Clone the repo, and run pod install from the Example directory.
  • Edit Config.swift and add your GitHub details (user, api key, repo) and Google Cloud Storage bucket name.
  • This must be a publicly accessible Google Cloud Storage bucket, as it needs permissions to upload and read the file.
  • Run the project either on a device and take a screenshot, or press the button in the simulator to bring up the feedback interface.

The client will look like:

Screenshot

While the resulting GitHub issue will look like:

Screenshot

Requirements

  • Google Cloud Storage bucket for storing the screenshots.
  • GitHub repository for storing the issues.

Dependencies

  • If you install via Cocoapods these dependencies are handled for you, as they're listed in the Podspec.
  • CLImageEditor is used for editing the screenshot after it's taken. This can be fore redacting personal information or calling out speficic items.
  • GRMustache is used to enable the Mustache templating used for issueTemplate.md. It allows iteration of the actual issue content without code.

Installation

GitYourFeedback is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "GitYourFeedback"

Or, if you’re using Carthage, add GitYourFeedback to your Cartfile:

github "gabek/GitYourFeedback"

  1. Generate a Personal Access Token for the GitHub user who will be saving the issues in your repo.

  2. In your project's Info.plist add a key of NSPhotoLibraryUsageDescription with a string explaining that your use of the photo library is for submitting screenshots. This is user-facing so use your own judgement.

  3. Create a FeedbackReportingOptions object and fill in the properties. As simple as:

let feedbackOptions = FeedbackReportingOptions(token: "abc123", user: "repoman", repo: "repoman/myRepository")

Alternatively you can create your own struct that adheres to the FeedbackOptions protocol and use that instead. So you don't have to keep all the intialization values inline.

  1. In your AppDelegate, or some other long-lived controller:
let feedbackReporter = FeedbackReporter(options: feedbackOptions, datasource: self)

You'll need to implement FeedbackReporterDatasource in order to tell the FeedbackReporter where to upload screenshots. The simplest implementation would be something like:

func uploadUrl(_ completionHandler: (String) -> Void) {
    let filename = String(Date().timeIntervalSince1970) + ".jpg"
    let url = "https://www.googleapis.com/upload/storage/v1/b/mybucketname.appspot.com/o?name=\(filename)"
    completionHandler(url)
}

This is also where you could generate, possibly from your backend, a signed URL so the Google Cloud Storage bucket doesn't need to be completely public.

There are other methods you can implement as well, to provide additional information in the issues that get filed.

func additionalData() -> String?
func issueLabels() -> [String]?

Presenting the Feedback interface

The interface will automatically display as a result of a user taking a screenshot. If this is the first time the user has taken a screenshot in your application they will be greeted with an iOS permissions dialog stating they need to grant your app access to the user's Photos in order to use the screenshot. You may want to emphasize that the user should accept this. It uses the copy you added in your Info.plist's NSPhotoLibraryUsageDescription key.

You could also manually fire feedback.display() with an optional specific view controller to present from. With this approach the user will have to select their own screenshot manually if they want to send one.

Demo

Author

Gabe Kangas, [email protected]. @gabek

Icon credits: designed by Madebyoliver from Flaticon.

License

GitYourFeedback is available under the MIT license. See the LICENSE file for more info.

gityourfeedback's People

Contributors

gabek avatar dcaunt avatar deltaheavy avatar funky-monkey avatar davidebest avatar readmecritic avatar sbshah97 avatar tanishgupta16 avatar

Watchers

Anton Remizov avatar

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.