mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
Loads current text statically. Faster loading
This commit is contained in:
parent
d8052bdb7a
commit
182389dbb1
31
db.go
31
db.go
@ -77,6 +77,37 @@ func hasPassword(title string) (bool, error) {
|
||||
return hasPassword, nil
|
||||
}
|
||||
|
||||
func getCurrentText(title string) string {
|
||||
title = strings.ToLower(title)
|
||||
currentText := ""
|
||||
if !open {
|
||||
return currentText
|
||||
}
|
||||
err := db.View(func(tx *bolt.Tx) error {
|
||||
var err error
|
||||
b := tx.Bucket([]byte("datas"))
|
||||
if b == nil {
|
||||
return fmt.Errorf("db must be opened before loading!")
|
||||
}
|
||||
k := []byte(title)
|
||||
val := b.Get(k)
|
||||
if val == nil {
|
||||
return nil
|
||||
}
|
||||
var p CowyoData
|
||||
err = p.decode(val)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
currentText = p.CurrentText
|
||||
return nil
|
||||
})
|
||||
if err != nil {
|
||||
fmt.Printf("Could not get CowyoData: %s", err)
|
||||
}
|
||||
return currentText
|
||||
}
|
||||
|
||||
func (p *CowyoData) load(title string) error {
|
||||
title = strings.ToLower(title)
|
||||
if !open {
|
||||
|
@ -32,6 +32,7 @@ func editNote(c *gin.Context) {
|
||||
c.HTML(http.StatusOK, "index.tmpl", gin.H{
|
||||
"Title": title,
|
||||
"ExternalIP": RuntimeArgs.ExternalIP,
|
||||
"CurrentText": getCurrentText(title),
|
||||
})
|
||||
}
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ $(document).ready(function() {
|
||||
}
|
||||
|
||||
c.onopen = function(){
|
||||
updateText();
|
||||
// updateText();
|
||||
updateInterval = setInterval(updateText, pollToGetNewestCopyInterval);
|
||||
}
|
||||
});
|
||||
|
@ -76,7 +76,7 @@
|
||||
<textarea autofocus rows=500 class='auto_submit_item' id="emit_data" name="emit_data" placeholder="Start typing, it will save automatically.
|
||||
Go to cowyo.com/{{ .Title }} to reload this page.
|
||||
Do not post anything private.
|
||||
Anyone with the URL can access this note."></textarea>
|
||||
Anyone with the URL can access this note.">{{ .CurrentText }}</textarea>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
Loading…
Reference in New Issue
Block a user