Skip to content

Commit

Permalink
Add personio extension
Browse files Browse the repository at this point in the history
- move screenshots
- new screens
- Screenshots
- update readme
- small adjustments
- fixed time bug
- run ray lint
- delted unused libs
- type error
- Merge pull request raycast#22 from marcjulianschwarz/12-store-preparation
- Merge pull request raycast#21 from marcjulianschwarz/16-date-fields-required
- check for valid dates and times
- added contributors
- Merge pull request raycast#20 from marcjulianschwarz/19-time-for-confirm-alert
- move confirmation to display selected times
- Merge pull request raycast#18 from marcjulianschwarz/14-add-confirmation-pop-up-when-tracking-time
- added the confirmation for submitting the time
- Merge pull request raycast#15 from marcjulianschwarz/13-pop-to-root-tracktime
- add pop to root
- Update README.md
- First readme
- Merge pull request raycast#11 from marcjulianschwarz/5-for-future-publishing-timezone-needs-to-be-changeable-via-the-settings
- added timezone dropdown and some timezones
- Merge pull request raycast#10 from marcjulianschwarz/9-attendances-loading-indicator
- add loading indicator for attendances list
- Merge pull request raycast#7 from marcjulianschwarz/4-client-secret-and-id
- Merge branch \'main\' into 4-client-secret-and-id
- move client id and secret to preferences
- Merge pull request raycast#6 from marcjulianschwarz/1-language-normalisation
- normalised language to english
- initial commit
  • Loading branch information
Boosteblume committed Apr 5, 2024
1 parent 20251d3 commit f2a1b06
Show file tree
Hide file tree
Showing 18 changed files with 2,738 additions and 0 deletions.
4 changes: 4 additions & 0 deletions extensions/personio/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"root": true,
"extends": ["@raycast"]
}
14 changes: 14 additions & 0 deletions extensions/personio/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift

# misc
.DS_Store
.env
4 changes: 4 additions & 0 deletions extensions/personio/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/personio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Personio Changelog

## [Initial Version] - 2024-04-04
21 changes: 21 additions & 0 deletions extensions/personio/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 MaxB

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
28 changes: 28 additions & 0 deletions extensions/personio/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Personio Raycast Extension

Track your time for [Personio](https://www.personio.de/) right from whithin Raycast.

## First start:

You need to have your companies personio _clientid_ & _clientsecret_.
These can be obtained by your personio admin [Personio](https://developer.personio.de/docs/getting-started-with-the-personio-api?ref=intro).

Next step is to set a timezone from the dropdown menu.
(If your timezone is not listed contact @marcjulian or @boosteblume.)

Last step is to use the 'Find Employee' function and copy your _employeeid_.
You will need your _employeeid_ the first time you start the other functions.

## Commands:

### Find Employee Number

This command can be used to identify your _employeeid_.

### Attendances

This command lists your attendances entered in personio in the current year.

### Track Time

This command can be used to upload your times to personio. It requires a **start_time**, **end_time** and **break_time**
Binary file added extensions/personio/assets/command-icon-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/personio/assets/command-icon.webp
Binary file not shown.
Binary file added extensions/personio/metadata/Screen1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/personio/metadata/Screen2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/personio/metadata/screen3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f2a1b06

Please sign in to comment.