Skip to content

Commit 4578293

Browse files
committed
chore: wip
chore: wip
1 parent 9c7ccab commit 4578293

File tree

11 files changed

+59
-15
lines changed

11 files changed

+59
-15
lines changed

app/Actions/Dashboard/GetOtherProjects.ts

Whitespace-only changes.

app/Actions/Dashboard/GetRecentCommits.ts

Whitespace-only changes.

app/Actions/Dashboard/GetRecentDeployments.ts

Whitespace-only changes.

app/Actions/Dashboard/GetTotalDeployments.ts

Whitespace-only changes.

app/Actions/Dashboard/GetTotalDownloadCounts.ts

Whitespace-only changes.

app/Actions/Dashboard/GetTotalSubscribers.ts

Whitespace-only changes.
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { User } from '@stacksjs/orm'
2+
import { Action } from '@stacksjs/actions'
3+
4+
export default new Action({
5+
name: 'GetTotalUsers',
6+
description: 'Gets the total number of users.',
7+
apiResponse: true,
8+
9+
async handle() {
10+
return User.count()
11+
},
12+
})

routes/api.ts

+3-15
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ import { route } from '@stacksjs/router'
1010

1111
await route.get('/', () => 'hello world') // $APP_URL/api
1212
await route.get('/hello/world', () => 'hello world, buddy') // stacksjs.org/api/hello/world
13-
await route.get('/buddy/versions', 'Actions/Buddy/VersionsAction') // stacksjs.org/api/buddy/versions
14-
await route.get('/buddy/commands', 'Actions/Buddy/CommandsAction') // stacksjs.org/api/buddy/commands
1513
await route.get('/hello-world', () => {
1614
// $APP_URL/api/welcome
1715
return {
@@ -23,16 +21,6 @@ await route.get('/hello-world', () => {
2321
await route.email('/welcome')
2422
await route.health() // adds an `/api/health` route
2523

26-
// await route.group('/buddy', async () => { // you may group your routes in a few different ways
27-
// await route.get('/commands', 'Actions/Buddy/CommandsAction')
28-
29-
// // nested groups are also supported
30-
// await route.group({ prefix: 'commands' }, async () => {
31-
// await route.get('/example-two', import('Actions/Buddy/CommandsAction')) // or import the action directly
32-
// })
33-
34-
// await route.get('/versions', '../app/Actions/Buddy/VersionsAction') // a relative path is accepted as well
35-
// })
36-
37-
// await route.action('/example') // the equivalent of route.get('/example', 'ExampleAction')
38-
// await route.job('/example-two') // the equivalent of route.get('/example-two', 'ExampleTwoJob')
24+
// await route.group('/some-path', async () => {...})
25+
// await route.action('/example') // equivalent to `route.get('/example', 'ExampleAction')`
26+
// await route.job('/example-two') // equivalent to `route.get('/example-two', 'ExampleTwoJob')`

routes/buddy.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { route } from '@stacksjs/router'
2+
3+
/**
4+
* This file is the entry point for your application's Buddy routes.
5+
* The routes defined here are automatically registered. Last but
6+
* not least, beware when deleting these pre-configured routes.
7+
*
8+
* @see https://stacksjs.org/docs/routing
9+
*/
10+
11+
await route.get('/versions', 'Actions/Buddy/VersionsAction') // your-domain.com/api/buddy/versions
12+
await route.get('/commands', 'Actions/Buddy/CommandsAction') // your-domain.com/api/buddy/commands

storage/framework/core/actions/src/action.ts

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ interface Request {
2727
interface ActionOptions {
2828
name?: string
2929
description?: string
30+
apiResponse?: boolean
3031
fields?: Record<FieldKey, FieldValue>
3132
path?: string
3233
rate?: JobOptions['rate']

storage/framework/core/orm/src/generated/User.ts

+31
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,21 @@ export class UserModel {
251251
return await query.selectAll().execute()
252252
}
253253

254+
async count(options: QueryOptions = {}) {
255+
let query = db.selectFrom('users').select(db.fn.count('*').as('total_count'));
256+
257+
// Apply sorting from options
258+
if (options.sort)
259+
query = query.orderBy(options.sort.column, options.sort.order)
260+
261+
// Apply pagination from options
262+
if (options.limit !== undefined) query = query.limit(options.limit)
263+
264+
if (options.offset !== undefined) query = query.offset(options.offset)
265+
266+
return await query.execute()
267+
}
268+
254269
async first() {
255270
return await db.selectFrom('users').selectAll().executeTakeFirst()
256271
}
@@ -553,6 +568,21 @@ async function whereIn(
553568
return await query.selectAll().execute()
554569
}
555570

571+
async function count(options: QueryOptions = {}) {
572+
let query = db.selectFrom('users').select(db.fn.count('*').as('total_count'));
573+
574+
// Apply sorting from options
575+
if (options.sort)
576+
query = query.orderBy(options.sort.column, options.sort.order)
577+
578+
// Apply pagination from options
579+
if (options.limit !== undefined) query = query.limit(options.limit)
580+
581+
if (options.offset !== undefined) query = query.offset(options.offset)
582+
583+
return await query.execute()
584+
}
585+
556586
export const User = {
557587
find,
558588
findMany,
@@ -567,6 +597,7 @@ export const User = {
567597
last,
568598
where,
569599
whereIn,
600+
count,
570601
}
571602

572603
export default User

0 commit comments

Comments
 (0)