Friday, November 15, 2019
Online Shop Web Design
Online Shop Web Design Shop Online Web Application system, allows the customer to shop online for their required items, and also represents an associated window for the orders selected by the customer. Each Customer will be having their desired page when they login or signup into the Shop Online Web Application. The Customer can select the required items into the cart without logging into their account. But the purchase of the items in the cart has to be done using their registered account in the System using either credit or debit card, they can also cancel the payment or return the items purchased only after a detailed specification of the reason for it. The Logged In customers will be having a wish-list function so that they can put the items they wanted to buy in the wish-list and can buy later. There is one more function price checker, which intimates the customer regarding the item selected by them whenever there is a cut-off in the price of that item, but only for a few selected items. There is also a desired page for the history of items bought by the customers.à The customer can maintain their account and address details. The customer also can reset their password if forgotten by getting a link to reset password to their concerned web mail. Requirements for the system are we will be using Ruby On Rails for the development, and for the web design HTML, Javascript and CSS. The Backend is managed by MySQL. The Database for the System consists of shop online development database which consist of tables for categories, products, product images, users. The Columns for the categories are id, title, weight, products_counter, created_at, updated_at, ancestry. The Columns for products are id, category_id, titile, status, amount, uuid, msrp, price, description, created_at, updated_at, lprice. The Columns for the product images are id, product_id, weight, image_file_name, image_content_type, image_file_sizee, image_updated_at, created_at, updated_at. The Columns for the users are id, email, crypted_password, created_at, updated_at,activation_state, activation_token, activation_token_expires_at, remember_me_token, remember_me_token_expires_at, reset_password_token, reset_password_token_expires_at, reset_password_email_sent_at. Entity Relationship Diagram: FIG. 1 (Relationship between the tables) In ruby on rails the web application code is divided into model, view, controller. Model represents the database access, View represents the html pages before and after access of the database, and controller represents the action to be done once the we get a request from the Web Application. Model Code: (Category) class Category < ApplicationRecord à validates :title, presence: { message: Empty name! } à validates :title, uniqueness: { message: Repeated name! } à has_ancestry orphan_strategy: :destroy à has_many :products, dependent: :destroy à before_validation :correct_ancestry à def self.grouped_data à à à self.roots.order(weight desc).inject([]) do |result, parent| à à à à à row = [] à à à à à row { where(status: Status::On) } à module Status à à à On = on à à à Off = off à end à private à def set_default_attrs à à à self.uuid = RandomCode.generate_product_uuid à end end (product image): class ProductImage < ApplicationRecord à belongs_to :product à has_attached_file :image, styles: { à à à à à small: 60^x60, à à à à à middle: 200^x200, à à à à à big: 960x à } à validates_attachment_content_type :image, content_type: /Aimage/.*Z/ à validates_attachment_size :image, in: 0..5.megabytes end (User): class User < ApplicationRecord à authenticates_with_sorcery! à attr_accessor :password, :password_confirmation à validates_presence_of :email, message: Email cannot be empty! à validates_format_of :email,message: Email format mistake!, à à à à à à à à à à à à à à à à à à à à à with: /w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*/, à à à à à à à à à à à à à à à à à à à à à à à à à à if: proc { |user| !user.email.blank? } à validates :email, uniqueness: true à validates_presence_of :password, message: Password cannot be empty!, à à à à à à à à à à à à à à à à à à à à à à à if: :need_validate_password à validates_presence_of :password_confirmation, message: Password confirm cannot be empty!, à à à à à à à à à à à à à à à à à à à à à à à if: :need_validate_password à validates_confirmation_of :password,message: Password not right , à à à à à à à à à à à à à à à à à à à à à à à à à à à if: :need_validate_password à validates_length_of :password, message: Password at least 6 digits, minimum: 6, à à à à à à à à à à à à à à à à à à à à à if: :need_validate_password à def username à à à self.email.split(@).first à end à private à def need_validate_password à à à à self.new_record? || (!self.password.nil?||!self.password_confirmation.nil?) à end end Controller Code: (Category) class CategoriesController < ApplicationController à def show à à à @categories = Category.grouped_data à à à @category = Category.find(params[:id]) à à à @products = @category.products.onshelf.page(params[:page] || 1).per_page(params[:per_page] || 12) à à à à à à à à à à à à à à à à à à à .order(id desc).includes(:main_product_image) à end end (Product): class ProductsController < ApplicationController à def show à à à @categories = Category.grouped_data à à à @product = Product.find(params[:id]) à end end (Session): class SessionsController < ApplicationController à def new à end à def create à à à if user= login(params[:email],params[:password])#loginsorcery à à à à à flash[:notice]=You have logged in! à à à à à redirect_to root_path à à à else à à à à à flash[:notice]=Emails or Password mistake à à à à à redirect_to new_session_path à à à end à end à def destroy à à à logout à à à flash[:notice]=You already logged out! à à à redirect_to root_path à end end (User): class UsersController < ApplicationController à def new à à à @user = User.new à end à def create à à à @user= User.new(params.require(:user).permit(:email,:password,:password_confirmation)) à à à if @user.save à à à à à flash[:notice] = sign up successfully! Please log in à à à à à redirect_to new_session_path à à à else à à à à à render action: :new à à à end à end end (Welcome): class WelcomeController < ApplicationController à def index à à à @categories = Category.grouped_data à à à @products = Product.onshelf.page(params[:page] || 1).per_page(params[:per_page] || 12) à à à à à à à à à à à à à à à à à à à .order(id desc).includes(:main_product_image) à end end
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.