Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update get_tableau_data_source.R #7

Merged
merged 1 commit into from
May 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions R/get_tableau_data_source.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@
#' }
get_tableau_data_source <- function(dashboard) {
data <- xml2::read_xml(dashboard)
data_source <- xml2::xml_find_all(data, "//@filename")
return(xml2::xml_text(data_source))

# Find all nodes with filename attribute
filename_nodes <- xml2::xml_find_all(data, "//@filename")
# Extract text from filename nodes
filename_values <- xml2::xml_text(filename_nodes)

# Find all nodes with directory attribute
directory_nodes <- xml2::xml_find_all(data, "//@directory")
# Extract text from directory nodes
directory_values <- xml2::xml_text(directory_nodes)

# Return filename and directory values combined as one file path string
return(path = paste0(directory_values, "/", filename_values))
}
Loading