I am using node.js to build an app where I have a lot of static text (may change over months) in the code. I want to move the text in a separate file and refer that file data as a variable in the handler file.
E.g.
JavaScript
x
26
26
1
const result = await client.views.open({
2
view: {
3
type: 'new',
4
text: [{
5
text: {
6
type: "plain_text",
7
text: "One",
8
emoji: true
9
},
10
value: "One"
11
},
12
{
13
text: {
14
type: "plain_text",
15
text: "Two",
16
emoji: true
17
},
18
value: "Two"
19
}
20
]
21
}
22
});
23
} catch (error) {
24
console.error(error);
25
}
26
The above is original file code. What I want to do is move the below code to a separate file:
JavaScript
1
18
18
1
[{
2
text: {
3
type: "plain_text",
4
text: "One",
5
emoji: true
6
},
7
value: "One"
8
},
9
{
10
text: {
11
type: "plain_text",
12
text: "Two",
13
emoji: true
14
},
15
value: "Two"
16
}
17
]
18
And there after use something like require(./newfile.js)
to refer to that as a variable in the handler file.
The issue I am facing is this is not a valid JSON, but an object with JSON structure so unsure how to work around this .
Advertisement
Answer
In newfile.js
JavaScript
1
19
19
1
module.exports = [
2
{
3
text: {
4
type: "plain_text",
5
text: "One",
6
emoji: true
7
},
8
value: "One"
9
},
10
{
11
text: {
12
type: "plain_text",
13
text: "Two",
14
emoji: true
15
},
16
value: "Two"
17
}
18
]
19
Then import it in your original file:
JavaScript
1
9
1
const innerText = require('./newfile.js');
2
3
const result = await client.views.open({
4
view: {
5
type: 'new',
6
text: innerText,
7
}
8
});
9