kouluelixir
I am a beginner making a code with module. Employee module has a struct and a function. Employees have names, id’s, salaries and jobs. I have gotten updating jobs and salaries to work.
I still need for the employee id to update for each new employee. I also want to be able to assign a first and last name for each new employee. I tried to do that following this: https://inquisitivedeveloper.com/lwm-elixir-18/ (‘Packaging Struct Data and Functions’). But for some reason, it didn’t work, even if I copied their code.
Is this possible? Thank you in advance.
defmodule Employee do
defstruct firstName: "", lastName: "", id: 0, salary: 0, job: :none
def new() do
%Employee{}
end
def promote(employee) do
case employee.job do
:none -> employee = %{employee | job: :coder, salary: 2000}
:coder -> employee = %{employee | job: :designer, salary: 4000}
:designer -> employee = %{employee | job: :manager, salary: 6000}
:manager -> employee = %{employee | job: :ceo, salary: 8000}
end
end
def increment_id(employee) do
%Employee{employee | id: employee.id + 1}
end
end
employee = Employee.new("John", "Smith")
IO.puts("Employee name: #{employee.firstName} #{employee.lastName}. ID: #{employee.id}.
Job and salary: #{employee.job}, #{employee.salary}")
employee = Employee.promote(employee)
IO.puts("Employee name: #{employee.firstName} #{employee.lastName}. ID: #{employee.id}.
Job and salary: #{employee.job}, #{employee.salary}")
employee = Employee.promote(employee)
IO.puts("Employee name: #{employee.firstName} #{employee.lastName}. ID: #{employee.id}.
Job and salary: #{employee.job}, #{employee.salary}")
employee = Employee.demote(employee)
IO.puts("Employee name: #{employee.firstName} #{employee.lastName}. ID: #{employee.id}.
Job and salary: #{employee.job}, #{employee.salary}")
employee2 = Employee.new("Jane", "Doe")
IO.puts("Employee name: #{employee2.firstName} #{employee2.lastName}. ID: #{employee2.id}.
Job and salary: #{employee2.job}, #{employee2.salary}")
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 8 of 8 Posts
Matsa59
Hello, let’s explain step by step
This line we call the function
new/2in a module calledEmployee. In your case this function doesn’t exist. You defined the functionnew/0that doesn’t take any parameter.So let’s update our code to have the right function:
If you have any other question just ask
Have a great day
edit : Try to create a function
display/1that take an employee as parameter. Then simply callEmployee.display(employee)to execute theIO.puts/1The main objectives of Modules is to reduce the code size meaning when you can factor something, create a function.
kouluelixir
Thank you, I didn’t know about the camel/kebab case. How would you go about incrementing the id for each created employee? Is it even possible with Elixir?
Matsa59
Yeah, you can use
AgentorGenServerto hold the value.Or simply use the previous employee’s id and increment it by one.
Often this will be enough
Or using an GenServer
So update your
Employeemodule to haveYou can read more about GenServer here
dom
There’s a nice tutorial on Agent: https://elixir-lang.org/getting-started/mix-otp/agent.html
More typically you’d just use a DB. If this is for testing or playing around, you can also use
:erlang.unique_integer.Matsa59
Yeah of course, I supposed he wants to do something that increment one by one
axelson
I would like to note that for a production system you’d probably want to generate the incrementing ids in the database.
Matsa59
Yes, but he didn’t talk about long term storage. And also the GenServer could also initialized its value for example (for hazardous old database lmao)
tomkonidas
It is actually snake_case and not kebab-case