Giter VIP home page Giter VIP logo

bulky's Introduction

Hi, I'm Bhrugen ๐Ÿ‘‹

I am a passionate software developer with passion to share knowledge and tech programming!

YouTube URL

LinkedIn URL

Website URL

Visitor count

bhrugen


## ๐Ÿ“ˆ GitHub Stats

Bhrugen's GitHub Stats

  • ๐Ÿ”ญ Iโ€™m currently working on DotNetMastery's new content!
  • ๐Ÿ“ซ How to reach me: [email protected]
  • ๐Ÿ˜„ Pronouns: bru-gain!

bulky's People

Contributors

bhrugen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bulky's Issues

Section 8 - Lecture 1

Hi teacher, At section 8 lecture 1, I can not add the Scaffold, when I'm trying to add it shows errors that: "There was an error running the selected code generator: 'Package restore failed. Rolling back package changes for 'ProjectName''". Although I have installed the package as similar as the video lecture.

i am facing this exception after adding identity

i am facing this exception after adding identity

System.AggregateException: 'Some services are not able to be constructed (Error while validating the service descriptor 'ServiceType:

BulkyBook.DataAccess. Repository. IRepository.IUnitO fWork Lifetime: Scoped ImplementationType: BulkyBook.DataAccess. Repository.UnitOfWork': 'BulkyBook.DataAccess.ApplicationDbContext' while attempting to activate

Unable to resolve service for type

'BulkyBook.DataAccess. Repository.UnitOfWork'.

Can anyone tell me it's solution
I tried everyday but not able to run the program

I can't figure out what I am doing wrong Lecture 176

I don't know what happened in this section,
<input value="@Model.OrderHeader.OrderDate.ToShortDateString()" readonly type="text" class="form-control" /> on my details page I get this error and it just started. I don't know how the reference is null if it i showing properly on the page
System.NullReferenceException: 'Object reference not set to an instance of an object.', Yet you can see it working properly before I press the update order details button. I can't figure out why it is null and I am getting frustrated because I just got here and figured out everything else I had errors with. I have it on this repository https://github.com/althepal78/MellysUnderGroundCuisineMUCDB
because I am going to change it from book to my friends site ;)

[suggestion] tinymce from cdnjs ( section 6, lesson 122 )

In the section 6, lesson 122. When teacher show us the tinymce, he suggest the uso from official website but we can use from cdnjs too. It's very simple to use

<script src="https://cdnjs.cloudflare.com/ajax/libs/tinymce/6.3.1/tinymce.min.js" integrity="sha512-eV68QXP3t5Jbsf18jfqT8xclEJSGvSK5uClUuqayUbF5IRK8e2/VSXIFHzEoBnNcvLBkHngnnd3CY7AFpUhF7w==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>

The drawback is a label "upgrade" inside component as you see ๐Ÿ‘‡

image

Section 8 - lecture 1/2

Hi,
I can adding identity scaffold but when I try to start IIS express I have this error in program.cs on var app = builder.Build();

"System.AggregateException: 'Some services are not able to be constructed (Error while validating the service descriptor 'ServiceType: BookWebsite.DataAccess.Repository.IRepository.IUnitOfWork Lifetime: Scoped ImplementationType: BookWebsite.DataAccess.Repository.UnitOfWork': Unable to resolve service for type 'BookWebsite.DataAccess.ApplicationDbContext' while attempting to activate 'BookWebsite.DataAccess.Repository.UnitOfWork'.)'"

I searched online but I can't find solution....it's weird because I follow all step on the video.

after Scaffold Rising This issue please solve my problem

Section 8.2 after Scaffold Rising This issue please solve my problem

On Program.cs
var app= builder.Build();
System.AggregateException 'Some services are not able to be contructed(Error while validating the service the sevice descriptor service Type:
DataAccess.Repository.IRepository.IUnitWork

builder (Microsoft.AspNetCore.Builder.WebApplicationBuilder)
Error

Select files in folder

It would be helpful if, rather than selecting files in Bulky, I could select files in a folder and open them in Bulky (using the Open With feature). For instance, I can do this in EasyTAG.

Edit not working properly, based on my selected item it is display different one.

--------index.cshtml----------------------

Product List

ll ย  create new Product
    </div>
</div>
<br />

