8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

将此切换函数(typescript)从 Prisma-speak 编写为 Drizzle-speak

Arkadi 2月前

36 0

我正在按照“将 Clerk 身份验证和 Stripe 付款添加到您的 NextJS tRPC 应用程序”教程进行操作,该教程使用 T3 应用程序 + Prisma + Clerk。我已经使用 Drizzle ORM 启动了我的 T3 应用程序。我……

我正在按照 "Add Clerk Authentication & Stripe Payments to your NextJS tRPC Application" 教程进行操作,该教程使用 T3 应用程序 + Prisma + Clerk。

我已经使用 Drizzle ORM 启动了我的 T3 应用程序。

我需要帮助将这个用 Prisma-speak 编写的特定切换函数转换为 Drizzle-speak 编写的!

const { id } = evt.data;
  const eventType = evt.type;

  switch (eventType) {
    case "user.created": {
      const count = await db.account.count({
        where: {
          userId: id!,
        },
      });

      if (!count) {
        await db.account.create({
          data: {
            userId: id!,
          },
        });
      }
    }

    default: {
      console.error(`The event type: ${eventType} is not configured`);
    }
  }

我尝试过这个但出现错误:

//Check to see if userID already exists
    case "user.created": {
      // https://orm.drizzle.team/learn/guides/count-rows
      const [{count = 0}] = await db.select({value: count(users.id)}).from(users).where(eq(users.id, id))

//if count is zero then create account by just passing userID
      if(!count){
        // https://orm.drizzle.team/docs/insert
        await db.insert(users).values({name: id})
      }
    }

    default: {
      console.error(`The event type: ${eventType} is not configured`);
    }
  }
帖子版权声明 1、本帖标题:将此切换函数(typescript)从 Prisma-speak 编写为 Drizzle-speak
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Arkadi在本站《typescript》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 使用 Drizzle ORM

    import { db } from './your-drizzle-setup'; // Import Drizzle DB instance
    
    const { id } = evt.data;
    const eventType = evt.type;
    
    switch (eventType) {
      case "user.created": {
        const count = await db.account
          .where({ userId: id! })
          .count(); // Drizzle syntax for counting rows
    
        if (count === 0) {
          await db.account.create({
            data: {
              userId: id!,
            },
          });
        }
        break; // Ensure you break out of the case
    
      }
    
      default: {
        console.error(`The event type: ${eventType} is not configured`);
        break; // Ensure you break out of the default case
      }
    }
    
返回
作者最近主题: