Commit Graph
100 Commits
Author SHA1 Message Date
Jordan Knott 03cf245828 docs(CONTRIBUTING): add note about asking in discord 2020-09-10 15:57:53 -05:00
Jordan Knott 09d73fdbce docs(README): update source build instructions 2020-09-10 15:53:47 -05:00
Jordan Knott 0caa803d27 feat: add notification UI
showPopup was also refactored to be better
2020-09-10 15:31:04 -05:00
Jordan Knott feea209507 docs(README): update taskcafe logo design & readme content 2020-09-02 21:11:18 -05:00
Jordan Knott 31526a2575 docs(CHANGELOG): add changelog document 2020-09-02 20:40:56 -05:00
Jordan Knott 0a1bdc19f3 fix: remove cors middleware
fixes #51
2020-09-02 20:30:38 -05:00
Jordan Knott 771d598c04 feat: add task details 2020-09-02 20:27:43 -05:00
Jordan Knott a9a1576f46 fix: update margin on filter chips 2020-09-02 20:27:22 -05:00
Jordan Knott 66583bb4fb feat: add task sorting & filtering
adds filtering by task status (completion date, incomplete, completion)
adds filtering by task metadata (task name, labels, members, due date)
adds sorting by task name, labels, members, and due date
2020-08-28 23:32:17 -07:00
Jordan Knott 47782d6d86 fix: due date manager now sends the correct new due date 2020-08-28 20:59:45 -05:00
Jordan Knott 4988176220 fix: add retry with backoff to initial database connection 2020-08-28 14:22:24 -05:00
Jordan Knott dd50baa05a refactor: add logging to CreateTask resolver 2020-08-23 17:52:45 -05:00
Jordan Knott 46e724e731 feat: add pre commit hook to lint frontend & fix warnings 2020-08-23 17:29:06 -05:00
Jordan Knott 8ce19a1ceb refactor: update project name in tmuxinator 2020-08-23 17:29:06 -05:00
Jordan Knott 8f410cd9b7 fix: use pre-built taskcafe image in docker-compose by default 2020-08-23 11:44:50 -05:00
Jordan Knott 81b89f2411 docs(README): update docker release badge label 2020-08-21 23:49:25 -05:00
Jordan Knott 13480acd7e fix(TaskDetails): update member layout 2020-08-21 23:37:48 -05:00
Jordan Knott 5ceafd556a fix: panic(nil) on loadConfig if config actually exists 2020-08-21 23:29:08 -05:00
Jordan Knott 7a6609ae75 docs(README): add badges 2020-08-21 23:12:12 -05:00
Jordan Knott 08bb5d0eca fix: update docker compose to auto migrate 2020-08-21 23:10:38 -05:00
Jordan Knott 314bf224ea fix: use correct context keys when retrieving userID & role 2020-08-21 23:08:30 -05:00
Jordan Knott 3c4370e68a fix(Admin): disable reset password option 2020-08-21 22:20:40 -05:00
Jordan Knott 240ba606e4 docs(CONTRIBUTING): add section on how to install pre-commit hooks 2020-08-20 18:37:36 -05:00
Jordan Knott 2abbc49ef7 docs(CONTRIBUTING): add general rule on using pre commit hooks 2020-08-20 18:37:36 -05:00
Jordan Knott 9dba566660 feat: add pre-commit hooks & refactor code to pass linting 2020-08-20 18:37:36 -05:00
Jordan Knott abf9e1328a fix(Card): change checkmark icon to outline style 2020-08-20 18:37:36 -05:00
Jordan Knott 68d5455a85 refactor: remove taskcafectl 2020-08-20 18:37:36 -05:00
Jordan Knott 83765077ff fix: update task assignee icon styles 2020-08-18 17:53:11 -05:00
Jordan Knott f8a783378a docs(README): add better preview image 2020-08-18 17:26:25 -05:00
Jordan Knott ed2800c53f docs(README): add contribution & community section 2020-08-18 17:10:53 -05:00
Jordan Knott 4d62191e34 docs(CONTRIBUTING): add another general rule 2020-08-18 16:34:31 -05:00
Jordan Knott 2485723097 docs: add contributing guide 2020-08-18 16:20:01 -05:00
Jordan Knott 3d4a0ff28c feat: set checklist badge color to green when all items complete 2020-08-13 16:56:03 -05:00
Jordan Knott df4d114b98 fix: hide checklist badge if checklist item total is 0
fixes #31
2020-08-13 16:33:50 -05:00
Jordan Knott c2ef8a7d56 feat: replace config system with viper based system
allows for config settings to be easily set through ENV variables,
config files, or CLI flags