<h1>CoverType</h1>
<div class="row">
    <div class="col-10">
        <table id="tblData" class="table  table-bordered table-striped" style="width:100%">
            <thead>

                <tr>

                    <th>Title</th>

                    <th>ISBN</th>

                    <th>Price</th>

                    <th>Cateogry</th>

                    <th>CoverType</th>

                    
                    <th> button</th>
                </tr>
            </thead>
            @* <tbody>
            @foreach (var Obj in Model)
            {
            <tr>
            <td width="50px">
            @Obj.NameC
            </td>

            <td>
            <div class="w-75 btn-group" role="group">
            <a asp-controller="CoverType" asp-action="Edit" asp-route-id="@Obj.IdC" class="btn btn-primary mx-2"><i class="bi bi-pencil-square"></i>Edit</a>

            <a asp-controller="CoverType" asp-action="Delete" asp-route-id="@Obj.IdC" class="btn btn-primary mx-2"><i class="bi bi-trash3"></i>Delete</a>
            </div>

            </td>
            </tr>
            }
            </tbody>*@

        </table>
    </div>

    <div class="col-2">
        
      @*      <div class="col-2 p-4">
                <img src="@Model.Product.ImgUrl" width="100%"
                     style="border-radius:5px; border:1px solid #bbb9b9" />*@
        
    </div>
    </div>

@section Scripts
{
<script src="~/js/Product.js"></script>
}
=============================upsert.cshtml========================
@model BulkyBook.Models.ViewModel.ProductVM

<div class="row">

    <div class="col-10">
        <div class=" border p-4 p-3 row">
            <div class="col-12 pb-2">
                <h2 class="text-primary"> @(Model.Product.id != 0 ? "Update" : "Create") Product</h2>
            </div>
            @* Summerize the error message ..*@
            @*<div asp-validation-summary="All"></div>*@
            <div class="mb-3">
                <label asp-for="Product.Title"></label>
                <input asp-for="Product.Title" class="form-control" />
                <span asp-validation-for="Product.Title" class="text-danger"></span>
            </div>
            <div class="mb-3">
                <label asp-for="Product.Description"></label>
                <textarea asp-for="Product.Description" rows="3" class="form-control"></textarea>
                <span asp-validation-for="Product.Description" class="text-danger"></span>
            </div>
            <div class="mb-3 col-6">
                <label asp-for="Product.ISBN"></label>
                <input asp-for="Product.ISBN" class="form-control" />
                <span asp-validation-for="Product.ISBN" class="text-danger"></span>
            </div>
            <div class="mb-3 col-6">
                <label asp-for="Product.Author"></label>
                <input asp-for="Product.Author" class="form-control" />
                <span asp-validation-for="Product.Author" class="text-danger"></span>
            </div>
            <div class="mb-3 col-6">
                <label asp-for="Product.Price"></label>
                <input asp-for="Product.Price" class="form-control" />
                <span asp-validation-for="Product.Price" class="text-danger"></span>
            </div>
            <div class="mb-3 col-6">
                <label asp-for="Product.Price50"></label>
                <input asp-for="Product.Price50" class="form-control" />
                <span asp-validation-for="Product.Price50" class="text-danger"></span>
            </div>
            <div class="mb-3 col-6">
                <label asp-for="Product.Price100"></label>
                <input asp-for="Product.Price100" class="form-control" />
                <span asp-validation-for="Product.Price100" class="text-danger"></span>
            </div>
            <div class="mb-3 col-6">
                <label asp-for="Product.ListPrice"></label>
                <input asp-for="Product.ListPrice" class="form-control" />
                <span asp-validation-for="Product.ListPrice" class="text-danger"></span>
            </div>
            <div class="mb-3">
                <label asp-for="Product.ImgUrl"></label>
                <input type="file" id="uploadBox" name="file" class="form-control" />

            </div>
            <div class="mb-3  col-6">
                <label asp-for="Product.categoryId"></label>
                <select asp-for="Product.categoryId" asp-items="@Model.categoryList" class="form-control">
                    <option disabled selected>--Select--</option>
                </select>
                <span asp-validation-for="Product.categoryId" class="text-danger"></span>
            </div>
            <div class="mb-3  col-6">
                <label asp-for="Product.CoverTypeId"></label>
                <select asp-for="Product.CoverTypeId" asp-items="@Model.CoverTypeList" class="form-control">
                    <option disabled selected>--Select--</option>
                </select>
                <span asp-validation-for="Product.CoverTypeId" class="text-danger"></span>
            </div>
            <div class="col-12">

                @if (Model.Product.id != 0)
                {
                    <button type="submit" class="btn btn-primary" style="width:150px">Update</button>
                }
                else
                {
                    <button type="submit" onclick="return Validateinput()" class="btn btn-primary" style="width:150px">Create</button>
                }

                <a asp-controller="Product" asp-action="index">
                    Back to the List
                </a>
            </div>
        </div>
    </div>
   
    <div class="col-2 p-8">
        <img src="@Model.Product.ImgUrl" width="100%"
         style="border-radius:5px; border:1px solid #bbb9b9"/>

       @* <img src="~/images/products/@Html.DisplayFor(model =>model.Product.ImgUrl)" style="height:200px;width:200px;" />*@
        @*<img src="/images/products/16056dd8-e098-49d3-8030-161f3ac9120c.jpg" width="100%"
             style="border-radius:5px; border:1px solid #bbb9b9" />*@
    </div>

