Skip to content

rubysolo/excelerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Excelerator

Excel spreadsheet generation for Elixir

Installation

If available in Hex, the package can be installed as:

  1. Add excelerator to your list of dependencies in mix.exs:

    def deps do [{:excelerator, "~> 0.0.1"}] end

Usage

  1. Import Excelerator.Workbook into your module, then generate the XML content:

    workbook do worksheet "My Sheet" do row do cell "Name" cell "Status" end

       row do
         cell "Elixir"
         cell 1
       end
     end
    

    end

    => <Workbook ...

Usage with Phoenix

  1. Use Excelerator.Phoenix in your controller:

    defmodule MyApp.MyController do use MyApp.Web, :controller use Excelerator.Phoenix

  2. Import Excelerator.Workbook into your view module:

    defmodule MyApp.MyView do use MyApp.Web, :view import Excelerator.Workbook

    (Alternatively, add the use / import statements to the appropriate sections of web/web.ex, which will make excelerator available in all controllers/ views.)

  3. Call xls in your controller action to send content as a file download:

    def show(conn, %{"format" => "xls"} = params) do xls conn, "show.xls", favorite: "Elixir" end

  4. Create web/templates/RESOURCE/NAME.xls.exs

    workbook do worksheet "My Sheet" do row do cell "Name" cell "Status" end

       row do
         cell assigns.favorite
         cell 1
       end
     end
    

    end

About

Excel spreadsheet generation for Elixir

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages