diff options
author | eug-vs <eug-vs@keemail.me> | 2020-06-09 14:16:15 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-06-09 14:16:15 +0300 |
commit | e9d0438f6c02664c652a593c686564361fa0de6b (patch) | |
tree | 5bc0a1e78cf72c6e1ae48f5ee3954511748c81b1 /services/polls | |
parent | 24f0d8709fc5e90a92d9c3940e693f76cd653bf4 (diff) | |
download | which-api-e9d0438f6c02664c652a593c686564361fa0de6b.tar.gz |
refactor: structurize feathers app
Diffstat (limited to 'services/polls')
-rw-r--r-- | services/polls/polls.class.ts | 38 | ||||
-rw-r--r-- | services/polls/polls.service.ts | 7 |
2 files changed, 45 insertions, 0 deletions
diff --git a/services/polls/polls.class.ts b/services/polls/polls.class.ts new file mode 100644 index 0000000..82ef155 --- /dev/null +++ b/services/polls/polls.class.ts @@ -0,0 +1,38 @@ +interface ImageData { + url: string; + votes: number; +} + +interface User { + name: string; + avatarUrl: string; +} + +interface Poll { + author: User; + contents: { + left: ImageData; + right: ImageData; + }; +} + +const defaultUser: User = { + name: 'John Doe', + avatarUrl: 'https://github.com/eug-vs.png' +}; + + +export default class Polls { + polls: Poll[] = []; + + async find () { + return this.polls; + } + + async create (data: Pick<Poll, 'contents'>) { + const poll: Poll = { ...data, author: defaultUser }; + this.polls.push(poll); + return poll; + } +} + diff --git a/services/polls/polls.service.ts b/services/polls/polls.service.ts new file mode 100644 index 0000000..a4bd816 --- /dev/null +++ b/services/polls/polls.service.ts @@ -0,0 +1,7 @@ +import { Application } from '@feathersjs/express'; +import Polls from './polls.class'; + +export default (app: Application): void => { + app.use('/polls', new Polls()); +}; + |