</div>

@section Scripts{
@{

}
<script>
function Validateinput()
{
if(document.getElementById("uploadBox").value=="")
{
swal({

                text: "please upload the image!",
                icon: "error",
                button: "Aww yiss!",
            });
            return false;
        }
        else
        {
            return true;
        }
    }
</script>
}

============================productcontroller==================================
using Bulkybook.DataAccess.Repository;
using Bulkybook.DataAccess.Repository.IRepository;
using BulkyBook.DataAccess;
using BulkyBook.Models;
using BulkyBook.Models.ViewModel;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.DotNet.Scaffolding.Shared.Messaging;
using Microsoft.EntityFrameworkCore;

namespace BulkybookWeb.Areas.Admin.Controllers
{
public class ProductController : Controller
{

    private readonly IUnitofWork _UnitofWork;
    private readonly  IWebHostEnvironment _hostEnvironment;


    public ProductController(IUnitofWork unitofWork, IWebHostEnvironment hostEnvironment)
    {
        _UnitofWork = unitofWork;
        _hostEnvironment = hostEnvironment; 
    }
    public IActionResult Index()
    {
        //removed the list and Enu
        //var categories= _DBcontext.categories.ToList();

        //IEnumerable<CoverType> objCoverType = _UnitofWork.CoverType.GetAll();
        //return View(objCoverType);

        //var products = _UnitofWork.Product.GetAll(includeproperties: "Category,CoverType");

        return View();
    }


    //===========================================Edit=================================================//
    public IActionResult Upsert(int? id)
    {
        ProductVM productVM = new()
        {
            Product = new(),

                categoryList = _UnitofWork.Category.GetAll().Select(i => new SelectListItem
                {
                    Text = i.Name,
                    Value = i.Id.ToString()
                }),

            CoverTypeList = _UnitofWork.CoverType.GetAll().Select(i => new SelectListItem
            {
                Text = i.NameC,
                Value = i.IdC.ToString()
            }),

        };

        
        // V.1===> ...
        // this below code used for ViewBag and Viewdata...//
        //we are using viewModel instead of viewbage and ViewModel//
        //so this below code commented//
        //     IEnumerable<SelectListItem> categoryList = _UnitofWork.Category.GetAll().Select(
        //    u => new SelectListItem
        //    {
        //        Text = u.Name,
        //        Value = u.Id.ToString()
        //    }
        //); ;

        //    IEnumerable<SelectListItem> CoverTypeList = _UnitofWork.CoverType.GetAll().Select(
        //       u => new SelectListItem
        //       {
        //           Text = u.NameC,
        //           Value = u.IdC.ToString()
        //       }

        //   ); ;

        // V.1<=== ...
        if (id == 0 || id == null)
        {
            
            //create the product
            // V.1===> ...
            //ViewBag.categorylist=categoryList;
            //ViewData["CoverTypeList"] = CoverTypeList;
            //V.1 <===
            return View(productVM);
        }
        else
        {

            //Update the product
            productVM.Product=_UnitofWork.Product.GetFirstOrDefault(u=>u.id == id);   
            return View(productVM);
        }

      
    }

