해커톤 회고

As-Is : useRouter를 바보같이 사용한 죄..

  const handleClickNext = async () => {
    // 입력 링크 유효성 검사
    if (!link) {
      alert('링크를 입력해주세요.');
      return;
    }
    // 인사이트 제목, 요약, 키워드 요청
    router.push(
      {
        pathname: '/upload/input-text',
        query: {
          link: link,
          imageList: imageList,
          insightImageList: imageList,
          memo: memo,
          folderNameList: data?.map((folder) => folder.folderName),
          source: source,
        },
      },
      '/upload/input-text',
    );
  };

그래서 다음 페이지에는요..

  const [insightInput, setInsightInput] = useState<InsightPostRequest>({
    insightUrl: '',
    insightTitle: '',
    insightSummary: '',
    insightMainImage: '',
    insightSource: '',
    viewCount: 0,
    hashTagList: [''],
    insightMemo: '',
    insightImageList: [''],
    folderName: '미드저니',
    enable: false,
    remindType: 'DEFAULT',
    remindDays: [1],
  });
const { source, memo, imageList, insightImageList, link, folderNameList } = router.query;

  useEffect(() => {
    if (result.title) {
      setInsightInput({
        ...insightInput,
        insightSource: String(source),
        insightUrl: String(link),
        insightTitle: result.title,
        insightSummary: String(result.summary),
        insightMainImage: String(imageList?.[0]),
        hashTagList: result.keywords
          ? Array.isArray(result.keywords)
            ? result.keywords
            : result.keywords.split(', ')
          : [],
        insightMemo: String(memo),
        insightImageList: insightImageList
          ? Array.isArray(insightImageList)
            ? insightImageList
            : [insightImageList]
          : [],
        folderName: String(result.folderName),
      });
      setThumbnail(
        imageList ? (Array.isArray(imageList) ? imageList[0] : imageList) : [],
      );
    }