Git Product home page Git Product logo

coding_task's Introduction

Ikonic Coding Challenge ๐Ÿ’ป

Hello and welcome to the Ikonic Coding Challenge. Thank you for your interest in becoming part of our team. The purpose of this challenge is to give you a feeling for the tasks that await you at Ikonic and to familiarize you with our current stack.

The whole process should not take you longer than a few hours.

PLEASE NOTE: For us the most important aspect we are looking for in the code challenge is that you respect the guidelines and specifications given in the description. This is the only way we can identify whether you are able to follow the structure of our project in the way that we imagine it.

Tech Stack for this challenge ๐Ÿ˜

  • Laravel 9, PHP 8
  • Bootsrap 5
  • JQuery
  • MySQL

Please use the given UI componentes / blade files for the frontend, and focus on the backend only with a bit of Jquery.

The project in production is very similar: A Laravel 8 monolith + Bootsrap + Jquery. In the future, however, the whole thing will probably be rewritten to a REST API + Flutter / React Native.

Getting Started ๐Ÿƒ

  • Create a local copy of the repository.
  • Make sure you have xxamp or something similiar.
  • Create a database, name it 'Ikonic_coding_challenge'.
  • Setup .env file
  • Run composer install and php artisan key:generate.
  • When you see the login page, head over the register page, create an account and log in. After that you should see some of the components in the images below and you can get started in the network_connections.blade.php file.

Objective โœ…

Demo Video:

demo.video.mp4

Develop common connection features of social media platforms. In detail:

As a user:

  • when I click on "Suggestions", I want to be able to see all the other users I am not yet connected to, who I have not sent an invitation to, and who have not sent me an invitation.

  • When I click on "Connect" I want to send this user an request to connect.*

    grafik

  • when I click on "Sent Request", I want to see all the requests I have sent to connect.

  • When I click on "Withdraw Request" I want to withdraw my request.*

    grafik

  • when I click on "Received Requests", I want to see all the requests that have been sent to me

  • when I click on "Accept", I want to add this user to my network.*

    grafik

  • when I click on "Connections", I want to see all my connections.

  • when I click on "Remove Connection", I want to remove this user from my network.*

    grafik

  • when I click on "Connections in common", I want to see all connections in common with that user.

    grafik

Further requirements:

  • There should always be only 10 entries shown at the beginning, when clicking "Load more", then 10 more at a time, once there are no more entries, the "Load more" button should disappear. This applies to "Connections", "Sent Requests", "Received Requests", "Connections" as well as "Connections in common".

    grafik

  • The brackets should always contain the total number of the respective categories.

    grafik

  • To test all of the above please include seeders and factories, to generate suggestions, requests by other users and connections in common with the command:

    DatabaseSeeder.php php artisan migrate --seed. Connections could then be tested by accepting a request.

    <?php
    
    namespace Database\Seeders;
    
    use Illuminate\Database\Seeder;
    use Database\Seeders\UsersSeeder;
    use Database\Seeders\RequestsSeeder;
    use Database\Seeders\ConnectionsInCommonSeeder;
    use Illuminate\Database\Console\Seeds\WithoutModelEvents;
    
    class DatabaseSeeder extends Seeder
    {
        /**
         * Seed the application's database.
         *
         * @return void 
         */
        public function run()
        {
            $this->call(UsersSeeder::class);
            $this->call(RequestsSeeder::class);
            $this->call(ConnectionsInCommonSeeder::class);
        }
    }    
    
    
  • If there are no connections in common, the button should get the class 'disabled'.

  • All new routes should be written into a new routing file (e.g. userConnection.php), that must be registered inside the RouteServiceProvider.php file.

  • There are blade components such as connection, request and so on. You can use all of them or decide to only use one component with if clauses.

  • Before each ajax call (only for getting suggestions, request and connections), show the loading skeletons and hide them after a successfull response from the server.

  • Javascript code should be written in the main.js file

*(HTML element should disappear afterwards)

Coding and naming conventions ๐Ÿšจ

  • For Controllers please check out the following video: https://www.youtube.com/watch?v=MF0jFKvS4SI or have a look at https://github.com/adamwathan/laracon2017. The core idea is to try and stick to the 7 standard REST/CRUD actions in your controllers:

    • Index
    • Show
    • Create
    • Store
    • Edit
    • Update
    • Destroy
  • Name HTML ids in snake_case.

  • Javascript & PHP variables in camelCase.

  • Make sure that your code is readable for others and include comments in important places. (Guideline: Code = How?, Comment = What?)

  • There are a few pre-built Javascript functions in the helper.js file to help you work with AJAX. You can use them, but you don't have to. But please stick to using Jquery.

When you are done ๐ŸŽ–๏ธ

  • Please check again if all requirements have been done as described. If there are things that need explanation, add them as a text message in your repository (Github Conversations).
  • Reply to a mail containing a link to a private repository with your code or a zip file.

coding_task's People

Contributors

wahid-alii avatar

Stargazers

 avatar

Watchers

 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.