|
| 1 | +# EventGen |
| 2 | + |
| 3 | +This is an experimental command line tool. |
| 4 | +Using this command line tool, you can generate event types defined using Swift from event specifications defined using natural language. |
| 5 | + |
| 6 | +This tool is based on the following blog post. |
| 7 | + |
| 8 | +- https://techlife.cookpad.com/entry/2020/11/05/110000 |
| 9 | +- https://zenn.dev/satoshin21/articles/58e516dc7f8403 |
| 10 | + |
| 11 | +## Getting started |
| 12 | + |
| 13 | +First, prepare the following markdown file in specific directory. |
| 14 | +In this file, write a description of the events to be sent from the application to the backend. |
| 15 | + |
| 16 | +```md |
| 17 | +# impression |
| 18 | + |
| 19 | +This event is automatically sent by the system when any screen is displayed. |
| 20 | + |
| 21 | +## Parameters |
| 22 | + |
| 23 | +- screenName |
| 24 | + - type |
| 25 | + - string |
| 26 | + - nullable |
| 27 | + - false |
| 28 | + - description |
| 29 | + - the displayed screen name |
| 30 | +- count |
| 31 | + - type |
| 32 | + - int |
| 33 | + - nullable |
| 34 | + - true |
| 35 | + - description |
| 36 | + - If this screen has been displayed in the past, indicate how many times it has been displayed |
| 37 | + |
| 38 | +## Discussion |
| 39 | + |
| 40 | +This event was called `shown` in the past |
| 41 | + |
| 42 | +``` |
| 43 | + |
| 44 | +Then, execute the following command |
| 45 | + |
| 46 | +``` |
| 47 | +# Markdown files are located in the ./Events |
| 48 | +$ swift run eventgen prepare --inputPath ./Events --outputPath result.json |
| 49 | +$ swift run eventgen transpile --inputPath result.json --outputPath output.swift |
| 50 | +``` |
| 51 | + |
| 52 | +Finally, you will get the following Swift file as output.swift. |
| 53 | + |
| 54 | +```swift |
| 55 | +struct GeneratedEvent: Loggable { |
| 56 | + let eventName: String |
| 57 | + let paramerters: [String: Sendasble] |
| 58 | +} |
| 59 | + |
| 60 | +extension GeneratedEvent { |
| 61 | + /// This event is automatically sent by the system when any screen is displayed. |
| 62 | + /// - Parameters: |
| 63 | + /// - screenName: the displayed screen name |
| 64 | + /// - count: If this screen has been displayed in the past, indicate how many times it has been displayed |
| 65 | + static func impression(screenName: String, count: Int?) -> Self { |
| 66 | + .init( |
| 67 | + eventName: "impression", |
| 68 | + parameters: [screenName: screenName, count: count] |
| 69 | + ) |
| 70 | + } |
| 71 | +} |
| 72 | + |
| 73 | +``` |
| 74 | + |
| 75 | +This tool is experimental and may only work in certain cases. |
| 76 | +If it does not work, there may be no explanation as to why it does not work. |
| 77 | + |
| 78 | +## Customization |
| 79 | + |
| 80 | +Prepare subcommand generates an JSON file as shown below. |
| 81 | +Then, the transpile subcommand generates a Swift file based on the file. Therefore, it is possible to generate and transpile an JSON file by oneself without using the Prepare subcommand. |
| 82 | +For example, it is possible to generate an intermediate file from a csv or xml file. |
| 83 | + |
| 84 | +```json |
| 85 | +[ |
| 86 | + { |
| 87 | + "properties":[ |
| 88 | + |
| 89 | + ], |
| 90 | + "name":"firstLaunch", |
| 91 | + "description":"Event sent when the user launches the application for the first time.", |
| 92 | + "discussion":"" |
| 93 | + }, |
| 94 | + { |
| 95 | + "properties":[ |
| 96 | + { |
| 97 | + "nullable":false, |
| 98 | + "name":"screenName", |
| 99 | + "type":"string", |
| 100 | + "description":"the displayed screen name" |
| 101 | + }, |
| 102 | + { |
| 103 | + "nullable":true, |
| 104 | + "name":"count", |
| 105 | + "type":"int", |
| 106 | + "description":"If this screen has been displayed in the past, indicate how many times it has been displayed" |
| 107 | + } |
| 108 | + ], |
| 109 | + "name":"impression", |
| 110 | + "description":"This event is automatically sent by the system when any screen is displayed.", |
| 111 | + "discussion":"This event was called `shown` in the past" |
| 112 | + } |
| 113 | +] |
| 114 | +``` |
0 commit comments