    //post
    [HttpPost]
    //eliminating cross request(unwanted request)
    [ValidateAntiForgeryToken]
    public IActionResult Upsert(ProductVM Obj,IFormFile file)
    {
        if (ModelState.IsValid)
        {
            string wwwRootPath = _hostEnvironment.WebRootPath;
            if(file!=null)
            {
                string filename=Guid.NewGuid().ToString();  
                var uploads=Path.Combine(wwwRootPath, @"images\ProductImg\");
                var extension = Path.GetExtension(file.FileName);

                //old need to remove before updating check that logic//
                if(Obj.Product.ImgUrl!=null)
                {
                    var oldpath = Path.Combine(wwwRootPath, Obj.Product.ImgUrl.TrimStart('\\'));
                    if(System.IO.File.Exists(oldpath))
                    {
                        System.IO.File.Delete(oldpath);
                    }
                }

                using (var filestream = new FileStream(Path.Combine(uploads, filename + extension), FileMode.Create))
                {
                    file.CopyTo(filestream);
                }
                Obj.Product.ImgUrl= @"images\ProductImg\" + filename + extension;
            }
            if(Obj.Product.id==0)
            {
               _UnitofWork.Product.Add(Obj.Product);
            }
            else
            {
                _UnitofWork.Product.update(Obj.Product);
            }
          
            _UnitofWork.save();
            TempData["success"] = "The product created SuccessFully";
            return RedirectToAction("index");
        }
        return View(Obj.Product);

    }


    //===========================================Delete=================================================//
    //public IActionResult Delete(int? id)
    //{
    //    if (id == 0 || id == null)
    //    {
    //        return NotFound();
    //    }
     
    //    var CoverTypefromdefult = _UnitofWork.CoverType.GetFirstOrDefault(u => u.IdC == id);
    
    //    if (CoverTypefromdefult == null)
    //    {
    //        return NotFound();
    //    }
    //    return View(CoverTypefromdefult);
    //}

   
    #region API CALLS
    [HttpGet]
    public IActionResult GetAll()
    {
        var ProductList = _UnitofWork.Product.GetAll(includeproperties: "Category,CoverType");
        return Json(new { data = ProductList });
    }


    //post

    //Eliminating cross request(unwanted request)
    
    [HttpDelete]
    public IActionResult Delete(int? id)
    {
        var obj = _UnitofWork.Product.GetFirstOrDefault(u => u.id == id);
        if (obj == null)
        {
            return Json(new {success=false,Message="Error while Deleting"});   
        }

        var oldpath = Path.Combine(_hostEnvironment.WebRootPath,obj.ImgUrl.TrimStart('\\'));
        if (System.IO.File.Exists(oldpath))
        {
            System.IO.File.Delete(oldpath);
        }
        _UnitofWork.Product.Remove(obj);
        _UnitofWork.save();       
        return Json(new { success = true, Message = "The product Deleted SuccessFully" });
       

        //return View(Obj);

    }
    #endregion
}

}

Cancel Order Stripe Error Lecture 178

So the PaymentIntentId is null and I can't find when we ever actually changed that. Before maybe stripe didn't care, but it does now. Does anyone remember?

  [HttpPost]
        [Authorize(Roles = SD.Role_Admin + "," + SD.Role_Employee)]
        [ValidateAntiForgeryToken]
        public IActionResult CancelOrder()
        {
            var orderHeader = _unitOfWork.OrderHeader.GetFirstOrDefault(u => u.Id == OrderVM.OrderHeader.Id, tracked: false);
            if (orderHeader.PaymentStatus == SD.PaymentStatusApproved)
            {
                var options = new RefundCreateOptions
                {
                    Reason = RefundReasons.RequestedByCustomer,
                    PaymentIntent = orderHeader.PaymentIntentId // PaymentIntentId is null where did we actually update this Stripe dont like this 
                };
                var service = new RefundService();
                Refund refund = service.Create(options);
                _unitOfWork.OrderHeader.UpdateStatus(orderHeader.Id, SD.StatusCancelled, SD.StatusRefunded);
            }
            else
            {
                _unitOfWork.OrderHeader.UpdateStatus(orderHeader.Id, SD.StatusCancelled, SD.StatusCancelled);
            }
            _unitOfWork.Save();
            TempData["Success"] = "Order Cancelled Successfully.";
            return RedirectToAction("Details", "Order", new { orderId = OrderVM.OrderHeader.Id });
        }

My discord althepal78#9986

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.