Skip to content

Commit cde23c0

Browse files
committed
Updated findWaspFile in new location
1 parent d8b70cf commit cde23c0

File tree

2 files changed

+18
-38
lines changed

2 files changed

+18
-38
lines changed

waspc/src/Wasp/Project/Analyze.hs

-26
Original file line numberDiff line numberDiff line change
@@ -120,32 +120,6 @@ constructAppSpec waspDir options externalConfigs parsedPrismaSchema decls = do
120120

121121
return $ runValidation ASV.validateAppSpec appSpec
122122

123-
findWaspFile :: Path' Abs (Dir WaspProjectDir) -> IO (Either String WaspFilePath)
124-
findWaspFile waspDir = do
125-
let dotWaspPath = waspDir </> [relfile|.wasp|]
126-
isFile <- IOUtil.doesFileExist dotWaspPath
127-
if isFile
128-
then return $ Left "Invalid file name for the .wasp file. Please rename it to [something].wasp."
129-
else do
130-
files <- fst <$> IOUtil.listDirectory waspDir
131-
return $ case (findWaspTsFile files, findWaspLangFile files) of
132-
(tsFiles, langFiles)
133-
| not (null tsFiles) && not (null langFiles) -> Left bothFilesFoundMessage
134-
| null tsFiles && null langFiles -> Left fileNotFoundMessage
135-
| [waspTsFile] <- tsFiles, null langFiles -> Right waspTsFile
136-
| null tsFiles, [waspLangFile] <- langFiles -> Right waspLangFile
137-
| otherwise -> Left multipleFilesFoundMessage
138-
where
139-
findWaspTsFile files = WaspTs <$> findFileThatEndsWith ".wasp.ts" files
140-
findWaspLangFile files = WaspLang <$> findFileThatEndsWith ".wasp" files
141-
findFileThatEndsWith suffix files = castFile . (waspDir </>) <$> findFilesThatEndWith suffix files
142-
findFilesThatEndWith suffix files = filter ((suffix `isSuffixOf`) . fromRelFile) files
143-
fileNotFoundMessage = "Couldn't find the *.wasp or a *.wasp.ts file in the " ++ fromAbsDir waspDir ++ " directory"
144-
bothFilesFoundMessage =
145-
"Found both *.wasp and *.wasp.ts files in the project directory. "
146-
++ "You must choose how you want to define your app (using Wasp or TypeScript) and only keep one of them."
147-
multipleFilesFoundMessage = "Found multiple *.wasp or *.wasp.ts files in the project directory. Please keep only one."
148-
149123
analyzePrismaSchema :: Path' Abs (Dir WaspProjectDir) -> IO (Either [CompileError] Psl.Schema.Schema, [CompileWarning])
150124
analyzePrismaSchema waspProjectDir = do
151125
findPrismaSchemaFile waspProjectDir >>= \case

waspc/src/Wasp/Project/WaspFile.hs

+18-12
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import StrongPath
1212
castFile,
1313
fromAbsDir,
1414
fromRelFile,
15+
relfile,
1516
(</>),
1617
)
1718
import qualified Wasp.AppSpec as AS
@@ -28,24 +29,29 @@ import qualified Wasp.Util.IO as IOUtil
2829

2930
findWaspFile :: Path' Abs (Dir WaspProjectDir) -> IO (Either String WaspFilePath)
3031
findWaspFile waspDir = do
31-
files <- fst <$> IOUtil.listDirectory waspDir
32-
return $ case (findWaspTsFile files, findWaspLangFile files) of
33-
(Just _, Just _) -> Left bothFilesFoundMessage
34-
(Nothing, Nothing) -> Left fileNotFoundMessage
35-
(Just waspTsFile, Nothing) -> Right waspTsFile
36-
(Nothing, Just waspLangFile) -> Right waspLangFile
32+
let dotWaspPath = waspDir </> [relfile|.wasp|]
33+
isFile <- IOUtil.doesFileExist dotWaspPath
34+
if isFile
35+
then return $ Left "Invalid file name for the .wasp file. Please rename it to [something].wasp."
36+
else do
37+
files <- fst <$> IOUtil.listDirectory waspDir
38+
return $ case (findWaspTsFile files, findWaspLangFile files) of
39+
(tsFiles, langFiles)
40+
| not (null tsFiles) && not (null langFiles) -> Left bothFilesFoundMessage
41+
| null tsFiles && null langFiles -> Left fileNotFoundMessage
42+
| [waspTsFile] <- tsFiles, null langFiles -> Right waspTsFile
43+
| null tsFiles, [waspLangFile] <- langFiles -> Right waspLangFile
44+
| otherwise -> Left multipleFilesFoundMessage
3745
where
3846
findWaspTsFile files = WaspTs <$> findFileThatEndsWith ".wasp.ts" files
3947
findWaspLangFile files = WaspLang <$> findFileThatEndsWith ".wasp" files
40-
findFileThatEndsWith suffix files =
41-
castFile
42-
. (waspDir </>)
43-
<$> find ((suffix `isSuffixOf`) . fromRelFile) files
44-
45-
fileNotFoundMessage = "Couldn't find a *.wasp or a *.wasp.ts file in directory " ++ fromAbsDir waspDir ++ " ."
48+
findFileThatEndsWith suffix files = castFile . (waspDir </>) <$> findFilesThatEndWith suffix files
49+
findFilesThatEndWith suffix files = filter ((suffix `isSuffixOf`) . fromRelFile) files
50+
fileNotFoundMessage = "Couldn't find the *.wasp or a *.wasp.ts file in the " ++ fromAbsDir waspDir ++ " directory"
4651
bothFilesFoundMessage =
4752
"Found both *.wasp and *.wasp.ts files in the project directory. "
4853
++ "You must choose how you want to define your app (using Wasp or TypeScript) and only keep one of them."
54+
multipleFilesFoundMessage = "Found multiple *.wasp or *.wasp.ts files in the project directory. Please keep only one."
4955

5056
analyzeWaspFile ::
5157
Path' Abs (Dir WaspProjectDir) ->

0 commit comments

Comments
 (0)