adds flag to run migration on web server start (fixes #29)
2020-08-12 22:30:53 -05:00
Jordan Knott b28e000320 chore: remove data dir 2020-08-12 22:30:53 -05:00
Jordan Knott 9f02f8e562 chore: update docker & git ignore files 2020-08-12 22:30:53 -05:00
Jordan Knott 9c4fe2594a fix: prevent checklist title being hidden when description editor is open 2020-08-12 20:57:36 -05:00
Jordan Knott 7bba294897 fix: get correct new postion after dropping task in different list
was getting the current draggable list based on whatever task group
the task was in, ignoring that that task group might be different (when
    the task was dragged to a new list)
2020-08-12 15:23:57 -05:00
Jordan Knott 2e9767f1a0 chore: remove debug console.log statements 2020-08-12 14:44:28 -05:00
Jordan Knott 6761d4571e feat: add change password tab to user profile settings 2020-08-12 14:09:12 -05:00
Jordan Knott e64f6f8569 feat: enforce user roles
enforces user admin role requirement for
- creating / deleting / setting role for organization users
- creating / deleting / setting role for project users
- updating project name
- deleting project

hides action elements based on role for
- admin console
- team settings if team is only visible through project membership
- add project tile if not team admin
- project name text editor if not team / project admin
- add redirect from team page if settings only visible through project
  membership
- add redirect from admin console if not org admin

role enforcement is handled on the api side through a custom GraphQL
directive `hasRole`. on the client side, role information is fetched in
the TopNavbar's `me` query and stored in the `UserContext`.

there is a custom hook, `useCurrentUser`, that provides a user object
with two functions, `isVisibile` & `isAdmin` which is used to check
roles in order to render/hide relevant UI elements.
2020-08-11 21:03:21 -05:00
Jordan Knott 5dbdc20b36 chore: rename Citadel to Taskcafe 2020-08-06 20:50:35 -05:00
Jordan Knott 7ffd0ff6b8 fix: rename projects typescript declaration file to types
import conflict with Projects module in Routes

fixes #27
2020-07-31 19:00:17 -05:00
Jordan Knott 70802ff4c9 fix: replace hardcoded API url's with absolute paths
fixes issue #10
2020-07-20 17:37:31 -05:00
Jordan Knott 20b5188662 fix: remove log containing user password
fixes issue #12
2020-07-20 17:34:57 -05:00
Jordan Knott a4ff94d78b fix: add roboto & sans-serif fallback font 2020-07-20 17:34:33 -05:00
Jordan Knott 6f33cc5799 fix: update api import paths & fix Dockerfile not copying frontend build
fixes issue #7 & #9

also remove agGrid dependency from package.json to reduce download size
2020-07-19 17:25:58 -05:00
Jordan Knott c3b1837589 change: update docker-compose.dev.yml with new web & postgres service 2020-07-19 16:10:37 -05:00
Jordan Knott 8eb41ab8a8 feat: embed schema migrations in binary 2020-07-19 16:10:07 -05:00
Jordan Knott e52620a9e2 docs(README): change docker instructions to use only docker commands instead of mage helper targets 2020-07-19 13:33:07 -05:00
Jordan Knott 89bde32427 fix: create internal/frontend dir if not exists during build
fixes issue #5
2020-07-19 13:28:02 -05:00
Jordan Knott 66a2931ab8 feature: add Dockerfile & docker-compose installation instructions 2020-07-18 17:28:25 -05:00
Jordan Knott de03fd9ef7 fix: update order of yarn install & build commands and split yarn install & build targets 2020-07-18 15:34:33 -05:00
Jordan Knott e5bfe9b9ab feature: fix user admin related bugs 2020-07-17 21:55:38 -05:00
Jordan Knott 68fa7aef94 feature: add user project count to Admin component 2020-07-17 19:40:05 -05:00
Jordan Knott ccaa97e2bb fix: update tmuxinator script with new api command 2020-07-17 19:39:18 -05:00
Jordan Knott 158f574b2a change: add LICENSE & basic compile instructions 2020-07-16 23:00:03 -05:00
Jordan Knott 50ca9f7216 chore: remove unused scripts/auth & Pipfile 2020-07-16 22:38:12 -05:00
Jordan Knott e15bccff89 chore: remove Makefile 2020-07-16 22:37:27 -05:00
Jordan Knott 1ad63a2b0c chore: remove bad file 2020-07-16 22:32:43 -05:00
Jordan Knott 1222111bef fix: unify popup content padding 2020-07-16 22:31:33 -05:00
Jordan Knott c35f63e668 change: set start height of quick card text area to 90px 2020-07-16 22:21:58 -05:00
Jordan Knott c236681cd2 fix: hide card edit icon while in quick card editor 2020-07-16 22:21:37 -05:00
Jordan Knott 6c55b89ee2 fix(Input): floating label now floats when the input has a value 2020-07-16 22:01:26 -05:00
Jordan Knott 810e74e99f fix: show correct label variant based on setting 2020-07-16 21:57:20 -05:00
Jordan Knott d3f29134e0 fix: ignore system user in users query & add full name to user in install route 2020-07-16 21:57:02 -05:00
Jordan Knott 45a92636cb change: add loading state to project board 2020-07-16 21:14:26 -05:00
Jordan Knott a90ace7a06 change: sort task labels based on label color position 2020-07-16 20:27:48 -05:00
Jordan Knott 559fcbc0e4 fix: all cards in lists animate on label toggle at same time 2020-07-16 20:26:21 -05:00
Jordan Knott 8c610b11bf feature: fix label manager popup padding & switch input to ControlledInput 2020-07-16 20:14:13 -05:00
Jordan Knott 2cf6be082c feature: add first time install process 2020-07-16 19:40:23 -05:00
Jordan Knott 90515f6aa4 feature: add web & migrate commands 2020-07-15 18:22:25 -05:00
Jordan Knott 1e9813601e bugfix: fix user checklist item toggle completion 2020-07-13 16:21:37 -05:00
Jordan Knott d8daa60729 feature: add user pass popups and remove user popup 2020-07-13 16:20:55 -05:00
Jordan Knott 609baa98aa feature: connect card operation icon to quick card editor 2020-07-13 16:20:06 -05:00
Jordan Knott b95cc6859e docs(README): add features & roadmap section 2020-07-12 02:17:53 -05:00
Jordan Knott a20ff90106 chore: project cleanup and bugfixes 2020-07-12 02:06:11 -05:00
Jordan Knott e7e6fdc24c change: add .keep to .gitignore exclusion list 2020-07-04 18:14:05 -05:00
Jordan Knott 1fa008483d change: add uploads folder to .gitignore 2020-07-04 18:12:17 -05:00
Jordan Knott 401bd73782 change: update tmuxinator script to reflect new dir structure 2020-07-04 18:10:28 -05:00
Jordan Knott e5d5e6da01 arch: move web folder into api & move api to top level 2020-07-04 18:08:37 -05:00
Jordan Knott eaffaa70df cleanup: refactor api architecture & add user roles 2020-07-04 18:02:57 -05:00
Jordan Knott a3958595cd change: disable unimplemented buttons 2020-06-23 20:46:45 -05:00
Jordan Knott 3ea95a662d bugfix: ensure all popup close buttons hide popup 2020-06-23 20:16:17 -05:00
Jordan Knott 7c11ca92f6 bugfix: fix Popup and QuickCardEditor overflowing off screen when near viewport bottom 2020-06-23 20:08:48 -05:00
Jordan Knott 596a4d904c change: add project README 2020-06-23 17:33:44 -05:00
Jordan Knott 1ea55a68c2 change(configs): use pgcli instead of psql command 2020-06-23 17:17:39 -05:00
Jordan Knott a589fbe399 chore: create helper function for interacting with apollo cache 2020-06-23 16:55:17 -05:00
Jordan Knott 57382de9d0 feature: remove sidebar & redesign top navbar 2020-06-23 15:20:53 -05:00
Jordan Knott fd7c006b73 feature: add team creation & project deletion 2020-06-20 17:49:11 -05:00
Jordan Knott 5c3afaba7c change: redesign task details modal 2020-06-19 16:33:02 -05:00
Jordan Knott 9d6c67f791 feature: add checklist 2020-06-18 18:12:15 -05:00
Jordan Knott b6f0e8b6b2 feature: add due dates to tasks 2020-06-15 17:36:59 -05:00
Jordan Knott a12e9c1e50 chore: add theme colors, merge Card components, create single Button component 2020-06-14 19:50:35 -05:00
Jordan Knott 6267a37b6e feature: various additions 2020-06-12 17:21:58 -05:00
Jordan Knott 4c02df9061 feature: add projects & quick card members button 2020-05-31 21:20:03 -05:00
Jordan Knott 67ac88856b change: hide project heading when project name is null 2020-05-31 00:15:10 -05:00
Jordan Knott e87a2ea0b7 change: updated editor button text color 2020-05-31 00:04:14 -05:00
Jordan Knott f1f69440c3 feature: add quick card labels popup 2020-05-30 23:51:22 -05:00